Browse Source

refactor(nocodb): project model in swagger.json

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

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

@ -7305,23 +7305,30 @@
] ]
}, },
"ProjectReq": { "ProjectReq": {
"title": "Project", "title": "ProjectReq",
"type": "object", "type": "object",
"properties": { "properties": {
"title": { "title": {
"type": "string", "type": "string",
"minLength": 1, "minLength": 1,
"maxLength": 128 "maxLength": 128,
"description": "Project Title",
"example": "My Project"
}, },
"description": { "description": {
"type": "string" "type": "string",
"description": "Project Description",
"example": "This is my project description"
}, },
"color": { "color": {
"type": "string", "type": "string",
"maxLength": 50 "maxLength": 50,
"example": "#24716E",
"description": "Primary Theme Color"
}, },
"bases": { "bases": {
"type": "array", "type": "array",
"description": "Array of Bases",
"items": { "items": {
"$ref": "#/components/schemas/BaseReq" "$ref": "#/components/schemas/BaseReq"
} }
@ -7336,31 +7343,43 @@
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
"type": "string" "type": "string",
"example": "p_124hhlkbeasewh",
"description": "Unique Project ID"
}, },
"title": { "title": {
"type": "string" "type": "string",
"description": "Project Title",
"example": "my-project"
}, },
"status": { "status": {
"type": "string" "type": "string"
}, },
"description": { "description": {
"type": "string" "type": "string",
"description": "Project Description",
"example": "This is my project description"
}, },
"meta": { "meta": {
"$ref": "#/components/schemas/Meta" "$ref": "#/components/schemas/Meta",
"description": "Meta Info such as theme colors"
}, },
"color": { "color": {
"type": "string" "type": "string",
"description": "Primary Theme Color",
"example": "#24716E"
}, },
"deleted": { "deleted": {
"$ref": "#/components/schemas/Bool" "$ref": "#/components/schemas/Bool",
"description": "Is the project deleted"
}, },
"order": { "order": {
"type": "number" "type": "number",
"description": "The order in project list"
}, },
"bases": { "bases": {
"type": "array", "type": "array",
"description": "List of base models",
"items": { "items": {
"$ref": "#/components/schemas/Base" "$ref": "#/components/schemas/Base"
} }
@ -7369,17 +7388,25 @@
"$ref": "#/components/schemas/Bool" "$ref": "#/components/schemas/Bool"
}, },
"prefix": { "prefix": {
"type": "string" "type": "string",
"description": "Project prefix. Used in XCDB only.",
"example": "nc_vm5q__"
}, },
"created_at": {}, "created_at": {
"updated_at": {}, "description": "The created time of the record",
"slug": { "type": "string",
"type": "string" "format": "date-time",
"example": "2023-03-01 14:27:36"
},
"updated_at": {
"description": "The updated time of the record",
"type": "string",
"format": "date-time",
"example": "2023-03-01 14:27:36"
} }
} }
}, },
"ProjectList": { "ProjectList": {
"description": "",
"type": "object", "type": "object",
"x-examples": { "x-examples": {
"example-1": { "example-1": {
@ -7415,12 +7442,14 @@
"type": "array", "type": "array",
"uniqueItems": true, "uniqueItems": true,
"minItems": 1, "minItems": 1,
"description": "List of Project Models",
"items": { "items": {
"$ref": "#/components/schemas/Project" "$ref": "#/components/schemas/Project"
} }
}, },
"pageInfo": { "pageInfo": {
"$ref": "#/components/schemas/Paginated" "$ref": "#/components/schemas/Paginated",
"description": "Pagination Info"
} }
} }
}, },
@ -7461,12 +7490,14 @@
} }
}, },
"BaseReq": { "BaseReq": {
"title": "Base", "title": "BaseReq",
"type": "object", "type": "object",
"properties": { "properties": {
"alias": { "alias": {
"type": "string", "type": "string",
"maxLength": 128 "maxLength": 128,
"description": "Base Name - Default BASE will be null by default",
"example": "My Base"
}, },
"type": { "type": {
"type": "string", "type": "string",
@ -7478,17 +7509,26 @@
"mssql", "mssql",
"oracledb", "oracledb",
"snowflake" "snowflake"
] ],
"description": "DB Type"
}, },
"is_meta": { "is_meta": {
"type": "boolean" "type": "boolean",
"description": "Is the data source connected externally"
}, },
"config": {}, "config": {
"inflection_column": { "description": "Encrypted Base Configuration",
"type": "string" "type": "string"
}, },
"inflection_column": {
"type": "string",
"description": "Inflection for columns",
"example": "camelize"
},
"inflection_table": { "inflection_table": {
"type": "string" "type": "string",
"description": "Inflection for tables",
"example": "camelize"
} }
} }
}, },

Loading…
Cancel
Save