Skip to content

Commit

Permalink
Fix: Openapi get workspaces fixes (#140)
Browse files Browse the repository at this point in the history
Add fields for project ids and workspace inputs in the Workspace schema

Signed-off-by: Eloy Coto <eloy.coto@acalustra.com>
  • Loading branch information
eloycoto committed May 8, 2023
1 parent d4b427b commit f9ce230
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions assets/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2359,6 +2359,39 @@
"type": "string",
"format": "date-time"
},
"project_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"inputs": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"normalized_name": {
"type": "string"
}
}
}
},
"description": {
"type": "string",
"description": "A description about the workspace.",
Expand Down

0 comments on commit f9ce230

Please sign in to comment.