{
    "$ref": "#/definitions/DictatorConfig",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
        "DictatorConfig": {
            "additionalProperties": false,
            "description": "This describes the .dictatorconfig that can be placed in the dictated folder.",
            "properties": {
                "ignore": {
                    "description": "List of glob patterns in the folder to ignore.",
                    "items": {
                        "minimum": 1,
                        "type": "string"
                    },
                    "type": "array"
                },
                "options": {
                    "$ref": "#/definitions/DictatorConfigOptions"
                }
            },
            "type": "object"
        },
        "DictatorConfigOptions": {
            "additionalProperties": false,
            "properties": {
                "jsonIndentation": {
                    "description": "This indentation will be used when/if manipulating json files.",
                    "type": "number"
                }
            },
            "type": "object"
        }
    }
}

