big tings
This commit is contained in:
190
registry/schema-org/VideoGameSeries.schema.json
Normal file
190
registry/schema-org/VideoGameSeries.schema.json
Normal file
@@ -0,0 +1,190 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "schema:VideoGameSeries",
|
||||
"title": "VideoGameSeries",
|
||||
"description": "A video game series.",
|
||||
"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" } }
|
||||
]
|
||||
},
|
||||
"characterAttribute": {
|
||||
"description": "A piece of data that represents a particular aspect of a fictional character (skill, power, character points, advantage, disadvantage).",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:Thing" },
|
||||
{ "type": "array", "items": { "$ref": "schema:Thing" } }
|
||||
]
|
||||
},
|
||||
"cheatCode": {
|
||||
"description": "Cheat codes to the game.",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:CreativeWork" },
|
||||
{ "type": "array", "items": { "$ref": "schema:CreativeWork" } }
|
||||
]
|
||||
},
|
||||
"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" } }
|
||||
]
|
||||
},
|
||||
"gameItem": {
|
||||
"description": "An item is an object within the game world that can be collected by a player or, occasionally, a non-player character.",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:Thing" },
|
||||
{ "type": "array", "items": { "$ref": "schema:Thing" } }
|
||||
]
|
||||
},
|
||||
"gameLocation": {
|
||||
"description": "Real or fictional location of the game (or part of game).",
|
||||
"oneOf": [
|
||||
{
|
||||
"anyOf": [
|
||||
{ "type": "string", "format": "uri" },
|
||||
{ "$ref": "schema:Place" },
|
||||
{ "$ref": "schema:PostalAddress" }
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"anyOf": [
|
||||
{ "type": "string", "format": "uri" },
|
||||
{ "$ref": "schema:Place" },
|
||||
{ "$ref": "schema:PostalAddress" }
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"gamePlatform": {
|
||||
"description": "The electronic systems used to play video games.",
|
||||
"anyOf": [
|
||||
{ "type": "string", "format": "uri" },
|
||||
{ "type": "string" },
|
||||
{ "$ref": "schema:Thing" }
|
||||
]
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"numberOfPlayers": {
|
||||
"description": "Indicate how many people can play this game (minimum, maximum, or range).",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:QuantitativeValue" },
|
||||
{ "type": "array", "items": { "$ref": "schema:QuantitativeValue" } }
|
||||
]
|
||||
},
|
||||
"numberOfSeasons": {
|
||||
"description": "The number of seasons in this series.",
|
||||
"type": "integer"
|
||||
},
|
||||
"playMode": {
|
||||
"description": "Indicates whether this game is multi-player, co-op or single-player. The game can be marked as multi-player, co-op and single-player at the same time.",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:GamePlayMode" },
|
||||
{ "type": "array", "items": { "$ref": "schema:GamePlayMode" } }
|
||||
]
|
||||
},
|
||||
"productionCompany": {
|
||||
"description": "The production company or studio responsible for the item, e.g. series, video game, episode etc.",
|
||||
"$ref": "schema:Organization"
|
||||
},
|
||||
"quest": {
|
||||
"description": "The task that a player-controlled character, or group of characters may complete in order to gain a reward.",
|
||||
"$ref": "schema:Thing"
|
||||
},
|
||||
"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