Browse Source

fix: swagger schema correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5174/head
Pranav C 2 years ago
parent
commit
b67d3a5270
  1. 102
      scripts/sdk/swagger.json

102
scripts/sdk/swagger.json

@ -8014,7 +8014,7 @@
"columns": { "columns": {
"type": "array", "type": "array",
"items": { "items": {
"$ref": "#/components/schemas/Column" "$ref": "#/components/schemas/NormalColumnRequest"
} }
}, },
"meta": {} "meta": {}
@ -8348,15 +8348,42 @@
"type": "string" "type": "string"
}, },
"np": { "np": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "integer"
},
{
"type": "null"
}
]
},
"ns": { "ns": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "integer"
},
{
"type": "null"
}
]
},
"clen": { "clen": {
"type": [ "oneOf": [
"string", {
"integer" "type": "string"
},
{
"type": "integer"
},
{
"type": "null"
}
] ]
}, },
"cop": { "cop": {
@ -10012,20 +10039,31 @@
"type": "string" "type": "string"
}, },
"np": { "np": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
"ns": { {
"type": "string" "type": "integer"
}, },
"clen": { {
"type": [ "type": "null"
"string", }
"integer"
] ]
}, },
"cop": { "ns": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "integer"
},
{
"type": "null"
}
]
},
"pk": { "pk": {
"type": "boolean" "type": "boolean"
}, },
@ -10033,14 +10071,34 @@
"type": "boolean" "type": "boolean"
}, },
"rqd": { "rqd": {
"oneOf": [
{
"type": "integer"
},
{
"type": "null"
},
{
"type": "boolean" "type": "boolean"
}
]
}, },
"column_name": { "column_name": {
"type": "string" "type": "string"
}, },
"un": { "un": {
"oneOf": [
{
"type": "boolean" "type": "boolean"
}, },
{
"type": "integer"
},
{
"type": "null"
}
]
},
"ct": { "ct": {
"type": "string" "type": "string"
}, },
@ -10051,8 +10109,15 @@
"type": "boolean" "type": "boolean"
}, },
"cdf": { "cdf": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "null"
}
]
},
"cc": { "cc": {
"type": "string" "type": "string"
}, },
@ -10062,12 +10127,25 @@
"dtx": { "dtx": {
"type": "string" "type": "string"
}, },
"dtxp": { "dtxp": { "oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "null"
}
]
},
"dtxs": { "dtxs": {
"oneOf": [
{
"type": "string" "type": "string"
}, },
{
"type": "null"
}
]
},
"au": { "au": {
"type": "boolean" "type": "boolean"
} }

Loading…
Cancel
Save