{
    "title": "workflow with dependencies",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.workflow.BoardWorkflows",
    "type": "object",
    "additionalProperties": {
        "type": "array",
        "items": {
            "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
        }
    }
}