|
235 | 235 | "WatchProviderOption": { "type": "object", "required": ["id", "name", "logo_path", "display_priority"], "properties": { "id": { "type": "integer", "minimum": 1 }, "name": { "type": "string", "minLength": 1 }, "logo_path": { "type": ["string", "null"] }, "display_priority": { "type": "integer", "minimum": 0 } }, "additionalProperties": true }, |
236 | 236 | "ProviderOffer": { "type": "object", "required": ["provider_id", "provider_name", "logo_path", "display_priority"], "properties": { "provider_id": { "type": "integer", "minimum": 1 }, "provider_name": { "type": "string" }, "logo_path": { "type": ["string", "null"] }, "display_priority": { "type": "integer" } }, "additionalProperties": true }, |
237 | 237 | "ProviderRegion": { "type": "object", "required": ["region", "tmdb_url", "attribution", "stream", "rent", "buy", "ads", "free"], "properties": { "region": { "$ref": "#/components/schemas/Region" }, "tmdb_url": { "type": ["string", "null"], "format": "uri" }, "attribution": { "const": "JustWatch" }, "stream": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderOffer" } }, "rent": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderOffer" } }, "buy": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderOffer" } }, "ads": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderOffer" } }, "free": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderOffer" } } }, "additionalProperties": true }, |
238 | | - "TitleDetail": { "allOf": [{ "$ref": "#/components/schemas/TitleSummary" }, { "type": "object", "required": ["tagline", "adult", "genres", "creators", "cast", "crew", "collection", "companies", "networks", "seasons", "alternative_titles", "external_ids", "images", "videos", "reviews", "recommendations", "similar", "release_information", "translations", "watch_providers"], "properties": { "tagline": { "type": "string" }, "adult": { "type": "boolean" }, "genres": { "type": "array" }, "creators": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "cast": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "crew": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "collection": { "oneOf": [{ "$ref": "#/components/schemas/CollectionSummary" }, { "type": "null" }] }, "companies": { "type": "array", "items": { "$ref": "#/components/schemas/OrganizationSummary" } }, "networks": { "type": "array", "items": { "$ref": "#/components/schemas/OrganizationSummary" } }, "seasons": { "type": "array", "items": { "$ref": "#/components/schemas/SeasonSummary" } }, "alternative_titles": { "type": "array" }, "external_ids": { "type": "object" }, "images": { "type": "object" }, "videos": { "type": "array" }, "reviews": { "type": "object" }, "recommendations": { "$ref": "#/components/schemas/TitlePage" }, "similar": { "type": "array", "items": { "$ref": "#/components/schemas/TitleSummary" } }, "release_information": { "type": "array" }, "translations": { "type": "array" }, "watch_providers": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderRegion" } } }, "additionalProperties": true }] }, |
| 238 | + "TitleDetail": { "allOf": [{ "$ref": "#/components/schemas/TitleSummary" }, { "type": "object", "required": ["tagline", "adult", "genres", "creators", "cast", "crew", "collection", "companies", "networks", "seasons", "alternative_titles", "external_ids", "images", "videos", "reviews", "recommendations", "similar", "release_information", "translations", "watch_providers"], "properties": { "tagline": { "type": "string" }, "adult": { "type": "boolean" }, "genres": { "type": "array" }, "creators": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "cast": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "crew": { "type": "array", "items": { "$ref": "#/components/schemas/Credit" } }, "collection": { "oneOf": [{ "$ref": "#/components/schemas/CollectionSummary" }, { "type": "null" }] }, "companies": { "type": "array", "items": { "$ref": "#/components/schemas/OrganizationSummary" } }, "networks": { "type": "array", "items": { "$ref": "#/components/schemas/OrganizationSummary" } }, "seasons": { "type": "array", "items": { "$ref": "#/components/schemas/SeasonSummary" } }, "alternative_titles": { "type": "array" }, "external_ids": { "type": "object" }, "images": { "type": "object" }, "videos": { "type": "array" }, "reviews": { "type": "object" }, "recommendations": { "$ref": "#/components/schemas/TitlePage" }, "similar": { "type": "array", "items": { "$ref": "#/components/schemas/TitleSummary" } }, "release_information": { "type": "array" }, "translations": { "type": "array" }, "watch_providers": { "type": "array", "items": { "$ref": "#/components/schemas/ProviderRegion" } }, "keywords": { "type": "array", "items": { "$ref": "#/components/schemas/KeywordSummary" } } }, "additionalProperties": true }] }, |
239 | 239 | "PersonDetail": { "allOf": [{ "$ref": "#/components/schemas/PersonSummary" }, { "type": "object", "required": ["biography", "also_known_as", "images", "credits", "external_ids"], "properties": { "biography": { "type": "string" }, "birthday": { "type": ["string", "null"] }, "deathday": { "type": ["string", "null"] }, "also_known_as": { "type": "array", "items": { "type": "string" } }, "images": { "type": "array", "items": { "$ref": "#/components/schemas/ImageAsset" } }, "credits": { "type": "object" }, "external_ids": { "type": "object" } } }] }, |
240 | 240 | "CollectionDetail": { "allOf": [{ "$ref": "#/components/schemas/CollectionSummary" }, { "type": "object", "required": ["parts", "images"], "properties": { "parts": { "type": "array", "items": { "$ref": "#/components/schemas/TitleSummary" } }, "images": { "type": "object" } } }] }, |
241 | 241 | "OrganizationDetail": { "allOf": [{ "$ref": "#/components/schemas/OrganizationSummary" }, { "type": "object", "required": ["description", "titles"], "properties": { "description": { "type": "string" }, "titles": { "$ref": "#/components/schemas/TitlePage" } } }] }, |
|
0 commit comments