{
    "title": "WorkflowBoardsV",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.workflow.WorkflowBoardsV",
    "type": "object",
    "extends": {
        "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
    },
    "properties": {
        "presentDueOrderIds": {
            "type": "array",
            "uniqueItems": true,
            "items": {
                "type": "string"
            }
        },
        "futureDueOrderIds": {
            "type": "array",
            "uniqueItems": true,
            "items": {
                "type": "string"
            }
        },
        "numOfExpectingOrders": {
            "type": "integer",
            "minimum": 0
        },
        "expectingOrderIds": {
            "type": "array",
            "uniqueItems": true,
            "items": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255,
                "minLength": 1
            }
        }
    },
    "additionalProperties": false
}