{
    "title": "sleep",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.sign.model.instruction.Sleep",
    "type": "object",
    "required": [
        "duration"
    ],
    "extends": {
        "javaType": "com.sos.sign.model.instruction.Instruction",
        "type": "object",
        "required": [
            "TYPE"
        ],
        "properties": {
            "TYPE": {
                "javaType": "com.sos.inventory.model.instruction.InstructionType",
                "type": "string",
                "enum": [
                    "Execute.Named",
                    "If",
                    "Try",
                    "Fork",
                    "ForkList",
                    "Finish",
                    "Fail",
                    "Retry",
                    "Lock",
                    "Prompt",
                    "PostNotice",
                    "PostNotices",
                    "ExpectNotice",
                    "ExpectNotices",
                    "ConsumeNotices",
                    "ImplicitEnd",
                    "AddOrder",
                    "Cycle",
                    "StickySubagent",
                    "Options",
                    "Break",
                    "CaseWhen",
                    "Sleep"
                ]
            },
            "label": {
                "type": "string"
            }
        },
        "additionalProperties": false
    },
    "description": "instruction with fixed property 'TYPE':'Sleep'",
    "properties": {
        "duration": {
            "type": "string",
            "minLength": 1
        }
    },
    "additionalProperties": false
}