chore(oas): [14/n] improve OAS schemas (#9202)

* chore(oas): [14/n] improve OAS schemas

* fix description of required_quantity
This commit is contained in:
Shahed Nasser
2024-09-19 18:52:46 +02:00
committed by GitHub
parent d6ce0688db
commit 426c39c04b
20 changed files with 133 additions and 281 deletions
@@ -1,7 +1,7 @@
/**
* @schema AdminWorkflowExecution
* type: object
* description: The workflows execution's workflow execution.
* description: The workflows execution's details.
* x-schemaName: AdminWorkflowExecution
* required:
* - id
@@ -20,11 +20,11 @@
* workflow_id:
* type: string
* title: workflow_id
* description: The workflow execution's workflow id.
* description: The ID of the workflow.
* transaction_id:
* type: string
* title: transaction_id
* description: The workflow execution's transaction id.
* description: The workflow execution's transaction ID.
* execution:
* $ref: "#/components/schemas/AdminWorkflowExecutionExecution"
* context:
@@ -44,17 +44,17 @@
* type: string
* format: date-time
* title: created_at
* description: The workflow execution's created at.
* description: The date the workflow execution was created.
* updated_at:
* type: string
* format: date-time
* title: updated_at
* description: The workflow execution's updated at.
* description: The date the workflow execution was updated.
* deleted_at:
* type: string
* format: date-time
* title: deleted_at
* description: The workflow execution's deleted at.
* description: The date the workflow execution was deleted.
*
*/