mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
parent
f001edb2a2
commit
0c6eb6eaef
35
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectSentiment.json
vendored
Normal file
35
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectSentiment.json
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Sentiment": {
|
||||
"type": "string"
|
||||
},
|
||||
"SentimentScore": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Mixed": {
|
||||
"type": "number"
|
||||
},
|
||||
"Negative": {
|
||||
"type": "number"
|
||||
},
|
||||
"Neutral": {
|
||||
"type": "number"
|
||||
},
|
||||
"Positive": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Mixed",
|
||||
"Negative",
|
||||
"Neutral",
|
||||
"Positive"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Sentiment",
|
||||
"SentimentScore"
|
||||
]
|
||||
}
|
88
packages/nodes-base/nodes/Aws/Rekognition/__schema__/v1.0.0/image/analyze.json
vendored
Normal file
88
packages/nodes-base/nodes/Aws/Rekognition/__schema__/v1.0.0/image/analyze.json
vendored
Normal file
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"TextDetections": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Confidence": {
|
||||
"type": "number"
|
||||
},
|
||||
"DetectedText": {
|
||||
"type": "string"
|
||||
},
|
||||
"Geometry": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"BoundingBox": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Height": {
|
||||
"type": "number"
|
||||
},
|
||||
"Left": {
|
||||
"type": "number"
|
||||
},
|
||||
"Top": {
|
||||
"type": "number"
|
||||
},
|
||||
"Width": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Height",
|
||||
"Left",
|
||||
"Top",
|
||||
"Width"
|
||||
]
|
||||
},
|
||||
"Polygon": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"X": {
|
||||
"type": "number"
|
||||
},
|
||||
"Y": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"X",
|
||||
"Y"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"BoundingBox",
|
||||
"Polygon"
|
||||
]
|
||||
},
|
||||
"Id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"Type": {
|
||||
"type": "string"
|
||||
},
|
||||
"ParentId": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Confidence",
|
||||
"DetectedText",
|
||||
"Geometry",
|
||||
"Id",
|
||||
"Type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"TextModelVersion": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
43
packages/nodes-base/nodes/Aws/Transcribe/__schema__/v1.0.0/transcriptionJob/get.json
vendored
Normal file
43
packages/nodes-base/nodes/Aws/Transcribe/__schema__/v1.0.0/transcriptionJob/get.json
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"CreationTime": {
|
||||
"type": "number"
|
||||
},
|
||||
"Media": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"MediaFileUri": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"MediaFileUri"
|
||||
]
|
||||
},
|
||||
"Settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ChannelIdentification": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ShowAlternatives": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ChannelIdentification",
|
||||
"ShowAlternatives"
|
||||
]
|
||||
},
|
||||
"StartTime": {
|
||||
"type": "number"
|
||||
},
|
||||
"TranscriptionJobName": {
|
||||
"type": "string"
|
||||
},
|
||||
"TranscriptionJobStatus": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
55
packages/nodes-base/nodes/Bitwarden/__schema__/v1.0.0/member/getAll.json
vendored
Normal file
55
packages/nodes-base/nodes/Bitwarden/__schema__/v1.0.0/member/getAll.json
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"object": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"userId": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"twoFactorEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"status": {
|
||||
"type": "integer"
|
||||
},
|
||||
"collections": {
|
||||
"type": "null"
|
||||
},
|
||||
"resetPasswordEnrolled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ssoExternalId": {
|
||||
"type": "null"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"permissions": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"object",
|
||||
"id",
|
||||
"userId",
|
||||
"name",
|
||||
"email",
|
||||
"twoFactorEnabled",
|
||||
"status",
|
||||
"collections",
|
||||
"resetPasswordEnrolled",
|
||||
"type",
|
||||
"externalId",
|
||||
"permissions"
|
||||
]
|
||||
}
|
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"
|
||||
]
|
||||
}
|
35
packages/nodes-base/nodes/Cisco/Webex/__schema__/v1.0.0/message/create.json
vendored
Normal file
35
packages/nodes-base/nodes/Cisco/Webex/__schema__/v1.0.0/message/create.json
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"roomId": {
|
||||
"type": "string"
|
||||
},
|
||||
"roomType": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"personId": {
|
||||
"type": "string"
|
||||
},
|
||||
"personEmail": {
|
||||
"type": "string"
|
||||
},
|
||||
"created": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"roomId",
|
||||
"roomType",
|
||||
"text",
|
||||
"personId",
|
||||
"personEmail",
|
||||
"created"
|
||||
]
|
||||
}
|
135
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/get.json
vendored
Normal file
135
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/get.json
vendored
Normal file
|
@ -0,0 +1,135 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"clientId": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaceId": {
|
||||
"type": "string"
|
||||
},
|
||||
"billable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"userId": {
|
||||
"type": "string"
|
||||
},
|
||||
"costRate": {
|
||||
"type": "null"
|
||||
},
|
||||
"targetId": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipType": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipStatus": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"userId",
|
||||
"hourlyRate",
|
||||
"costRate",
|
||||
"targetId",
|
||||
"membershipType",
|
||||
"membershipStatus"
|
||||
]
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"estimate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"estimate": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"estimate",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"duration": {
|
||||
"type": "string"
|
||||
},
|
||||
"clientName": {
|
||||
"type": "string"
|
||||
},
|
||||
"note": {
|
||||
"type": "string"
|
||||
},
|
||||
"costRate": {
|
||||
"type": "null"
|
||||
},
|
||||
"timeEstimate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"estimate": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"includeNonBillable": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"estimate",
|
||||
"type",
|
||||
"resetOption",
|
||||
"active",
|
||||
"includeNonBillable"
|
||||
]
|
||||
},
|
||||
"template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hourlyRate",
|
||||
"clientId",
|
||||
"workspaceId",
|
||||
"billable",
|
||||
"memberships",
|
||||
"color",
|
||||
"estimate",
|
||||
"archived",
|
||||
"duration",
|
||||
"clientName",
|
||||
"note",
|
||||
"costRate",
|
||||
"timeEstimate",
|
||||
"budgetEstimate",
|
||||
"estimateReset",
|
||||
"template",
|
||||
"public"
|
||||
]
|
||||
}
|
58
packages/nodes-base/nodes/ConvertKit/__schema__/v1.0.0/form/addSubscriber.json
vendored
Normal file
58
packages/nodes-base/nodes/ConvertKit/__schema__/v1.0.0/form/addSubscriber.json
vendored
Normal file
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"referrer": {
|
||||
"type": "null"
|
||||
},
|
||||
"subscribable_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"subscribable_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriber": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"email_address": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"first_name",
|
||||
"email_address",
|
||||
"state",
|
||||
"created_at",
|
||||
"fields"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"state",
|
||||
"created_at",
|
||||
"source",
|
||||
"referrer",
|
||||
"subscribable_id",
|
||||
"subscribable_type",
|
||||
"subscriber"
|
||||
]
|
||||
}
|
72
packages/nodes-base/nodes/Dropbox/__schema__/v1.0.0/file/copy.json
vendored
Normal file
72
packages/nodes-base/nodes/Dropbox/__schema__/v1.0.0/file/copy.json
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"metadata": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
".tag": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path_lower": {
|
||||
"type": "string"
|
||||
},
|
||||
"path_display": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"client_modified": {
|
||||
"type": "string"
|
||||
},
|
||||
"server_modified": {
|
||||
"type": "string"
|
||||
},
|
||||
"rev": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_downloadable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"content_hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"parent_shared_folder_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sharing_info": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"read_only": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent_shared_folder_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_by": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"read_only",
|
||||
"parent_shared_folder_id",
|
||||
"modified_by"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
".tag",
|
||||
"name",
|
||||
"path_lower",
|
||||
"path_display",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
11
packages/nodes-base/nodes/Google/Calendar/__schema__/v1.3.0/event/delete.json
vendored
Normal file
11
packages/nodes-base/nodes/Google/Calendar/__schema__/v1.3.0/event/delete.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
141
packages/nodes-base/nodes/Google/Chat/__schema__/v1.0.0/message/get.json
vendored
Normal file
141
packages/nodes-base/nodes/Google/Chat/__schema__/v1.0.0/message/get.json
vendored
Normal file
|
@ -0,0 +1,141 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"domainId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"displayName",
|
||||
"type",
|
||||
"domainId"
|
||||
]
|
||||
},
|
||||
"createTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"thread": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"singleUserBotDm": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"spaceThreadingState": {
|
||||
"type": "string"
|
||||
},
|
||||
"spaceType": {
|
||||
"type": "string"
|
||||
},
|
||||
"spaceHistoryState": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastActiveTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipCount": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"joinedDirectHumanUserCount": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"joinedDirectHumanUserCount"
|
||||
]
|
||||
},
|
||||
"spaceUri": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"type",
|
||||
"spaceThreadingState",
|
||||
"spaceType",
|
||||
"spaceHistoryState",
|
||||
"lastActiveTime",
|
||||
"membershipCount",
|
||||
"spaceUri"
|
||||
]
|
||||
},
|
||||
"attachment": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"contentName": {
|
||||
"type": "string"
|
||||
},
|
||||
"contentType": {
|
||||
"type": "string"
|
||||
},
|
||||
"attachmentDataRef": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"resourceName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"resourceName"
|
||||
]
|
||||
},
|
||||
"thumbnailUri": {
|
||||
"type": "string"
|
||||
},
|
||||
"downloadUri": {
|
||||
"type": "string"
|
||||
},
|
||||
"source": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"contentName",
|
||||
"contentType",
|
||||
"attachmentDataRef",
|
||||
"thumbnailUri",
|
||||
"downloadUri",
|
||||
"source"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
111
packages/nodes-base/nodes/Google/CloudStorage/__schema__/v1.0.0/bucket/getAll.json
vendored
Normal file
111
packages/nodes-base/nodes/Google/CloudStorage/__schema__/v1.0.0/bucket/getAll.json
vendored
Normal file
|
@ -0,0 +1,111 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"selfLink": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectNumber": {
|
||||
"type": "string"
|
||||
},
|
||||
"metageneration": {
|
||||
"type": "string"
|
||||
},
|
||||
"location": {
|
||||
"type": "string"
|
||||
},
|
||||
"storageClass": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeCreated": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"softDeletePolicy": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"retentionDurationSeconds": {
|
||||
"type": "string"
|
||||
},
|
||||
"effectiveTime": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"retentionDurationSeconds"
|
||||
]
|
||||
},
|
||||
"iamConfiguration": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bucketPolicyOnly": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lockedTime": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"enabled"
|
||||
]
|
||||
},
|
||||
"uniformBucketLevelAccess": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lockedTime": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"enabled"
|
||||
]
|
||||
},
|
||||
"publicAccessPrevention": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bucketPolicyOnly",
|
||||
"uniformBucketLevelAccess",
|
||||
"publicAccessPrevention"
|
||||
]
|
||||
},
|
||||
"locationType": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"selfLink",
|
||||
"id",
|
||||
"name",
|
||||
"projectNumber",
|
||||
"metageneration",
|
||||
"location",
|
||||
"storageClass",
|
||||
"etag",
|
||||
"timeCreated",
|
||||
"updated",
|
||||
"softDeletePolicy",
|
||||
"locationType"
|
||||
]
|
||||
}
|
14
packages/nodes-base/nodes/Google/Contacts/__schema__/v1.0.0/contact/get.json
vendored
Normal file
14
packages/nodes-base/nodes/Google/Contacts/__schema__/v1.0.0/contact/get.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"resourceName": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
39
packages/nodes-base/nodes/Google/GSuiteAdmin/__schema__/v1.0.0/group/getAll.json
vendored
Normal file
39
packages/nodes-base/nodes/Google/GSuiteAdmin/__schema__/v1.0.0/group/getAll.json
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"directMembersCount": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"adminCreated": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"kind",
|
||||
"id",
|
||||
"etag",
|
||||
"email",
|
||||
"name",
|
||||
"directMembersCount",
|
||||
"description",
|
||||
"adminCreated"
|
||||
]
|
||||
}
|
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"
|
||||
]
|
||||
}
|
125
packages/nodes-base/nodes/Keap/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
125
packages/nodes-base/nodes/Keap/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
|
@ -0,0 +1,125 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"email_opted_in": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"ScoreValue": {
|
||||
"type": "null"
|
||||
},
|
||||
"last_updated_utc_millis": {
|
||||
"type": "integer"
|
||||
},
|
||||
"email_addresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"email",
|
||||
"field"
|
||||
]
|
||||
}
|
||||
},
|
||||
"addresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"line1": {
|
||||
"type": "string"
|
||||
},
|
||||
"locality": {
|
||||
"type": "string"
|
||||
},
|
||||
"region": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
},
|
||||
"postal_code": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"line1",
|
||||
"line2",
|
||||
"locality",
|
||||
"region",
|
||||
"field",
|
||||
"postal_code",
|
||||
"zip_code",
|
||||
"zip_four",
|
||||
"country_code"
|
||||
]
|
||||
}
|
||||
},
|
||||
"phone_numbers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"number": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
},
|
||||
"number_e164": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"number",
|
||||
"extension",
|
||||
"field",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"given_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"family_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"tag_ids",
|
||||
"id",
|
||||
"company",
|
||||
"email_opted_in",
|
||||
"email_status",
|
||||
"date_created",
|
||||
"last_updated",
|
||||
"ScoreValue",
|
||||
"last_updated_utc_millis",
|
||||
"email_addresses",
|
||||
"addresses",
|
||||
"phone_numbers",
|
||||
"given_name",
|
||||
"family_name",
|
||||
"middle_name",
|
||||
"owner_id"
|
||||
]
|
||||
}
|
67
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/update.json
vendored
Normal file
67
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/update.json
vendored
Normal file
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"identifier",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
}
|
52
packages/nodes-base/nodes/Microsoft/OneDrive/__schema__/v1.0.0/file/share.json
vendored
Normal file
52
packages/nodes-base/nodes/Microsoft/OneDrive/__schema__/v1.0.0/file/share.json
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"roles": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"shareId": {
|
||||
"type": "string"
|
||||
},
|
||||
"hasPassword": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"link": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"webUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"type": "string"
|
||||
},
|
||||
"preventsDownload": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"webUrl"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context",
|
||||
"id",
|
||||
"roles",
|
||||
"shareId",
|
||||
"hasPassword",
|
||||
"link"
|
||||
]
|
||||
}
|
44
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/contact/get.json
vendored
Normal file
44
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/contact/get.json
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"@odata.etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"emailAddresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"address": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"address"
|
||||
]
|
||||
}
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"businessPhones": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context"
|
||||
]
|
||||
}
|
13
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/sendAndWait.json
vendored
Normal file
13
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/sendAndWait.json
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
42
packages/nodes-base/nodes/Microsoft/Teams/__schema__/v2.0.0/channel/get.json
vendored
Normal file
42
packages/nodes-base/nodes/Microsoft/Teams/__schema__/v2.0.0/channel/get.json
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"createdDateTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"tenantId": {
|
||||
"type": "string"
|
||||
},
|
||||
"webUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipType": {
|
||||
"type": "string"
|
||||
},
|
||||
"isArchived": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context",
|
||||
"id",
|
||||
"createdDateTime",
|
||||
"displayName",
|
||||
"description",
|
||||
"isFavoriteByDefault",
|
||||
"email",
|
||||
"tenantId",
|
||||
"webUrl",
|
||||
"membershipType",
|
||||
"isArchived"
|
||||
]
|
||||
}
|
77
packages/nodes-base/nodes/Mindee/__schema__/v3.0.0/invoice/predict.json
vendored
Normal file
77
packages/nodes-base/nodes/Mindee/__schema__/v3.0.0/invoice/predict.json
vendored
Normal file
|
@ -0,0 +1,77 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"number_of_pages": {
|
||||
"type": "integer"
|
||||
},
|
||||
"customer_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"document_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"invoice_number": {
|
||||
"type": "string"
|
||||
},
|
||||
"line_items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"description",
|
||||
"product_code",
|
||||
"quantity",
|
||||
"tax_amount",
|
||||
"tax_rate",
|
||||
"total_amount",
|
||||
"unit_price"
|
||||
]
|
||||
}
|
||||
},
|
||||
"currency": {
|
||||
"type": "string"
|
||||
},
|
||||
"supplier_address": {
|
||||
"type": "string"
|
||||
},
|
||||
"supplier_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"supplier_email": {
|
||||
"type": "string"
|
||||
},
|
||||
"supplier_phone_number": {
|
||||
"type": "string"
|
||||
},
|
||||
"customer_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"supplier_website": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"number_of_pages",
|
||||
"document_type",
|
||||
"line_items",
|
||||
"currency",
|
||||
"total_amount",
|
||||
"total_net"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"additionalProperties": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"required": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"additionalProperties",
|
||||
"type",
|
||||
"properties",
|
||||
"required"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Odoo/__schema__/v1.0.0/custom/delete.json
vendored
Normal file
11
packages/nodes-base/nodes/Odoo/__schema__/v1.0.0/custom/delete.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
158
packages/nodes-base/nodes/Oura/__schema__/v1.0.0/summary/getActivity.json
vendored
Normal file
158
packages/nodes-base/nodes/Oura/__schema__/v1.0.0/summary/getActivity.json
vendored
Normal file
|
@ -0,0 +1,158 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"class_5_min": {
|
||||
"type": "string"
|
||||
},
|
||||
"score": {
|
||||
"type": "integer"
|
||||
},
|
||||
"active_calories": {
|
||||
"type": "integer"
|
||||
},
|
||||
"average_met_minutes": {
|
||||
"type": "number"
|
||||
},
|
||||
"contributors": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"meet_daily_targets": {
|
||||
"type": "integer"
|
||||
},
|
||||
"move_every_hour": {
|
||||
"type": "integer"
|
||||
},
|
||||
"recovery_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stay_active": {
|
||||
"type": "integer"
|
||||
},
|
||||
"training_frequency": {
|
||||
"type": "integer"
|
||||
},
|
||||
"training_volume": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"meet_daily_targets",
|
||||
"move_every_hour",
|
||||
"recovery_time",
|
||||
"stay_active",
|
||||
"training_frequency",
|
||||
"training_volume"
|
||||
]
|
||||
},
|
||||
"equivalent_walking_distance": {
|
||||
"type": "integer"
|
||||
},
|
||||
"high_activity_met_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"high_activity_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"inactivity_alerts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"low_activity_met_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"low_activity_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"medium_activity_met_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"medium_activity_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"met": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"interval": {
|
||||
"type": "integer"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"interval",
|
||||
"items",
|
||||
"timestamp"
|
||||
]
|
||||
},
|
||||
"meters_to_target": {
|
||||
"type": "integer"
|
||||
},
|
||||
"non_wear_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resting_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sedentary_met_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sedentary_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"steps": {
|
||||
"type": "integer"
|
||||
},
|
||||
"target_calories": {
|
||||
"type": "integer"
|
||||
},
|
||||
"target_meters": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_calories": {
|
||||
"type": "integer"
|
||||
},
|
||||
"day": {
|
||||
"type": "string"
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"class_5_min",
|
||||
"score",
|
||||
"active_calories",
|
||||
"average_met_minutes",
|
||||
"contributors",
|
||||
"equivalent_walking_distance",
|
||||
"high_activity_met_minutes",
|
||||
"high_activity_time",
|
||||
"inactivity_alerts",
|
||||
"low_activity_met_minutes",
|
||||
"low_activity_time",
|
||||
"medium_activity_met_minutes",
|
||||
"medium_activity_time",
|
||||
"met",
|
||||
"meters_to_target",
|
||||
"non_wear_time",
|
||||
"resting_time",
|
||||
"sedentary_met_minutes",
|
||||
"sedentary_time",
|
||||
"steps",
|
||||
"target_calories",
|
||||
"target_meters",
|
||||
"total_calories",
|
||||
"day",
|
||||
"timestamp"
|
||||
]
|
||||
}
|
59
packages/nodes-base/nodes/Oura/__schema__/v1.0.0/summary/getSleep.json
vendored
Normal file
59
packages/nodes-base/nodes/Oura/__schema__/v1.0.0/summary/getSleep.json
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"deep_sleep": {
|
||||
"type": "integer"
|
||||
},
|
||||
"efficiency": {
|
||||
"type": "integer"
|
||||
},
|
||||
"latency": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rem_sleep": {
|
||||
"type": "integer"
|
||||
},
|
||||
"restfulness": {
|
||||
"type": "integer"
|
||||
},
|
||||
"timing": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_sleep": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"deep_sleep",
|
||||
"efficiency",
|
||||
"latency",
|
||||
"rem_sleep",
|
||||
"restfulness",
|
||||
"timing",
|
||||
"total_sleep"
|
||||
]
|
||||
},
|
||||
"day": {
|
||||
"type": "string"
|
||||
},
|
||||
"score": {
|
||||
"type": "integer"
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"contributors",
|
||||
"day",
|
||||
"score",
|
||||
"timestamp"
|
||||
]
|
||||
}
|
57
packages/nodes-base/nodes/Pushbullet/__schema__/v1.0.0/push/create.json
vendored
Normal file
57
packages/nodes-base/nodes/Pushbullet/__schema__/v1.0.0/push/create.json
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"iden": {
|
||||
"type": "string"
|
||||
},
|
||||
"created": {
|
||||
"type": "number"
|
||||
},
|
||||
"modified": {
|
||||
"type": "number"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"dismissed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"direction": {
|
||||
"type": "string"
|
||||
},
|
||||
"receiver_iden": {
|
||||
"type": "string"
|
||||
},
|
||||
"receiver_email": {
|
||||
"type": "string"
|
||||
},
|
||||
"receiver_email_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"client_iden": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"body": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"active",
|
||||
"iden",
|
||||
"created",
|
||||
"modified",
|
||||
"type",
|
||||
"dismissed",
|
||||
"direction",
|
||||
"receiver_iden",
|
||||
"receiver_email",
|
||||
"receiver_email_normalized",
|
||||
"client_iden"
|
||||
]
|
||||
}
|
128
packages/nodes-base/nodes/Raindrop/__schema__/v1.0.0/collection/getAll.json
vendored
Normal file
128
packages/nodes-base/nodes/Raindrop/__schema__/v1.0.0/collection/getAll.json
vendored
Normal file
|
@ -0,0 +1,128 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$ref": {
|
||||
"type": "string"
|
||||
},
|
||||
"$id": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"$ref",
|
||||
"$id"
|
||||
]
|
||||
},
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"view": {
|
||||
"type": "string"
|
||||
},
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"cover": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"expanded": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creatorRef": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"_id",
|
||||
"name",
|
||||
"email"
|
||||
]
|
||||
},
|
||||
"lastAction": {
|
||||
"type": "string"
|
||||
},
|
||||
"created": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastUpdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"sort": {
|
||||
"type": "integer"
|
||||
},
|
||||
"slug": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"for": {
|
||||
"type": "integer"
|
||||
},
|
||||
"level": {
|
||||
"type": "integer"
|
||||
},
|
||||
"root": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"draggable": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"for",
|
||||
"level",
|
||||
"root",
|
||||
"draggable"
|
||||
]
|
||||
},
|
||||
"author": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"_id",
|
||||
"title",
|
||||
"description",
|
||||
"user",
|
||||
"public",
|
||||
"view",
|
||||
"count",
|
||||
"cover",
|
||||
"expanded",
|
||||
"lastAction",
|
||||
"created",
|
||||
"lastUpdate",
|
||||
"sort",
|
||||
"slug",
|
||||
"access",
|
||||
"author"
|
||||
]
|
||||
}
|
15
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/user/getPresence.json
vendored
Normal file
15
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/user/getPresence.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"presence": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"presence"
|
||||
]
|
||||
}
|
72
packages/nodes-base/nodes/Sms77/__schema__/v1.0.0/sms/send.json
vendored
Normal file
72
packages/nodes-base/nodes/Sms77/__schema__/v1.0.0/sms/send.json
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "string"
|
||||
},
|
||||
"debug": {
|
||||
"type": "string"
|
||||
},
|
||||
"sms_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"messages": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"encoding": {
|
||||
"type": "string"
|
||||
},
|
||||
"label": {
|
||||
"type": "null"
|
||||
},
|
||||
"parts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"udh": {
|
||||
"type": "null"
|
||||
},
|
||||
"is_binary": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"sender",
|
||||
"recipient",
|
||||
"text",
|
||||
"encoding",
|
||||
"label",
|
||||
"parts",
|
||||
"udh",
|
||||
"is_binary",
|
||||
"price",
|
||||
"success",
|
||||
"error",
|
||||
"error_text"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success",
|
||||
"total_price",
|
||||
"balance",
|
||||
"debug",
|
||||
"sms_type",
|
||||
"messages"
|
||||
]
|
||||
}
|
299
packages/nodes-base/nodes/Splunk/__schema__/v2.0.0/search/create.json
vendored
Normal file
299
packages/nodes-base/nodes/Splunk/__schema__/v2.0.0/search/create.json
vendored
Normal file
|
@ -0,0 +1,299 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"alternate": {
|
||||
"type": "string"
|
||||
},
|
||||
"search.log": {
|
||||
"type": "string"
|
||||
},
|
||||
"events": {
|
||||
"type": "string"
|
||||
},
|
||||
"results": {
|
||||
"type": "string"
|
||||
},
|
||||
"results_preview": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeline": {
|
||||
"type": "string"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"control": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"alternate",
|
||||
"search.log",
|
||||
"events",
|
||||
"results",
|
||||
"results_preview",
|
||||
"timeline",
|
||||
"summary",
|
||||
"control"
|
||||
]
|
||||
},
|
||||
"published": {
|
||||
"type": "string"
|
||||
},
|
||||
"author": {
|
||||
"type": "string"
|
||||
},
|
||||
"acl": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"perms": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"read": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"write": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"read",
|
||||
"write"
|
||||
]
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"modifiable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sharing": {
|
||||
"type": "string"
|
||||
},
|
||||
"app": {
|
||||
"type": "string"
|
||||
},
|
||||
"can_write": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ttl": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"perms",
|
||||
"owner",
|
||||
"modifiable",
|
||||
"sharing",
|
||||
"app",
|
||||
"can_write",
|
||||
"ttl"
|
||||
]
|
||||
},
|
||||
"cursorTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"defaultSaveTTL": {
|
||||
"type": "string"
|
||||
},
|
||||
"defaultTTL": {
|
||||
"type": "string"
|
||||
},
|
||||
"delegate": {
|
||||
"type": "string"
|
||||
},
|
||||
"diskUsage": {
|
||||
"type": "integer"
|
||||
},
|
||||
"dispatchState": {
|
||||
"type": "string"
|
||||
},
|
||||
"doneProgress": {
|
||||
"type": "integer"
|
||||
},
|
||||
"earliestTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"isDone": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isFailed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isFinalized": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isPaused": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isSaved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isSavedSearch": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isZombie": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"pid": {
|
||||
"type": "string"
|
||||
},
|
||||
"sid": {
|
||||
"type": "string"
|
||||
},
|
||||
"statusBuckets": {
|
||||
"type": "integer"
|
||||
},
|
||||
"ttl": {
|
||||
"type": "integer"
|
||||
},
|
||||
"request": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"search": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"search"
|
||||
]
|
||||
},
|
||||
"runtime": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"auto_cancel": {
|
||||
"type": "string"
|
||||
},
|
||||
"auto_pause": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"auto_cancel",
|
||||
"auto_pause"
|
||||
]
|
||||
},
|
||||
"entryUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"bundleVersion": {
|
||||
"type": "string"
|
||||
},
|
||||
"isEventsPreviewEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"isPreviewEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numPreviews": {
|
||||
"type": "integer"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"provenance": {
|
||||
"type": "string"
|
||||
},
|
||||
"resultPreviewCount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sampleRatio": {
|
||||
"type": "string"
|
||||
},
|
||||
"sampleSeed": {
|
||||
"type": "string"
|
||||
},
|
||||
"search": {
|
||||
"type": "string"
|
||||
},
|
||||
"performance": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"startup.configuration": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"duration_secs": {
|
||||
"type": "number"
|
||||
},
|
||||
"invocations": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"duration_secs",
|
||||
"invocations"
|
||||
]
|
||||
},
|
||||
"startup.handoff": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"duration_secs": {
|
||||
"type": "number"
|
||||
},
|
||||
"invocations": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"duration_secs",
|
||||
"invocations"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"id",
|
||||
"updated",
|
||||
"links",
|
||||
"published",
|
||||
"author",
|
||||
"acl",
|
||||
"cursorTime",
|
||||
"defaultSaveTTL",
|
||||
"defaultTTL",
|
||||
"delegate",
|
||||
"diskUsage",
|
||||
"dispatchState",
|
||||
"doneProgress",
|
||||
"earliestTime",
|
||||
"isDone",
|
||||
"isFailed",
|
||||
"isFinalized",
|
||||
"isPaused",
|
||||
"isSaved",
|
||||
"isSavedSearch",
|
||||
"isZombie",
|
||||
"label",
|
||||
"sid",
|
||||
"statusBuckets",
|
||||
"ttl",
|
||||
"messages",
|
||||
"request",
|
||||
"runtime",
|
||||
"searchProviders",
|
||||
"entryUrl"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/like.json
vendored
Normal file
11
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/like.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"liked"
|
||||
]
|
||||
}
|
8
packages/nodes-base/nodes/Webflow/__schema__/v2.0.0/item/deleteItem.json
vendored
Normal file
8
packages/nodes-base/nodes/Webflow/__schema__/v2.0.0/item/deleteItem.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
23
packages/nodes-base/nodes/Wise/__schema__/v1.0.0/exchangeRate/get.json
vendored
Normal file
23
packages/nodes-base/nodes/Wise/__schema__/v1.0.0/exchangeRate/get.json
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"rate": {
|
||||
"type": "number"
|
||||
},
|
||||
"source": {
|
||||
"type": "string"
|
||||
},
|
||||
"target": {
|
||||
"type": "string"
|
||||
},
|
||||
"time": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"rate",
|
||||
"source",
|
||||
"target",
|
||||
"time"
|
||||
]
|
||||
}
|
485
packages/nodes-base/nodes/Wordpress/__schema__/v1.0.0/post/update.json
vendored
Normal file
485
packages/nodes-base/nodes/Wordpress/__schema__/v1.0.0/post/update.json
vendored
Normal file
|
@ -0,0 +1,485 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_gmt": {
|
||||
"type": "string"
|
||||
},
|
||||
"guid": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"rendered": {
|
||||
"type": "string"
|
||||
},
|
||||
"raw": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"rendered",
|
||||
"raw"
|
||||
]
|
||||
},
|
||||
"modified": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_gmt": {
|
||||
"type": "string"
|
||||
},
|
||||
"password": {
|
||||
"type": "string"
|
||||
},
|
||||
"slug": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"link": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"raw": {
|
||||
"type": "string"
|
||||
},
|
||||
"rendered": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"raw",
|
||||
"rendered"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"raw": {
|
||||
"type": "string"
|
||||
},
|
||||
"rendered": {
|
||||
"type": "string"
|
||||
},
|
||||
"protected": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"block_version": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"raw",
|
||||
"rendered",
|
||||
"protected",
|
||||
"block_version"
|
||||
]
|
||||
},
|
||||
"excerpt": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"raw": {
|
||||
"type": "string"
|
||||
},
|
||||
"rendered": {
|
||||
"type": "string"
|
||||
},
|
||||
"protected": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"raw",
|
||||
"rendered",
|
||||
"protected"
|
||||
]
|
||||
},
|
||||
"author": {
|
||||
"type": "integer"
|
||||
},
|
||||
"featured_media": {
|
||||
"type": "integer"
|
||||
},
|
||||
"comment_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"ping_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"sticky": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"template": {
|
||||
"type": "string"
|
||||
},
|
||||
"format": {
|
||||
"type": "string"
|
||||
},
|
||||
"meta": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"footnotes": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"footnotes"
|
||||
]
|
||||
},
|
||||
"categories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"permalink_template": {
|
||||
"type": "string"
|
||||
},
|
||||
"generated_slug": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
},
|
||||
"targetHints": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"allow": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"allow"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"collection": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"about": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"author": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"embeddable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"embeddable",
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"replies": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"embeddable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"embeddable",
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"version-history": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"count",
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"predecessor-version": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:attachment": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:term": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"taxonomy": {
|
||||
"type": "string"
|
||||
},
|
||||
"embeddable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"taxonomy",
|
||||
"embeddable",
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-publish": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-unfiltered-html": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-sticky": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-assign-author": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-create-categories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-assign-categories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-create-tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"wp:action-assign-tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"href": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"href"
|
||||
]
|
||||
}
|
||||
},
|
||||
"curies": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"href": {
|
||||
"type": "string"
|
||||
},
|
||||
"templated": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"href",
|
||||
"templated"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"collection",
|
||||
"about",
|
||||
"author",
|
||||
"replies",
|
||||
"version-history",
|
||||
"predecessor-version",
|
||||
"wp:attachment",
|
||||
"wp:term",
|
||||
"wp:action-publish",
|
||||
"wp:action-unfiltered-html",
|
||||
"wp:action-sticky",
|
||||
"wp:action-create-categories",
|
||||
"wp:action-assign-categories",
|
||||
"wp:action-create-tags",
|
||||
"wp:action-assign-tags",
|
||||
"curies"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"title",
|
||||
"content"
|
||||
]
|
||||
}
|
54
packages/nodes-base/nodes/Zendesk/__schema__/v1.0.0/organization/getAll.json
vendored
Normal file
54
packages/nodes-base/nodes/Zendesk/__schema__/v1.0.0/organization/getAll.json
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"shared_tickets": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_comments": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"domain_names": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"id",
|
||||
"name",
|
||||
"shared_tickets",
|
||||
"shared_comments",
|
||||
"external_id",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"domain_names",
|
||||
"details",
|
||||
"notes",
|
||||
"group_id",
|
||||
"tags",
|
||||
"organization_fields"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue