Add missing json schema types

This commit is contained in:
Jamie Curnow
2023-05-31 16:34:20 +10:00
parent 63845377d9
commit adf0030b1c
44 changed files with 60 additions and 44 deletions

View File

@ -1,9 +1,7 @@
{
"operationId": "getStreams",
"summary": "Get a list of Streams",
"tags": [
"Streams"
],
"tags": ["Streams"],
"parameters": [
{
"in": "query",
@ -39,9 +37,8 @@
"content": {
"application/json": {
"schema": {
"required": [
"result"
],
"type": "object",
"required": ["result"],
"properties": {
"result": {
"$ref": "#/components/schemas/StreamList"
@ -61,9 +58,7 @@
"direction": "ASC"
}
],
"items": [
"TODO"
]
"items": ["TODO"]
}
}
}
@ -72,4 +67,4 @@
}
}
}
}
}