{
    "title": "ExpectNotice",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.sign.model.instruction.ExpectNotice",
    "type": "object",
    "required": [
        "boardPath"
    ],
    "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",
                    "ExpectNotice",
                    "ImplicitEnd",
                    "AddOrder",
                    "Cycle"
                ]
            }
        },
        "additionalProperties": false
    },
    "description": "instruction with fixed property 'TYPE':'ExpectNotice'",
    "propertyOrder": [
        "TYPE",
        "boardPath"
    ],
    "properties": {
        "boardPath": {
            "alias": "boardName,noticeBoardName",
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        }
    },
    "additionalProperties": false
}