get: summary: Retrieve an individual album operationId: getAlbum parameters: - $ref: '../parameters/query/includeForAlbum.yml' - name: albumId in: path description: The unique identifier of the album required: true schema: type: string responses: '200': description: An album object content: application/vnd.api+json: schema: type: object required: [data] properties: data: $ref: '../schemas/Album.yml' included: description: Included resources, as requested by the `include` query parameter type: array items: $ref: '../schemas/IncludedResource.yml' '403': $ref: '../responses/NotAuthorized.yml' '404': $ref: '../responses/NotFound.yml' '500': $ref: '../responses/InternalServerError.yml'