Browse Source

Merge pull request #3564 from nocodb/chore/swagger-corrections

chore(swagger): provide required props as an array
pull/3572/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
e75dafac62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      scripts/sdk/swagger.json

13
scripts/sdk/swagger.json

@ -5821,9 +5821,6 @@
"pageInfo": {
"$ref": "#/components/schemas/Paginated"
}
},
"": {
"type": "string"
}
},
"Base": {
@ -6148,8 +6145,7 @@
"type": "string"
},
"title": {
"type": "string",
"required": true
"type": "string"
},
"deleted": {
"type": "boolean"
@ -6193,7 +6189,8 @@
}
]
}
}
},
"required": ["title"]
},
"TableInfo": {
"title": "Table",
@ -6981,10 +6978,12 @@
"properties": {
"options": {
"type": "array",
"required": true,
"$ref": "#/components/schemas/SelectOption"
}
},
"required": [
"options"
],
"examples": [
{
"options": [

Loading…
Cancel
Save