big tings
This commit is contained in:
121
registry/schema-org/RadioSeries.schema.json
Normal file
121
registry/schema-org/RadioSeries.schema.json
Normal file
@@ -0,0 +1,121 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "schema:RadioSeries",
|
||||
"title": "RadioSeries",
|
||||
"description": "CreativeWorkSeries dedicated to radio broadcast and associated online delivery.",
|
||||
"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" } }
|
||||
]
|
||||
},
|
||||
"containsSeason": {
|
||||
"description": "A season that is part of the media series.",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:CreativeWorkSeason" },
|
||||
{ "type": "array", "items": { "$ref": "schema:CreativeWorkSeason" } }
|
||||
]
|
||||
},
|
||||
"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" } }
|
||||
]
|
||||
},
|
||||
"trailer": {
|
||||
"description": "The trailer of a movie or TV/radio series, season, episode, etc.",
|
||||
"$ref": "schema:VideoObject"
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user