mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: Generate Schema Files - 18113073 (no-changelog) (#12927)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
70
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/attachment/create.json
vendored
Normal file
70
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/attachment/create.json
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMember": {
|
||||
"type": "string"
|
||||
},
|
||||
"isUpload": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"mimeType": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"previews": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"scaled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"bytes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"height": {
|
||||
"type": "integer"
|
||||
},
|
||||
"width": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"_id",
|
||||
"scaled",
|
||||
"url",
|
||||
"bytes",
|
||||
"height",
|
||||
"width"
|
||||
]
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pos": {
|
||||
"type": "integer"
|
||||
},
|
||||
"isMalicious": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
17
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/attachment/getAll.json
vendored
Normal file
17
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/attachment/getAll.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pos": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
292
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/board/create.json
vendored
Normal file
292
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/board/create.json
vendored
Normal file
@@ -0,0 +1,292 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"descData": {
|
||||
"type": "null"
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"idEnterprise": {
|
||||
"type": "null"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"prefs": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"permissionLevel": {
|
||||
"type": "string"
|
||||
},
|
||||
"hideVotes": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"voting": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments": {
|
||||
"type": "string"
|
||||
},
|
||||
"invitations": {
|
||||
"type": "string"
|
||||
},
|
||||
"selfJoin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardCovers": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardCounts": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardAging": {
|
||||
"type": "string"
|
||||
},
|
||||
"calendarFeedEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"switcherViews": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"viewType": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"viewType",
|
||||
"enabled"
|
||||
]
|
||||
}
|
||||
},
|
||||
"background": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundTile": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"backgroundBrightness": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundBottomColor": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundTopColor": {
|
||||
"type": "string"
|
||||
},
|
||||
"canBePublic": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBeEnterprise": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBeOrg": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBePrivate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canInvite": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"permissionLevel",
|
||||
"hideVotes",
|
||||
"voting",
|
||||
"comments",
|
||||
"invitations",
|
||||
"selfJoin",
|
||||
"cardCovers",
|
||||
"cardCounts",
|
||||
"isTemplate",
|
||||
"cardAging",
|
||||
"calendarFeedEnabled",
|
||||
"hiddenPluginBoardButtons",
|
||||
"switcherViews",
|
||||
"background",
|
||||
"backgroundColor",
|
||||
"backgroundImage",
|
||||
"backgroundTile",
|
||||
"backgroundBrightness",
|
||||
"sharedSourceUrl",
|
||||
"backgroundImageScaled",
|
||||
"backgroundBottomColor",
|
||||
"backgroundTopColor",
|
||||
"canBePublic",
|
||||
"canBeEnterprise",
|
||||
"canBeOrg",
|
||||
"canBePrivate",
|
||||
"canInvite"
|
||||
]
|
||||
},
|
||||
"labelNames": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"green": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange": {
|
||||
"type": "string"
|
||||
},
|
||||
"red": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink": {
|
||||
"type": "string"
|
||||
},
|
||||
"black": {
|
||||
"type": "string"
|
||||
},
|
||||
"green_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"red_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"black_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"green_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"red_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"black_light": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"green",
|
||||
"yellow",
|
||||
"orange",
|
||||
"red",
|
||||
"purple",
|
||||
"blue",
|
||||
"sky",
|
||||
"lime",
|
||||
"pink",
|
||||
"black",
|
||||
"green_dark",
|
||||
"yellow_dark",
|
||||
"orange_dark",
|
||||
"red_dark",
|
||||
"purple_dark",
|
||||
"blue_dark",
|
||||
"sky_dark",
|
||||
"lime_dark",
|
||||
"pink_dark",
|
||||
"black_dark",
|
||||
"green_light",
|
||||
"yellow_light",
|
||||
"orange_light",
|
||||
"red_light",
|
||||
"purple_light",
|
||||
"blue_light",
|
||||
"sky_light",
|
||||
"lime_light",
|
||||
"pink_light",
|
||||
"black_light"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"desc",
|
||||
"descData",
|
||||
"closed",
|
||||
"idOrganization",
|
||||
"idEnterprise",
|
||||
"pinned",
|
||||
"url",
|
||||
"shortUrl",
|
||||
"prefs",
|
||||
"labelNames",
|
||||
"limits"
|
||||
]
|
||||
}
|
||||
284
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/board/get.json
vendored
Normal file
284
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/board/get.json
vendored
Normal file
@@ -0,0 +1,284 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"idEnterprise": {
|
||||
"type": "null"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"prefs": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"permissionLevel": {
|
||||
"type": "string"
|
||||
},
|
||||
"hideVotes": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"voting": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments": {
|
||||
"type": "string"
|
||||
},
|
||||
"invitations": {
|
||||
"type": "string"
|
||||
},
|
||||
"selfJoin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardCovers": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardCounts": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardAging": {
|
||||
"type": "string"
|
||||
},
|
||||
"calendarFeedEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hiddenPluginBoardButtons": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"switcherViews": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"viewType": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"viewType",
|
||||
"enabled"
|
||||
]
|
||||
}
|
||||
},
|
||||
"background": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundTile": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"backgroundBrightness": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundBottomColor": {
|
||||
"type": "string"
|
||||
},
|
||||
"backgroundTopColor": {
|
||||
"type": "string"
|
||||
},
|
||||
"canBePublic": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBeEnterprise": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBeOrg": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canBePrivate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"canInvite": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"permissionLevel",
|
||||
"hideVotes",
|
||||
"voting",
|
||||
"comments",
|
||||
"invitations",
|
||||
"selfJoin",
|
||||
"cardCovers",
|
||||
"cardCounts",
|
||||
"isTemplate",
|
||||
"cardAging",
|
||||
"calendarFeedEnabled",
|
||||
"hiddenPluginBoardButtons",
|
||||
"switcherViews",
|
||||
"background",
|
||||
"backgroundColor",
|
||||
"backgroundImage",
|
||||
"backgroundImageScaled",
|
||||
"backgroundTile",
|
||||
"backgroundBrightness",
|
||||
"sharedSourceUrl",
|
||||
"backgroundBottomColor",
|
||||
"backgroundTopColor",
|
||||
"canBePublic",
|
||||
"canBeEnterprise",
|
||||
"canBeOrg",
|
||||
"canBePrivate",
|
||||
"canInvite"
|
||||
]
|
||||
},
|
||||
"labelNames": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"green": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange": {
|
||||
"type": "string"
|
||||
},
|
||||
"red": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink": {
|
||||
"type": "string"
|
||||
},
|
||||
"black": {
|
||||
"type": "string"
|
||||
},
|
||||
"green_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"red_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"black_dark": {
|
||||
"type": "string"
|
||||
},
|
||||
"green_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"yellow_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"orange_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"red_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"purple_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"blue_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"sky_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"lime_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"pink_light": {
|
||||
"type": "string"
|
||||
},
|
||||
"black_light": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"green",
|
||||
"yellow",
|
||||
"orange",
|
||||
"red",
|
||||
"purple",
|
||||
"blue",
|
||||
"sky",
|
||||
"lime",
|
||||
"pink",
|
||||
"black",
|
||||
"green_dark",
|
||||
"yellow_dark",
|
||||
"orange_dark",
|
||||
"red_dark",
|
||||
"purple_dark",
|
||||
"blue_dark",
|
||||
"sky_dark",
|
||||
"lime_dark",
|
||||
"pink_dark",
|
||||
"black_dark",
|
||||
"green_light",
|
||||
"yellow_light",
|
||||
"orange_light",
|
||||
"red_light",
|
||||
"purple_light",
|
||||
"blue_light",
|
||||
"sky_light",
|
||||
"lime_light",
|
||||
"pink_light",
|
||||
"black_light"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"labelNames"
|
||||
]
|
||||
}
|
||||
19
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/boardMember/getAll.json
vendored
Normal file
19
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/boardMember/getAll.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"fullName": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"fullName",
|
||||
"username"
|
||||
]
|
||||
}
|
||||
339
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/create.json
vendored
Normal file
339
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/create.json
vendored
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"badges": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"attachmentsByType": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"trello": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"board": {
|
||||
"type": "integer"
|
||||
},
|
||||
"card": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"board",
|
||||
"card"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"trello"
|
||||
]
|
||||
},
|
||||
"externalSource": {
|
||||
"type": "null"
|
||||
},
|
||||
"location": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"votes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"viewingMemberVoted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"fogbugz": {
|
||||
"type": "string"
|
||||
},
|
||||
"checkItems": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsChecked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsEarliestDue": {
|
||||
"type": "null"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"description": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastUpdatedByAi": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"start": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"attachmentsByType",
|
||||
"externalSource",
|
||||
"location",
|
||||
"votes",
|
||||
"viewingMemberVoted",
|
||||
"subscribed",
|
||||
"attachments",
|
||||
"fogbugz",
|
||||
"checkItems",
|
||||
"checkItemsChecked",
|
||||
"checkItemsEarliestDue",
|
||||
"comments",
|
||||
"description",
|
||||
"due",
|
||||
"dueComplete",
|
||||
"lastUpdatedByAi",
|
||||
"start"
|
||||
]
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dateLastActivity": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"dueReminder": {
|
||||
"type": "null"
|
||||
},
|
||||
"email": {
|
||||
"type": "null"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idChecklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idList": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMembers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idShort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"idAttachmentCover": {
|
||||
"type": "null"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"idBoard",
|
||||
"idOrganization",
|
||||
"name",
|
||||
"nodeId",
|
||||
"color",
|
||||
"uses"
|
||||
]
|
||||
}
|
||||
},
|
||||
"idLabels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"manualCoverAttachment": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"start": {
|
||||
"type": "null"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"cover": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idAttachment": {
|
||||
"type": "null"
|
||||
},
|
||||
"color": {
|
||||
"type": "null"
|
||||
},
|
||||
"idUploadedBackground": {
|
||||
"type": "null"
|
||||
},
|
||||
"size": {
|
||||
"type": "string"
|
||||
},
|
||||
"brightness": {
|
||||
"type": "string"
|
||||
},
|
||||
"idPlugin": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idAttachment",
|
||||
"color",
|
||||
"idUploadedBackground",
|
||||
"size",
|
||||
"brightness",
|
||||
"idPlugin"
|
||||
]
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardRole": {
|
||||
"type": "null"
|
||||
},
|
||||
"mirrorSourceId": {
|
||||
"type": "null"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bytes": {
|
||||
"type": "null"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"edgeColor": {
|
||||
"type": "null"
|
||||
},
|
||||
"idMember": {
|
||||
"type": "string"
|
||||
},
|
||||
"isUpload": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"mimeType": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pos": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"bytes",
|
||||
"date",
|
||||
"edgeColor",
|
||||
"idMember",
|
||||
"isUpload",
|
||||
"mimeType",
|
||||
"name",
|
||||
"previews",
|
||||
"url",
|
||||
"pos",
|
||||
"fileName"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"badges",
|
||||
"checkItemStates",
|
||||
"closed",
|
||||
"dueComplete",
|
||||
"dateLastActivity",
|
||||
"desc",
|
||||
"descData",
|
||||
"due",
|
||||
"dueReminder",
|
||||
"email",
|
||||
"idBoard",
|
||||
"idChecklists",
|
||||
"idList",
|
||||
"idMembers",
|
||||
"idMembersVoted",
|
||||
"idShort",
|
||||
"idAttachmentCover",
|
||||
"labels",
|
||||
"idLabels",
|
||||
"manualCoverAttachment",
|
||||
"name",
|
||||
"pinned",
|
||||
"pos",
|
||||
"shortLink",
|
||||
"shortUrl",
|
||||
"start",
|
||||
"subscribed",
|
||||
"url",
|
||||
"cover",
|
||||
"isTemplate",
|
||||
"cardRole",
|
||||
"attachments",
|
||||
"stickers",
|
||||
"limits"
|
||||
]
|
||||
}
|
||||
239
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/get.json
vendored
Normal file
239
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/get.json
vendored
Normal file
@@ -0,0 +1,239 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"badges": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"attachmentsByType": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"trello": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"board": {
|
||||
"type": "integer"
|
||||
},
|
||||
"card": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"board",
|
||||
"card"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"trello"
|
||||
]
|
||||
},
|
||||
"location": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"votes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"viewingMemberVoted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"fogbugz": {
|
||||
"type": "string"
|
||||
},
|
||||
"checkItems": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsChecked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsEarliestDue": {
|
||||
"type": "null"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"description": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastUpdatedByAi": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"attachmentsByType",
|
||||
"externalSource",
|
||||
"location",
|
||||
"votes",
|
||||
"viewingMemberVoted",
|
||||
"subscribed",
|
||||
"attachments",
|
||||
"fogbugz",
|
||||
"checkItems",
|
||||
"checkItemsChecked",
|
||||
"checkItemsEarliestDue",
|
||||
"comments",
|
||||
"description",
|
||||
"due",
|
||||
"dueComplete",
|
||||
"lastUpdatedByAi",
|
||||
"start"
|
||||
]
|
||||
},
|
||||
"checkItemStates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idCheckItem": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idCheckItem",
|
||||
"state"
|
||||
]
|
||||
}
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dateLastActivity": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "null"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idChecklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idList": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMembers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idShort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"type": "string"
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"idBoard",
|
||||
"name",
|
||||
"color",
|
||||
"uses"
|
||||
]
|
||||
}
|
||||
},
|
||||
"idLabels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"manualCoverAttachment": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"cover": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idUploadedBackground": {
|
||||
"type": "null"
|
||||
},
|
||||
"size": {
|
||||
"type": "string"
|
||||
},
|
||||
"brightness": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idAttachment",
|
||||
"color",
|
||||
"idUploadedBackground",
|
||||
"size",
|
||||
"brightness",
|
||||
"idPlugin"
|
||||
]
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardRole": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
244
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/update.json
vendored
Normal file
244
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/card/update.json
vendored
Normal file
@@ -0,0 +1,244 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"badges": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"attachmentsByType": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"trello": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"board": {
|
||||
"type": "integer"
|
||||
},
|
||||
"card": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"board",
|
||||
"card"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"trello"
|
||||
]
|
||||
},
|
||||
"location": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"votes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"viewingMemberVoted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"fogbugz": {
|
||||
"type": "string"
|
||||
},
|
||||
"checkItems": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsChecked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsEarliestDue": {
|
||||
"type": "null"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"description": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastUpdatedByAi": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"attachmentsByType",
|
||||
"externalSource",
|
||||
"location",
|
||||
"votes",
|
||||
"viewingMemberVoted",
|
||||
"subscribed",
|
||||
"attachments",
|
||||
"fogbugz",
|
||||
"checkItems",
|
||||
"checkItemsChecked",
|
||||
"checkItemsEarliestDue",
|
||||
"comments",
|
||||
"description",
|
||||
"due",
|
||||
"dueComplete",
|
||||
"lastUpdatedByAi",
|
||||
"start"
|
||||
]
|
||||
},
|
||||
"checkItemStates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idCheckItem": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idCheckItem",
|
||||
"state"
|
||||
]
|
||||
}
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dateLastActivity": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "null"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idChecklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idList": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMembers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idShort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"idBoard",
|
||||
"idOrganization",
|
||||
"name",
|
||||
"nodeId",
|
||||
"color",
|
||||
"uses"
|
||||
]
|
||||
}
|
||||
},
|
||||
"idLabels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"manualCoverAttachment": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"cover": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idUploadedBackground": {
|
||||
"type": "null"
|
||||
},
|
||||
"size": {
|
||||
"type": "string"
|
||||
},
|
||||
"brightness": {
|
||||
"type": "string"
|
||||
},
|
||||
"idPlugin": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idAttachment",
|
||||
"color",
|
||||
"idUploadedBackground",
|
||||
"size",
|
||||
"brightness",
|
||||
"idPlugin"
|
||||
]
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"cardRole": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
||||
352
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/cardComment/create.json
vendored
Normal file
352
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/cardComment/create.json
vendored
Normal file
@@ -0,0 +1,352 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMemberCreator": {
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"card": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"idShort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"idShort",
|
||||
"shortLink"
|
||||
]
|
||||
},
|
||||
"board": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"shortLink"
|
||||
]
|
||||
},
|
||||
"list": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"text",
|
||||
"textData",
|
||||
"card",
|
||||
"board",
|
||||
"list"
|
||||
]
|
||||
},
|
||||
"appCreator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"limits": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"perAction": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"disableAt": {
|
||||
"type": "integer"
|
||||
},
|
||||
"warnAt": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status",
|
||||
"disableAt",
|
||||
"warnAt"
|
||||
]
|
||||
},
|
||||
"uniquePerAction": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"disableAt": {
|
||||
"type": "integer"
|
||||
},
|
||||
"warnAt": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status",
|
||||
"disableAt",
|
||||
"warnAt"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"perAction",
|
||||
"uniquePerAction"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"reactions"
|
||||
]
|
||||
},
|
||||
"display": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"translationKey": {
|
||||
"type": "string"
|
||||
},
|
||||
"entities": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contextOn": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"translationKey": {
|
||||
"type": "string"
|
||||
},
|
||||
"hideIfContext": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idContext": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"translationKey",
|
||||
"hideIfContext",
|
||||
"idContext"
|
||||
]
|
||||
},
|
||||
"card": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"hideIfContext": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"hideIfContext",
|
||||
"id",
|
||||
"shortLink",
|
||||
"text"
|
||||
]
|
||||
},
|
||||
"comment": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"text"
|
||||
]
|
||||
},
|
||||
"memberCreator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"username",
|
||||
"text"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contextOn",
|
||||
"card",
|
||||
"comment",
|
||||
"memberCreator"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"translationKey",
|
||||
"entities"
|
||||
]
|
||||
},
|
||||
"entities": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"hideIfContext": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idContext": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"text"
|
||||
]
|
||||
}
|
||||
},
|
||||
"memberCreator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"activityBlocked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"avatarHash": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatarUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"fullName": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"nonPublicAvailable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"activityBlocked",
|
||||
"avatarHash",
|
||||
"avatarUrl",
|
||||
"fullName",
|
||||
"idMemberReferrer",
|
||||
"initials",
|
||||
"nonPublic",
|
||||
"nonPublicAvailable",
|
||||
"username"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"idMemberCreator",
|
||||
"data",
|
||||
"appCreator",
|
||||
"type",
|
||||
"date",
|
||||
"limits",
|
||||
"display",
|
||||
"entities",
|
||||
"memberCreator"
|
||||
]
|
||||
}
|
||||
34
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/get.json
vendored
Normal file
34
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/get.json
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "null"
|
||||
},
|
||||
"datasource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"filter": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"filter"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
37
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
37
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"type": {
|
||||
"type": "null"
|
||||
},
|
||||
"datasource": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"filter": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"filter"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
244
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/getCards.json
vendored
Normal file
244
packages/nodes-base/nodes/Trello/__schema__/v1.0.0/list/getCards.json
vendored
Normal file
@@ -0,0 +1,244 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"badges": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"attachmentsByType": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"trello": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"board": {
|
||||
"type": "integer"
|
||||
},
|
||||
"card": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"board",
|
||||
"card"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"trello"
|
||||
]
|
||||
},
|
||||
"location": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"votes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"viewingMemberVoted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"fogbugz": {
|
||||
"type": "string"
|
||||
},
|
||||
"checkItems": {
|
||||
"type": "integer"
|
||||
},
|
||||
"checkItemsChecked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"description": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lastUpdatedByAi": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"attachmentsByType",
|
||||
"externalSource",
|
||||
"location",
|
||||
"votes",
|
||||
"viewingMemberVoted",
|
||||
"subscribed",
|
||||
"attachments",
|
||||
"fogbugz",
|
||||
"checkItems",
|
||||
"checkItemsChecked",
|
||||
"checkItemsEarliestDue",
|
||||
"comments",
|
||||
"description",
|
||||
"due",
|
||||
"dueComplete",
|
||||
"lastUpdatedByAi",
|
||||
"start"
|
||||
]
|
||||
},
|
||||
"checkItemStates": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"idCheckItem": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idCheckItem",
|
||||
"state"
|
||||
]
|
||||
}
|
||||
},
|
||||
"closed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dueComplete": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dateLastActivity": {
|
||||
"type": "string"
|
||||
},
|
||||
"desc": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "null"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idChecklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idList": {
|
||||
"type": "string"
|
||||
},
|
||||
"idMembers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"idShort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"idBoard": {
|
||||
"type": "string"
|
||||
},
|
||||
"idOrganization": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"nodeId": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"uses": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"idBoard",
|
||||
"idOrganization",
|
||||
"name",
|
||||
"nodeId",
|
||||
"color",
|
||||
"uses"
|
||||
]
|
||||
}
|
||||
},
|
||||
"idLabels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"manualCoverAttachment": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shortLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"shortUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"cover": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"color": {
|
||||
"type": "null"
|
||||
},
|
||||
"idUploadedBackground": {
|
||||
"type": "null"
|
||||
},
|
||||
"size": {
|
||||
"type": "string"
|
||||
},
|
||||
"brightness": {
|
||||
"type": "string"
|
||||
},
|
||||
"idPlugin": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"idAttachment",
|
||||
"color",
|
||||
"idUploadedBackground",
|
||||
"size",
|
||||
"brightness",
|
||||
"idPlugin"
|
||||
]
|
||||
},
|
||||
"isTemplate": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user