Browse Source

fix: comments - add maxlength constraint in json schema

pull/8592/head
Pranav C 1 month ago
parent
commit
148e7a71cc
  1. 6
      packages/nocodb/src/schema/swagger-v2.json
  2. 6
      packages/nocodb/src/schema/swagger.json

6
packages/nocodb/src/schema/swagger-v2.json

@ -12897,7 +12897,8 @@
"comment": {
"type": "string",
"description": "Description for the target row",
"example": "This is the comment for the row"
"example": "This is the comment for the row",
"maxLength": 3000
},
"fk_model_id": {
"type": "string",
@ -12935,7 +12936,8 @@
"comment": {
"type": "string",
"description": "Description for the target row",
"example": "This is the comment for the row"
"example": "This is the comment for the row",
"maxLength": 3000
},
"fk_model_id": {
"type": "string",

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

@ -18927,7 +18927,8 @@
"comment": {
"type": "string",
"description": "Description for the target row",
"example": "This is the comment for the row"
"example": "This is the comment for the row",
"maxLength": 3000
},
"fk_model_id": {
"type": "string",
@ -18965,7 +18966,8 @@
"comment": {
"type": "string",
"description": "Description for the target row",
"example": "This is the comment for the row"
"example": "This is the comment for the row",
"maxLength": 3000
},
"fk_model_id": {
"type": "string",

Loading…
Cancel
Save