Browse Source

fix(nocodb): comparison_op & fk_column_id types in swagger.json

pull/5771/head
Wing-Kam Wong 1 year ago
parent
commit
002c1948f6
  1. 18
      packages/nocodb/src/schema/swagger.json

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

@ -15197,6 +15197,8 @@
},
"comparison_op": {
"description": "Comparison Operator",
"anyOf": [
{
"enum": [
"allof",
"anyof",
@ -15230,6 +15232,11 @@
],
"type": "string"
},
{
"type": "null"
}
]
},
"comparison_sub_op": {
"anyOf": [
{
@ -15262,7 +15269,7 @@
"description": "Comparison Sub-Operator"
},
"fk_column_id": {
"$ref": "#/components/schemas/Id",
"$ref": "#/components/schemas/StringOrNull",
"description": "Foreign Key to Column"
},
"fk_hook_id": {
@ -15518,6 +15525,8 @@
"properties": {
"comparison_op": {
"description": "Comparison Operator",
"anyOf": [
{
"enum": [
"allof",
"anyof",
@ -15551,6 +15560,11 @@
],
"type": "string"
},
{
"type": "null"
}
]
},
"comparison_sub_op": {
"anyOf": [
{
@ -15583,7 +15597,7 @@
"description": "Comparison Sub-Operator"
},
"fk_column_id": {
"$ref": "#/components/schemas/Id",
"$ref": "#/components/schemas/StringOrNull",
"description": "Foreign Key to Column"
},
"fk_parent_id": {

Loading…
Cancel
Save