big tings

This commit is contained in:
Max Richter
2025-08-17 15:16:17 +02:00
parent 40b9be887d
commit c687eff53d
958 changed files with 32279 additions and 704 deletions

View File

@@ -0,0 +1,84 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Episode",
"title": "Episode",
"description": "A media episode (e.g. TV, radio, video game) which can be part of a series or season.",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"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" } }
]
},
"duration": {
"description": "The duration of the item (movie, audio recording, event, etc.) in [ISO 8601 duration format](http://en.wikipedia.org/wiki/ISO_8601).",
"anyOf": [
{ "type": "string", "$comment": "https://schema.org/Duration" },
{ "$ref": "schema:QuantitativeValue" }
]
},
"episodeNumber": {
"description": "Position of the episode within an ordered group of episodes.",
"anyOf": [{ "type": "integer" }, { "type": "string" }]
},
"musicBy": {
"description": "The composer of the soundtrack.",
"anyOf": [{ "$ref": "schema:MusicGroup" }, { "$ref": "schema:Person" }]
},
"partOfSeason": {
"description": "The season to which this episode belongs.",
"$ref": "schema:CreativeWorkSeason"
},
"partOfSeries": {
"description": "The series to which this episode or season belongs.",
"$ref": "schema:CreativeWorkSeries"
},
"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"
}
}
}