{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Config", "type": "object", "required": [ "available_cards", "name", "piles", "player_piles", "script" ], "properties": { "authors": { "default": [], "type": "array", "items": { "type": "string" } }, "available_cards": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Card" } }, "default_back": { "type": [ "string", "null" ] }, "name": { "type": "string" }, "piles": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Pile" } }, "player_piles": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Pile" } }, "script": { "type": "string" }, "version": { "default": "0.0.0", "type": "string" } }, "definitions": { "Card": { "type": "object", "required": [ "image" ], "properties": { "back_image": { "type": [ "string", "null" ] }, "image": { "type": "string" } }, "additionalProperties": true }, "Pile": { "type": "object", "properties": { "cards": { "default": [], "type": "array", "items": { "type": "string" } } }, "additionalProperties": true } } }