Files
marka/registry/schema-org/TVSeries.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

147 lines
6.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:TVSeries",
"title": "TVSeries",
"description": "CreativeWorkSeries dedicated to TV broadcast and associated online delivery.",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
},
{
"description": "A CreativeWorkSeries in schema.org is a group of related items, typically but not necessarily of the same kind. CreativeWorkSeries are usually organized into some order, often chronological. Unlike [[ItemList]] which is a general purpose data structure for lists of things, the emphasis with CreativeWorkSeries is on published materials (written e.g. books and periodicals, or media such as TV, radio and games).\\n\\nSpecific subtypes are available for describing [[TVSeries]], [[RadioSeries]], [[MovieSeries]], [[BookSeries]], [[Periodical]] and [[VideoGameSeries]]. In each case, the [[hasPart]] / [[isPartOf]] properties can be used to relate the CreativeWorkSeries to its parts. The general CreativeWorkSeries type serves largely just to organize these more specific and practical subtypes.\\n\\nIt is common for properties applicable to an item from the series to be usefully applied to the containing group. Schema.org attempts to anticipate some of these cases, but publishers should be free to apply properties of the series parts to the series as a whole wherever they seem appropriate.\n ",
"$ref": "schema:CreativeWorkSeries"
}
],
"properties": {
"actor": {
"description": "An actor (individual or a group), e.g. in TV, radio, movie, video games etc., or in an event. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:PerformingGroup" },
{ "$ref": "schema:Person" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:PerformingGroup" },
{ "$ref": "schema:Person" }
]
}
}
]
},
"actors": {
"description": "An actor, e.g. in TV, radio, movie, video games etc. Actors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{ "$ref": "schema:Person" },
{ "type": "array", "items": { "$ref": "schema:Person" } }
]
},
"containsSeason": {
"description": "A season that is part of the media series.",
"oneOf": [
{ "$ref": "schema:CreativeWorkSeason" },
{ "type": "array", "items": { "$ref": "schema:CreativeWorkSeason" } }
]
},
"countryOfOrigin": {
"description": "The country of origin of something, including products as well as creative works such as movie and TV content.\n\nIn the case of TV and movie, this would be the country of the principle offices of the production company or individual responsible for the movie. For other kinds of [[CreativeWork]] it is difficult to provide fully general guidance, and properties such as [[contentLocation]] and [[locationCreated]] may be more applicable.\n\nIn the case of products, the country of origin of the product. The exact interpretation of this may vary by context and product type, and cannot be fully enumerated here.",
"$ref": "schema:Country"
},
"director": {
"description": "A director of e.g. TV, radio, movie, video gaming etc. content, or of an event. Directors can be associated with individual items or with a series, episode, clip.",
"$ref": "schema:Person"
},
"directors": {
"description": "A director of e.g. TV, radio, movie, video games etc. content. Directors can be associated with individual items or with a series, episode, clip.",
"oneOf": [
{ "$ref": "schema:Person" },
{ "type": "array", "items": { "$ref": "schema:Person" } }
]
},
"episode": {
"description": "An episode of a TV, radio or game media within a series or season.",
"oneOf": [
{ "$ref": "schema:Episode" },
{ "type": "array", "items": { "$ref": "schema:Episode" } }
]
},
"episodes": {
"description": "An episode of a TV/radio series or season.",
"oneOf": [
{ "$ref": "schema:Episode" },
{ "type": "array", "items": { "$ref": "schema:Episode" } }
]
},
"musicBy": {
"description": "The composer of the soundtrack.",
"anyOf": [{ "$ref": "schema:MusicGroup" }, { "$ref": "schema:Person" }]
},
"numberOfEpisodes": {
"description": "The number of episodes in this season or series.",
"type": "integer"
},
"numberOfSeasons": {
"description": "The number of seasons in this series.",
"type": "integer"
},
"productionCompany": {
"description": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
"$ref": "schema:Organization"
},
"season": {
"description": "A season in a media series.",
"oneOf": [
{
"anyOf": [
{ "type": "string", "format": "uri" },
{ "$ref": "schema:CreativeWorkSeason" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "$ref": "schema:CreativeWorkSeason" }
]
}
}
]
},
"seasons": {
"description": "A season in a media series.",
"oneOf": [
{ "$ref": "schema:CreativeWorkSeason" },
{ "type": "array", "items": { "$ref": "schema:CreativeWorkSeason" } }
]
},
"titleEIDR": {
"description": "An [EIDR](https://eidr.org/) (Entertainment Identifier Registry) [[identifier]] representing at the most general/abstract level, a work of film or television.\n\nFor example, the motion picture known as \"Ghostbusters\" has a titleEIDR of \"10.5240/7EC7-228A-510A-053E-CBB8-J\". This title (or work) may have several variants, which EIDR calls \"edits\". See [[editEIDR]].\n\nSince schema.org types like [[Movie]], [[TVEpisode]], [[TVSeason]], and [[TVSeries]] can be used for both works and their multiple expressions, it is possible to use [[titleEIDR]] alone (for a general description), or alongside [[editEIDR]] for a more edit-specific description.\n",
"oneOf": [
{
"anyOf": [{ "type": "string", "format": "uri" }, { "type": "string" }]
},
{
"type": "array",
"items": {
"anyOf": [
{ "type": "string", "format": "uri" },
{ "type": "string" }
]
}
}
]
},
"trailer": {
"description": "The trailer of a movie or TV/radio series, season, episode, etc.",
"$ref": "schema:VideoObject"
}
}
}