{
    "title": "Variable-Set",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.inventory.model.schedule.VariableSet",
    "type": "object",
    "description": "A varibble set for a schedule",
    "properties": {
        "orderName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "variables": {
            "description": "a map for arbitrary key-value pairs",
            "javaType": "com.sos.inventory.model.common.Variables",
            "type": "object",
            "additionalProperties": true
        }
    }
}