{
    "title": "childOrder",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.order.ChildOrder",
    "type": "object",
    "required": [
        "branchId",
        "orderId"
    ],
    "properties": {
        "branchId": {
            "type": "string"
        },
        "orderId": {
            "type": "string"
        },
        "variablesDiff": {
            "javaType": "com.sos.controller.model.common.VariablesDiff",
            "type": "object",
            "properties": {
                "changed": {
                    "description": "a map for arbitrary key-value pairs",
                    "javaType": "com.sos.inventory.model.common.Variables",
                    "type": "object",
                    "additionalProperties": true
                },
                "deleted": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                }
            },
            "additionalProperties": {
                "type": "string"
            }
        }
    },
    "additionalProperties": false
}