66 lines
3.4 KiB
JSON
66 lines
3.4 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema:MovieSeries",
|
|
"title": "MovieSeries",
|
|
"description": "A series of movies. Included movies can be indicated with the hasPart property.",
|
|
"type": "object",
|
|
"allOf": [
|
|
{
|
|
"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" } }
|
|
]
|
|
},
|
|
"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" } }
|
|
]
|
|
},
|
|
"musicBy": {
|
|
"description": "The composer of the soundtrack.",
|
|
"anyOf": [{ "$ref": "schema:MusicGroup" }, { "$ref": "schema:Person" }]
|
|
},
|
|
"productionCompany": {
|
|
"description": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
|
|
"$ref": "schema:Organization"
|
|
},
|
|
"trailer": {
|
|
"description": "The trailer of a movie or TV/radio series, season, episode, etc.",
|
|
"$ref": "schema:VideoObject"
|
|
}
|
|
}
|
|
}
|