Browse Source

refactor(nocodb): bool + password model in swagger.json

pull/5222/head
Wing-Kam Wong 2 years ago
parent
commit
42a9f15c9d
  1. 10
      packages/nocodb/src/schema/swagger.json

10
packages/nocodb/src/schema/swagger.json

@ -10667,10 +10667,13 @@
"Bool": { "Bool": {
"oneOf": [ "oneOf": [
{ {
"type": "boolean" "type": "boolean",
"description": "true or false"
}, },
{ {
"type": "integer" "type": "integer",
"description": "0 or 1",
"example": 0
}, },
{ {
"type": "null" "type": "null"
@ -10690,7 +10693,8 @@
"type": "string", "type": "string",
"minLength": 8, "minLength": 8,
"title": "Password Model", "title": "Password Model",
"description": "Model for Password" "description": "Model for Password",
"example": "password123456789"
}, },
"StringOrNull": { "StringOrNull": {
"oneOf": [ "oneOf": [

Loading…
Cancel
Save