Browse Source

fix: move snapshot swagger definition to ee

pull/9879/head
DarkPhoenix2704 3 days ago
parent
commit
dba5e4dc4a
  1. 39
      packages/nocodb/src/schema/swagger.json

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

@ -27331,6 +27331,45 @@
}
}
},
"Snapshot": {
"description": "Model for Snapshot",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/Id",
"description": "Unique ID"
},
"title": {
"type": "string",
"description": "Title of the Snapshot"
},
"base_id": {
"$ref": "#/components/schemas/Id",
"description": "Foreign Key to Base"
},
"snapshot_base_id": {
"$ref": "#/components/schemas/Id",
"description": "Foreign Key to Snapshot Base"
},
"fk_workspace_id": {
"$ref": "#/components/schemas/Id",
"description": "Foreign Key to Workspace"
},
"created_at": {
"format": "date",
"type": "string",
"description": "Date of creation"
},
"created_by" : {
"$ref": "#/components/schemas/Id",
"description": "User ID of the creator"
},
"status": {
"type": "string",
"description": "Status of the Snapshot"
}
}
},
"ExtensionReq": {
"type": "object",
"properties": {

Loading…
Cancel
Save