{
    "title": "changes",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.inventory.changes.AddToChangeRequest",
    "type": "object",
    "required": [
        "change",
        "add"
    ],
    "properties": {
        "change": {
            "javaType": "com.sos.joc.model.inventory.changes.common.ChangeIdentifier",
            "type": "object",
            "required": [
                "name"
            ],
            "properties": {
                "name": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 100
                },
                "title": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "state": {
                    "javaType": "com.sos.joc.model.inventory.changes.common.ChangeState",
                    "type": "string",
                    "enum": [
                        "OPEN",
                        "CLOSED",
                        "PUBLISHED"
                    ]
                }
            },
            "additionalProperties": false
        },
        "add": {
            "type": "array",
            "minItems": 1,
            "items": {
                "javaType": "com.sos.joc.model.inventory.changes.common.ChangeItem",
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    },
                    "path": {
                        "description": "absolute path of an object.",
                        "type": "string",
                        "pattern": "^(/|(/[^/\\\\<>?:\"|*]+)+)$",
                        "maxLength": 255,
                        "minLength": 1
                    },
                    "objectType": {
                        "javaType": "com.sos.joc.model.inventory.common.ConfigurationType",
                        "type": "string",
                        "enum": [
                            "FOLDER",
                            "WORKFLOW",
                            "JOBCLASS",
                            "JOBRESOURCE",
                            "LOCK",
                            "NOTICEBOARD",
                            "FILEORDERSOURCE",
                            "WORKINGDAYSCALENDAR",
                            "NONWORKINGDAYSCALENDAR",
                            "SCHEDULE",
                            "INCLUDESCRIPT",
                            "JOBTEMPLATE",
                            "DEPLOYMENTDESCRIPTOR",
                            "DESCRIPTORFOLDER"
                        ]
                    }
                },
                "additionalProperties": false
            }
        }
    },
    "additionalProperties": false
}