Feature/update api example outputs (#2547)

* /v1/workspace/{slug} actually returns an array - update example output

* update swagger example to show array output
This commit is contained in:
Mr Simon C 2024-10-29 23:50:19 +00:00 committed by GitHub
parent 4eeac2752b
commit ccde891aa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 24 deletions

View File

@ -150,7 +150,8 @@ function apiWorkspaceEndpoints(app) {
schema: { schema: {
type: 'object', type: 'object',
example: { example: {
workspace: { workspace: [
{
"id": 79, "id": 79,
"name": "My workspace", "name": "My workspace",
"slug": "my-workspace-123", "slug": "my-workspace-123",
@ -162,6 +163,7 @@ function apiWorkspaceEndpoints(app) {
"documents": [], "documents": [],
"threads": [] "threads": []
} }
]
} }
} }
} }

View File

@ -1473,7 +1473,8 @@
"schema": { "schema": {
"type": "object", "type": "object",
"example": { "example": {
"workspace": { "workspace": [
{
"id": 79, "id": 79,
"name": "My workspace", "name": "My workspace",
"slug": "my-workspace-123", "slug": "my-workspace-123",
@ -1485,6 +1486,7 @@
"documents": [], "documents": [],
"threads": [] "threads": []
} }
]
} }
} }
} }