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": "getStream",
"summary": "Get a Stream object by ID",
"tags": [
"Streams"
],
"tags": ["Streams"],
"parameters": [
{
"in": "path",
@@ -23,9 +21,8 @@
"content": {
"application/json": {
"schema": {
"required": [
"result"
],
"type": "object",
"required": ["result"],
"properties": {
"result": {
"$ref": "#/components/schemas/StreamObject"
@@ -43,4 +40,4 @@
}
}
}
}
}