{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkflowSchemeAssociations",
"title": "WorkflowSchemeAssociations",
"additionalProperties": false,
"description": "A workflow scheme along with a list of projects that use it.",
"properties": {
"projectIds": {
"description": "The list of projects that use the workflow scheme.",
"items": {
"type": "string"
},
"type": "array"
},
"workflowScheme": {
"allOf": [
{
"$ref": "#/components/schemas/WorkflowScheme"
}
],
"description": "The workflow scheme."
}
},
"required": [
"projectIds",
"workflowScheme"
],
"type": "object"
}