{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "https://frontastic.cloud/json/tasticSchema",
    "title": "Tastic Schema",
    "description": "A Frontastic tastic definition",
    "type": "object",
    "properties": {
        "tasticType": {
            "type": "string",
            "pattern": "[^ ]",
            "maxLength": 255
        },
        "name": {
            "type": "string",
            "maxLength": 255
        },
        "description": {
            "type": "string",
            "maxLength": 255
        },
        "category": {
            "type": "string",
            "maxLength": 255
        },
        "maxUsePerPage": {
            "type": "integer",
            "minimum": 1
        },
        "schema": {
            "$ref": "https://frontastic.cloud/json/library/common#/definitions/schema"
        }
    },
    "required": ["tasticType", "name", "schema"]
}
