{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://play.monpa.fr/doc/assets/deck_shema.json",
    "title": "Schema of a JSON deck for Monpa Simu",
    "type": "array",
    "items": {
        "type": "object",
        "properties": {
            "name": {
                "type": "string"
            },
            "element": {
                "type": "string"
            },
            "cost": {
                "type": "string"
            },
            "type": {
                "type": "string"
            },
            "effect": {
                "type": "string"
            },
            "flavor": {
                "type": "string"
            },
            "power": {
                "type": "string"
            },
            "defense": {
                "type": "string"
            },
            "kitsune_tails": {
                "type": "string"
            },
            "role": {
                "type": "string",
                "pattern": "^(commander|favour)$"
            },
            "image": {
                "type": "string"
            }
        }
    }
}
