mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 12:19:09 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
163
packages/nodes-base/nodes/Google/YouTube/__schema__/v1.0.0/playlistItem/add.json
vendored
Normal file
163
packages/nodes-base/nodes/Google/YouTube/__schema__/v1.0.0/playlistItem/add.json
vendored
Normal file
@@ -0,0 +1,163 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"snippet": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"publishedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"channelId": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"thumbnails": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"default": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"width": {
|
||||
"type": "integer"
|
||||
},
|
||||
"height": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"width",
|
||||
"height"
|
||||
]
|
||||
},
|
||||
"medium": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"width": {
|
||||
"type": "integer"
|
||||
},
|
||||
"height": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"width",
|
||||
"height"
|
||||
]
|
||||
},
|
||||
"high": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"width": {
|
||||
"type": "integer"
|
||||
},
|
||||
"height": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"width",
|
||||
"height"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"default",
|
||||
"medium",
|
||||
"high"
|
||||
]
|
||||
},
|
||||
"channelTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"playlistId": {
|
||||
"type": "string"
|
||||
},
|
||||
"position": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resourceId": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"videoId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"videoId"
|
||||
]
|
||||
},
|
||||
"videoOwnerChannelTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"videoOwnerChannelId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"publishedAt",
|
||||
"channelId",
|
||||
"title",
|
||||
"description",
|
||||
"thumbnails",
|
||||
"channelTitle",
|
||||
"playlistId",
|
||||
"position",
|
||||
"resourceId",
|
||||
"videoOwnerChannelTitle",
|
||||
"videoOwnerChannelId"
|
||||
]
|
||||
},
|
||||
"contentDetails": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"videoId": {
|
||||
"type": "string"
|
||||
},
|
||||
"videoPublishedAt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"videoId",
|
||||
"videoPublishedAt"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"etag",
|
||||
"id",
|
||||
"snippet",
|
||||
"contentDetails"
|
||||
]
|
||||
}
|
||||
39
packages/nodes-base/nodes/Google/YouTube/__schema__/v1.0.0/videoCategory/getAll.json
vendored
Normal file
39
packages/nodes-base/nodes/Google/YouTube/__schema__/v1.0.0/videoCategory/getAll.json
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"snippet": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"channelId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"assignable",
|
||||
"channelId"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"etag",
|
||||
"id",
|
||||
"snippet"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user