{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PublishedWorkflowId",
"title": "PublishedWorkflowId",
"additionalProperties": false,
"description": "Properties that identify a published workflow.",
"properties": {
"entityId": {
"description": "The entity ID of the workflow.",
"type": "string"
},
"name": {
"description": "The name of the workflow.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}