mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
222
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/copy.json
vendored
Normal file
222
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/copy.json
vendored
Normal file
@@ -0,0 +1,222 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"file_version": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha1": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sha1"
|
||||
]
|
||||
},
|
||||
"sequence_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha1": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"path_collection": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entries": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"total_count",
|
||||
"entries"
|
||||
]
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"trashed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"purged_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"content_created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"name",
|
||||
"login"
|
||||
]
|
||||
},
|
||||
"modified_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"name",
|
||||
"login"
|
||||
]
|
||||
},
|
||||
"owned_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"name",
|
||||
"login"
|
||||
]
|
||||
},
|
||||
"shared_link": {
|
||||
"type": "null"
|
||||
},
|
||||
"parent": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"item_status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"file_version",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"sha1",
|
||||
"name",
|
||||
"description",
|
||||
"size",
|
||||
"path_collection",
|
||||
"created_at",
|
||||
"modified_at",
|
||||
"trashed_at",
|
||||
"purged_at",
|
||||
"content_created_at",
|
||||
"content_modified_at",
|
||||
"created_by",
|
||||
"modified_by",
|
||||
"owned_by",
|
||||
"shared_link",
|
||||
"parent",
|
||||
"item_status"
|
||||
]
|
||||
}
|
||||
11
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/delete.json
vendored
Normal file
11
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/delete.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user