{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowOperations", "title": "WorkflowOperations", "additionalProperties": false, "description": "Operations allowed on a workflow", "properties": { "canDelete": { "description": "Whether the workflow can be deleted.", "type": "boolean" }, "canEdit": { "description": "Whether the workflow can be updated.", "type": "boolean" } }, "required": [ "canDelete", "canEdit" ], "type": "object" }