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

22 lines
676 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:GamePlayMode",
"title": "GamePlayMode",
"description": "Indicates whether this game is multi-player, co-op or single-player.",
"type": "string",
"oneOf": [
{
"description": "Play mode: CoOp. Co-operative games, where you play on the same team with friends.",
"const": "CoOp"
},
{
"description": "Play mode: MultiPlayer. Requiring or allowing multiple human players to play simultaneously.",
"const": "MultiPlayer"
},
{
"description": "Play mode: SinglePlayer. Which is played by a lone player.",
"const": "SinglePlayer"
}
]
}