{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Schema form",
    "name": "SchemaForm",
    "description": "Configuration options for the behaviour of schema forms.",
    "type": "object",
    "properties": {
        "SchemaForm": {
            "type": "object",
            "properties": {
                "createNewResourceSchedule": {
                    "type": "boolean",
                    "description": "Should a schedule be added when creating a new resource?",
                    "default": false
                }
            },
            "required": [
                "createNewResourceSchedule"
            ]
        }
    }
}
