{
    "type": "object",
    "properties": {
        "operations": {
            "type": "array",
            "maxItems": 100,
            "items": {
                "type": "object",
                "properties": {
                    "schema": {
                        "type": "string",
                        "minLength": 1,
                        "pattern": "[a-zA-Z_0-9~.:+*^$!]+"
                    },
                    "operation": {
                        "type": "string",
                        "enum": [
                            "CREATE",
                            "UPDATE",
                            "DELETE"
                        ]
                    },
                    "id": {
                        "type": "integer",
                        "minValue": 0,
                        "maxValue": 9007199254740991
                    },
                    "entity": {
                        "type": "object",
                        "additionalProperties": true
                    },
                    "If-Match": {
                        "type": "string"
                    },
                    "If-None-Match": {
                        "type": "string"
                    }
                },
                "required": [
                    "schema",
                    "operation"
                ],
                "additionalProperties": false
            }
        }
    },
    "additionalProperties": false
}
