{
    "title": "Resume Order",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.command.ResumeOrder",
    "type": "object",
    "extends": {
        "javaType": "Command"
    },
    "required": [
        "orderId"
    ],
    "propertyOrder": [
        "TYPE",
        "orderId",
        "position",
        "arguments"
    ],
    "properties": {
        "orderId": {
            "type": "string"
        },
        "position": {
            "description": "Actually, each even item is a string, each odd item is an integer",
            "type": "array",
            "items": {
                "anyOf": [
                    {
                        "type": "integer"
                    },
                    {
                        "type": "string"
                    }
                ]
            }
        },
        "arguments": {
            "description": "a map for arbitrary key-value pairs",
            "javaType": "com.sos.inventory.model.common.Variables",
            "type": "object",
            "additionalProperties": true
        }
    },
    "additionalProperties": false
}