{
    "title": "WorkflowBoards",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.workflow.WorkflowBoards",
    "type": "object",
    "extends": {
        "javaType": "com.sos.controller.model.workflow.WorkflowIdAndTags",
        "type": "object",
        "extends": {
            "javaType": "com.sos.controller.model.workflow.WorkflowId",
            "type": "object",
            "required": [
                "path"
            ],
            "properties": {
                "path": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255,
                    "minLength": 1
                },
                "versionId": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                }
            },
            "additionalProperties": false
        },
        "properties": {
            "workflowTags": {
                "type": "array",
                "uniqueItems": true,
                "items": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                }
            }
        },
        "additionalProperties": false
    },
    "properties": {
        "postNotices": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "expectNotices": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "consumeNotices": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    },
    "additionalProperties": false
}