{
    "title": "ExpectNotices",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.sign.model.instruction.ExpectNotices",
    "type": "object",
    "required": [
        "boardPaths"
    ],
    "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':'ExpectNotices'",
    "propertyOrder": [
        "TYPE",
        "boardPaths"
    ],
    "properties": {
        "boardPaths": {
            "alias": "noticeBoardNames",
            "type": "string",
            "pattern": "^[^<>]*$",
            "minLength": 1
        },
        "whenNotAnnounced": {
            "javaType": "com.sos.inventory.model.instruction.WhenNotAnnouced",
            "type": "string",
            "enum": [
                "Wait",
                "DontWait",
                "SkipWhenNoNotice"
            ],
            "default": "Wait"
        }
    },
    "additionalProperties": false
}