16 lines
335 B
JSON
16 lines
335 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "TurnResult",
|
|
"type": "object",
|
|
"required": ["committedNodeId", "playerView"],
|
|
"properties": {
|
|
"committedNodeId": {
|
|
"type": "string"
|
|
},
|
|
"playerView": {
|
|
"$ref": "player-view.schema.json"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|