{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowSchemeProjectAssociation", "title": "WorkflowSchemeProjectAssociation", "additionalProperties": false, "description": "An associated workflow scheme and project.", "properties": { "projectId": { "description": "The ID of the project.", "type": "string" }, "workflowSchemeId": { "description": "The ID of the workflow scheme. If the workflow scheme ID is `null`, the operation assigns the default workflow scheme.", "type": "string" } }, "required": [ "projectId" ], "type": "object" }