{
"type": "object",
"required": [
"name",
"version"
],
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/Name"
},
{
"description": "<p> The name of the workflow type.</p> <note> <p>The combination of workflow type name and version must be unique with in a domain.</p> </note>"
}
]
},
"version": {
"allOf": [
{
"$ref": "#/components/schemas/Version"
},
{
"description": "<p> The version of the workflow type.</p> <note> <p>The combination of workflow type name and version must be unique with in a domain.</p> </note>"
}
]
}
},
"description": "Represents a workflow type.",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "WorkflowType"
}