mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
feat: Generate Schema Files - 18113073 (no-changelog) (#12927)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
parent
cdfa22593b
commit
9d027339fd
|
@ -2,6 +2,6 @@
|
|||
"$schema": "../../node_modules/@biomejs/biome/configuration_schema.json",
|
||||
"extends": ["../../biome.jsonc"],
|
||||
"formatter": {
|
||||
"ignore": ["nodes/**/test/*.json"]
|
||||
"ignore": ["nodes/**/test/*.json", "nodes/**/__schema__/**/*.json"]
|
||||
}
|
||||
}
|
||||
|
|
57
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/account/getAll.json
vendored
Normal file
57
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/account/getAll.json
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"createdTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactCount": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealCount": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountCustomFieldData": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
"emailActivities": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactEmails": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"notes",
|
||||
"accountCustomFieldData",
|
||||
"accountContacts",
|
||||
"emailActivities",
|
||||
"contactEmails",
|
||||
"owner"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
170
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/create.json
vendored
Normal file
170
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/create.json
vendored
Normal file
|
@ -0,0 +1,170 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgid": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgname": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bounceLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"deals": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"plusAppend": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationEntryCounts": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bounceLogs",
|
||||
"contactAutomations",
|
||||
"contactData",
|
||||
"contactGoals",
|
||||
"contactLists",
|
||||
"contactLogs",
|
||||
"contactTags",
|
||||
"contactDeals",
|
||||
"deals",
|
||||
"fieldValues",
|
||||
"geoIps",
|
||||
"notes",
|
||||
"organization",
|
||||
"plusAppend",
|
||||
"trackingLogs",
|
||||
"scoreValues",
|
||||
"automationEntryCounts"
|
||||
]
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"segmentio_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_hard": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_soft": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialdata_lastcheck": {
|
||||
"type": "null"
|
||||
},
|
||||
"email_local": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"sentcnt": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"anonymized": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"mpp_tracking": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
911
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/get.json
vendored
Normal file
911
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/get.json
vendored
Normal file
|
@ -0,0 +1,911 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contactAutomations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"seriesid": {
|
||||
"type": "string"
|
||||
},
|
||||
"startid": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"adddate": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastblock": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastlogid": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"completedElements": {
|
||||
"type": "integer"
|
||||
},
|
||||
"totalElements": {
|
||||
"type": "integer"
|
||||
},
|
||||
"completed": {
|
||||
"type": "integer"
|
||||
},
|
||||
"completeValue": {
|
||||
"type": "integer"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"automation": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationLogs": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"automation",
|
||||
"contact",
|
||||
"contactGoals",
|
||||
"automationLogs"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"automation": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contact",
|
||||
"seriesid",
|
||||
"startid",
|
||||
"status",
|
||||
"batchid",
|
||||
"adddate",
|
||||
"remdate",
|
||||
"timespan",
|
||||
"lastblock",
|
||||
"lastlogid",
|
||||
"lastdate",
|
||||
"in_als",
|
||||
"completedElements",
|
||||
"totalElements",
|
||||
"completed",
|
||||
"completeValue",
|
||||
"links",
|
||||
"id",
|
||||
"automation"
|
||||
]
|
||||
}
|
||||
},
|
||||
"contactData": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"tstamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIp4": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoCountry2": {
|
||||
"type": "string"
|
||||
},
|
||||
"geo_country": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoState": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoCity": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoZip": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoArea": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoLat": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoLon": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoTz": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoTzOffset": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_source": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_medium": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_term": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_content": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_campaign_customsegment": {
|
||||
"type": "string"
|
||||
},
|
||||
"ga_first_visit": {
|
||||
"type": "null"
|
||||
},
|
||||
"ga_times_visited": {
|
||||
"type": "string"
|
||||
},
|
||||
"fb_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"fb_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tw_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contact",
|
||||
"tstamp",
|
||||
"geoTstamp",
|
||||
"geoIp4",
|
||||
"geoCountry2",
|
||||
"geo_country",
|
||||
"geoState",
|
||||
"geoCity",
|
||||
"geoZip",
|
||||
"geoArea",
|
||||
"geoLat",
|
||||
"geoLon",
|
||||
"geoTz",
|
||||
"geoTzOffset",
|
||||
"ga_campaign_source",
|
||||
"ga_campaign_name",
|
||||
"ga_campaign_medium",
|
||||
"ga_campaign_term",
|
||||
"ga_campaign_content",
|
||||
"ga_campaign_customsegment",
|
||||
"ga_first_visit",
|
||||
"ga_times_visited",
|
||||
"fb_id",
|
||||
"fb_name",
|
||||
"tw_id",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "string"
|
||||
},
|
||||
"seriesid": {
|
||||
"type": "string"
|
||||
},
|
||||
"sdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"responder": {
|
||||
"type": "string"
|
||||
},
|
||||
"sync": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "null"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip4Sub": {
|
||||
"type": "string"
|
||||
},
|
||||
"sourceid": {
|
||||
"type": "string"
|
||||
},
|
||||
"autosyncLog": {
|
||||
"type": "null"
|
||||
},
|
||||
"ip4_last": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip4Unsub": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"automation": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"form": {
|
||||
"type": "string"
|
||||
},
|
||||
"autosyncLog": {
|
||||
"type": "string"
|
||||
},
|
||||
"campaign": {
|
||||
"type": "string"
|
||||
},
|
||||
"unsubscribeAutomation": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"automation",
|
||||
"list",
|
||||
"contact",
|
||||
"form",
|
||||
"autosyncLog",
|
||||
"campaign",
|
||||
"unsubscribeAutomation",
|
||||
"message"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contact",
|
||||
"list",
|
||||
"form",
|
||||
"seriesid",
|
||||
"sdate",
|
||||
"udate",
|
||||
"status",
|
||||
"responder",
|
||||
"sync",
|
||||
"unsubreason",
|
||||
"campaign",
|
||||
"message",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"ip4Sub",
|
||||
"sourceid",
|
||||
"autosyncLog",
|
||||
"ip4_last",
|
||||
"ip4Unsub",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"unsubscribeAutomation",
|
||||
"links",
|
||||
"id",
|
||||
"automation"
|
||||
]
|
||||
}
|
||||
},
|
||||
"deals": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"group": {
|
||||
"type": "string"
|
||||
},
|
||||
"stage": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"percent": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"mdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"currency": {
|
||||
"type": "string"
|
||||
},
|
||||
"winProbability": {
|
||||
"type": "null"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"activitycount": {
|
||||
"type": "string"
|
||||
},
|
||||
"nextdealid": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dealActivities": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"group": {
|
||||
"type": "string"
|
||||
},
|
||||
"nextTask": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"account": {
|
||||
"type": "string"
|
||||
},
|
||||
"customerAccount": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"stage": {
|
||||
"type": "string"
|
||||
},
|
||||
"tasks": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealCustomFieldData": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"dealActivities",
|
||||
"contact",
|
||||
"contactDeals",
|
||||
"group",
|
||||
"nextTask",
|
||||
"notes",
|
||||
"account",
|
||||
"customerAccount",
|
||||
"organization",
|
||||
"owner",
|
||||
"scoreValues",
|
||||
"stage",
|
||||
"tasks",
|
||||
"dealCustomFieldData"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isDisabled": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"hash",
|
||||
"owner",
|
||||
"contact",
|
||||
"organization",
|
||||
"group",
|
||||
"stage",
|
||||
"title",
|
||||
"description",
|
||||
"percent",
|
||||
"cdate",
|
||||
"mdate",
|
||||
"nextdate",
|
||||
"nexttaskid",
|
||||
"value",
|
||||
"currency",
|
||||
"winProbability",
|
||||
"winProbabilityMdate",
|
||||
"status",
|
||||
"activitycount",
|
||||
"nextdealid",
|
||||
"edate",
|
||||
"links",
|
||||
"id",
|
||||
"isDisabled",
|
||||
"account",
|
||||
"customerAccount"
|
||||
]
|
||||
}
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"owner",
|
||||
"field"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contact",
|
||||
"field",
|
||||
"value",
|
||||
"cdate",
|
||||
"udate",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"links",
|
||||
"id",
|
||||
"owner"
|
||||
]
|
||||
}
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"campaignid": {
|
||||
"type": "string"
|
||||
},
|
||||
"messageid": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoaddrid": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip4": {
|
||||
"type": "string"
|
||||
},
|
||||
"tstamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoAddress": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"geoAddress": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"geoAddress"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contact",
|
||||
"campaignid",
|
||||
"messageid",
|
||||
"geoaddrid",
|
||||
"ip4",
|
||||
"tstamp",
|
||||
"geoAddress",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"contact": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgid": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgname": {
|
||||
"type": "string"
|
||||
},
|
||||
"segmentio_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_hard": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_soft": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialdata_lastcheck": {
|
||||
"type": "null"
|
||||
},
|
||||
"email_local": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"sentcnt": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"anonymized": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"mpp_tracking": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"deals": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bounceLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"deals": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"plusAppend": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationEntryCounts": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bounceLogs",
|
||||
"contactAutomations",
|
||||
"contactData",
|
||||
"contactGoals",
|
||||
"contactLists",
|
||||
"contactLogs",
|
||||
"contactTags",
|
||||
"contactDeals",
|
||||
"deals",
|
||||
"fieldValues",
|
||||
"geoIps",
|
||||
"notes",
|
||||
"organization",
|
||||
"plusAppend",
|
||||
"trackingLogs",
|
||||
"scoreValues",
|
||||
"automationEntryCounts"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"cdate",
|
||||
"email",
|
||||
"phone",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"orgid",
|
||||
"orgname",
|
||||
"segmentio_id",
|
||||
"bounced_hard",
|
||||
"bounced_soft",
|
||||
"bounced_date",
|
||||
"ip",
|
||||
"ua",
|
||||
"hash",
|
||||
"socialdata_lastcheck",
|
||||
"email_local",
|
||||
"email_domain",
|
||||
"sentcnt",
|
||||
"rating_tstamp",
|
||||
"gravatar",
|
||||
"deleted",
|
||||
"anonymized",
|
||||
"adate",
|
||||
"udate",
|
||||
"edate",
|
||||
"deleted_at",
|
||||
"created_utc_timestamp",
|
||||
"updated_utc_timestamp",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"mpp_tracking",
|
||||
"last_click_date",
|
||||
"last_open_date",
|
||||
"last_mpp_open_date",
|
||||
"contactAutomations",
|
||||
"contactLists",
|
||||
"fieldValues",
|
||||
"geoIps",
|
||||
"deals",
|
||||
"accountContacts",
|
||||
"links",
|
||||
"id",
|
||||
"organization"
|
||||
]
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"account": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"jobTitle": {
|
||||
"type": "string"
|
||||
},
|
||||
"createdTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updatedTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"account": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"account",
|
||||
"contact"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"account",
|
||||
"contact",
|
||||
"jobTitle",
|
||||
"createdTimestamp",
|
||||
"updatedTimestamp",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
142
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
142
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
|
@ -0,0 +1,142 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgid": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgname": {
|
||||
"type": "string"
|
||||
},
|
||||
"segmentio_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_hard": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_soft": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialdata_lastcheck": {
|
||||
"type": "null"
|
||||
},
|
||||
"email_local": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"sentcnt": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"anonymized": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"mpp_tracking": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bounceLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"deals": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"plusAppend": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationEntryCounts": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
208
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/update.json
vendored
Normal file
208
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contact/update.json
vendored
Normal file
|
@ -0,0 +1,208 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgid": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgname": {
|
||||
"type": "string"
|
||||
},
|
||||
"segmentio_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_hard": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_soft": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialdata_lastcheck": {
|
||||
"type": "null"
|
||||
},
|
||||
"email_local": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"sentcnt": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"anonymized": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"mpp_tracking": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bounceLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"deals": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"plusAppend": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationEntryCounts": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bounceLogs",
|
||||
"contactAutomations",
|
||||
"contactData",
|
||||
"contactGoals",
|
||||
"contactLists",
|
||||
"contactLogs",
|
||||
"contactTags",
|
||||
"contactDeals",
|
||||
"deals",
|
||||
"fieldValues",
|
||||
"geoIps",
|
||||
"notes",
|
||||
"organization",
|
||||
"plusAppend",
|
||||
"trackingLogs",
|
||||
"scoreValues",
|
||||
"automationEntryCounts"
|
||||
]
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"cdate",
|
||||
"email",
|
||||
"phone",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"orgid",
|
||||
"orgname",
|
||||
"segmentio_id",
|
||||
"bounced_hard",
|
||||
"bounced_soft",
|
||||
"bounced_date",
|
||||
"ip",
|
||||
"ua",
|
||||
"hash",
|
||||
"socialdata_lastcheck",
|
||||
"email_local",
|
||||
"email_domain",
|
||||
"sentcnt",
|
||||
"rating_tstamp",
|
||||
"gravatar",
|
||||
"deleted",
|
||||
"anonymized",
|
||||
"adate",
|
||||
"udate",
|
||||
"edate",
|
||||
"deleted_at",
|
||||
"created_utc_timestamp",
|
||||
"updated_utc_timestamp",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"mpp_tracking",
|
||||
"links",
|
||||
"id",
|
||||
"organization"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contactList/add.json
vendored
Normal file
11
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contactList/add.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
26
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contactTag/add.json
vendored
Normal file
26
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/contactTag/add.json
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tag": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"tag",
|
||||
"contact"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
518
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/deal/create.json
vendored
Normal file
518
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/deal/create.json
vendored
Normal file
|
@ -0,0 +1,518 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contacts": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgid": {
|
||||
"type": "string"
|
||||
},
|
||||
"orgname": {
|
||||
"type": "string"
|
||||
},
|
||||
"segmentio_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_hard": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_soft": {
|
||||
"type": "string"
|
||||
},
|
||||
"bounced_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialdata_lastcheck": {
|
||||
"type": "null"
|
||||
},
|
||||
"email_local": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"sentcnt": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"anonymized": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_utc_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"mpp_tracking": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_mpp_open_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bounceLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactAutomations": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactData": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactGoals": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"deals": {
|
||||
"type": "string"
|
||||
},
|
||||
"fieldValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"geoIps": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"plusAppend": {
|
||||
"type": "string"
|
||||
},
|
||||
"trackingLogs": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
"automationEntryCounts": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bounceLogs",
|
||||
"contactAutomations",
|
||||
"contactData",
|
||||
"contactGoals",
|
||||
"contactLists",
|
||||
"contactLogs",
|
||||
"contactTags",
|
||||
"contactDeals",
|
||||
"deals",
|
||||
"fieldValues",
|
||||
"geoIps",
|
||||
"notes",
|
||||
"organization",
|
||||
"plusAppend",
|
||||
"trackingLogs",
|
||||
"scoreValues",
|
||||
"accountContacts",
|
||||
"automationEntryCounts"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"cdate",
|
||||
"email",
|
||||
"phone",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"orgid",
|
||||
"orgname",
|
||||
"segmentio_id",
|
||||
"bounced_hard",
|
||||
"bounced_soft",
|
||||
"bounced_date",
|
||||
"ip",
|
||||
"ua",
|
||||
"hash",
|
||||
"socialdata_lastcheck",
|
||||
"email_local",
|
||||
"email_domain",
|
||||
"sentcnt",
|
||||
"rating_tstamp",
|
||||
"gravatar",
|
||||
"deleted",
|
||||
"anonymized",
|
||||
"adate",
|
||||
"udate",
|
||||
"edate",
|
||||
"deleted_at",
|
||||
"created_utc_timestamp",
|
||||
"updated_utc_timestamp",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"mpp_tracking",
|
||||
"last_click_date",
|
||||
"last_open_date",
|
||||
"last_mpp_open_date",
|
||||
"links",
|
||||
"id",
|
||||
"organization"
|
||||
]
|
||||
}
|
||||
},
|
||||
"dealGroups": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"currency": {
|
||||
"type": "string"
|
||||
},
|
||||
"autoassign": {
|
||||
"type": "string"
|
||||
},
|
||||
"allusers": {
|
||||
"type": "string"
|
||||
},
|
||||
"allgroups": {
|
||||
"type": "string"
|
||||
},
|
||||
"win_probability_initialize_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"udate": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"stages": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealGroupUsers": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealGroupGroups": {
|
||||
"type": "string"
|
||||
},
|
||||
"winProbabilityFeatures": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"stages",
|
||||
"dealGroupUsers",
|
||||
"dealGroupGroups",
|
||||
"winProbabilityFeatures"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"currency",
|
||||
"autoassign",
|
||||
"allusers",
|
||||
"allgroups",
|
||||
"win_probability_initialize_date",
|
||||
"cdate",
|
||||
"udate",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"dealStages": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"group": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"order": {
|
||||
"type": "string"
|
||||
},
|
||||
"width": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealOrder": {
|
||||
"type": "string"
|
||||
},
|
||||
"cardRegion1": {
|
||||
"type": "string"
|
||||
},
|
||||
"cardRegion2": {
|
||||
"type": "string"
|
||||
},
|
||||
"cardRegion3": {
|
||||
"type": "string"
|
||||
},
|
||||
"cardRegion4": {
|
||||
"type": "string"
|
||||
},
|
||||
"cardRegion5": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "null"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"group"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"group",
|
||||
"title",
|
||||
"color",
|
||||
"order",
|
||||
"width",
|
||||
"dealOrder",
|
||||
"cardRegion1",
|
||||
"cardRegion2",
|
||||
"cardRegion3",
|
||||
"cardRegion4",
|
||||
"cardRegion5",
|
||||
"cdate",
|
||||
"udate",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"deal": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"currency": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"mdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "null"
|
||||
},
|
||||
"status": {
|
||||
"type": "integer"
|
||||
},
|
||||
"nextdate": {
|
||||
"type": "null"
|
||||
},
|
||||
"nextdealid": {
|
||||
"type": "string"
|
||||
},
|
||||
"hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"winProbability": {
|
||||
"type": "null"
|
||||
},
|
||||
"winProbabilityMdate": {
|
||||
"type": "null"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dealActivities": {
|
||||
"type": "string"
|
||||
},
|
||||
"contact": {
|
||||
"type": "string"
|
||||
},
|
||||
"contactDeals": {
|
||||
"type": "string"
|
||||
},
|
||||
"group": {
|
||||
"type": "string"
|
||||
},
|
||||
"nextTask": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"account": {
|
||||
"type": "string"
|
||||
},
|
||||
"customerAccount": {
|
||||
"type": "string"
|
||||
},
|
||||
"organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "string"
|
||||
},
|
||||
"scoreValues": {
|
||||
"type": "string"
|
||||
},
|
||||
"stage": {
|
||||
"type": "string"
|
||||
},
|
||||
"tasks": {
|
||||
"type": "string"
|
||||
},
|
||||
"dealCustomFieldData": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"dealActivities",
|
||||
"contact",
|
||||
"contactDeals",
|
||||
"group",
|
||||
"nextTask",
|
||||
"notes",
|
||||
"account",
|
||||
"customerAccount",
|
||||
"organization",
|
||||
"owner",
|
||||
"scoreValues",
|
||||
"stage",
|
||||
"tasks",
|
||||
"dealCustomFieldData"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isDisabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"account": {
|
||||
"type": "null"
|
||||
},
|
||||
"customerAccount": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"value",
|
||||
"currency",
|
||||
"contact",
|
||||
"group",
|
||||
"cdate",
|
||||
"mdate",
|
||||
"description",
|
||||
"owner",
|
||||
"stage",
|
||||
"organization",
|
||||
"status",
|
||||
"nextdate",
|
||||
"nextdealid",
|
||||
"hash",
|
||||
"winProbability",
|
||||
"winProbabilityMdate",
|
||||
"links",
|
||||
"fields",
|
||||
"id",
|
||||
"isDisabled",
|
||||
"account",
|
||||
"customerAccount"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contacts",
|
||||
"dealGroups",
|
||||
"dealStages",
|
||||
"deal"
|
||||
]
|
||||
}
|
150
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
150
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
|
@ -0,0 +1,150 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"stringid": {
|
||||
"type": "string"
|
||||
},
|
||||
"userid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"cdate": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_tracking": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_analytics_read": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_analytics_link": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_twitter": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_facebook": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_embed_image": {
|
||||
"type": "string"
|
||||
},
|
||||
"p_use_captcha": {
|
||||
"type": "string"
|
||||
},
|
||||
"send_last_broadcast": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"type": "string"
|
||||
},
|
||||
"analytics_domains": {
|
||||
"type": "null"
|
||||
},
|
||||
"analytics_source": {
|
||||
"type": "string"
|
||||
},
|
||||
"analytics_ua": {
|
||||
"type": "string"
|
||||
},
|
||||
"twitter_token": {
|
||||
"type": "string"
|
||||
},
|
||||
"twitter_token_secret": {
|
||||
"type": "string"
|
||||
},
|
||||
"facebook_session": {
|
||||
"type": "null"
|
||||
},
|
||||
"require_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"get_unsubscribe_reason": {
|
||||
"type": "string"
|
||||
},
|
||||
"to_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"optinoptout": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_addr1": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_addr2": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_city": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_state": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_zip": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_country": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sender_reminder": {
|
||||
"type": "string"
|
||||
},
|
||||
"optinmessageid": {
|
||||
"type": "string"
|
||||
},
|
||||
"optoutconf": {
|
||||
"type": "string"
|
||||
},
|
||||
"deletestamp": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"updated_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contactGoalLists": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "string"
|
||||
},
|
||||
"addressLists": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contactGoalLists",
|
||||
"user",
|
||||
"addressLists"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
66
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/tag/get.json
vendored
Normal file
66
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/tag/get.json
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tag": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tagType": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriber_count": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contactGoalTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"templateTags": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contactGoalTags",
|
||||
"templateTags"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"tagType",
|
||||
"tag",
|
||||
"description",
|
||||
"subscriber_count",
|
||||
"cdate",
|
||||
"created_timestamp",
|
||||
"updated_timestamp",
|
||||
"created_by",
|
||||
"updated_by",
|
||||
"deleted",
|
||||
"links",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"tag"
|
||||
]
|
||||
}
|
44
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/tag/getAll.json
vendored
Normal file
44
packages/nodes-base/nodes/ActiveCampaign/__schema__/v1.0.0/tag/getAll.json
vendored
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"tagType": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriber_count": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"contactGoalTags": {
|
||||
"type": "string"
|
||||
},
|
||||
"templateTags": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"contactGoalTags",
|
||||
"templateTags"
|
||||
]
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
57
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/listEntry/create.json
vendored
Normal file
57
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/listEntry/create.json
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"list_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"entity": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"domains": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"crunchbase_uuid": {
|
||||
"type": "null"
|
||||
},
|
||||
"global": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"domain",
|
||||
"domains",
|
||||
"crunchbase_uuid",
|
||||
"global"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
59
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/listEntry/getAll.json
vendored
Normal file
59
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/listEntry/getAll.json
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"list_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"entity": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"domains": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"crunchbase_uuid": {
|
||||
"type": "null"
|
||||
},
|
||||
"global": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"list_id",
|
||||
"creator_id",
|
||||
"entity_id",
|
||||
"entity_type",
|
||||
"created_at",
|
||||
"entity"
|
||||
]
|
||||
}
|
41
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/organization/create.json
vendored
Normal file
41
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/organization/create.json
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"domains": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"crunchbase_uuid": {
|
||||
"type": "null"
|
||||
},
|
||||
"global": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"person_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"domain",
|
||||
"domains",
|
||||
"crunchbase_uuid",
|
||||
"global",
|
||||
"person_ids"
|
||||
]
|
||||
}
|
76
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/organization/get.json
vendored
Normal file
76
packages/nodes-base/nodes/Affinity/__schema__/v1.0.0/organization/get.json
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"domains": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"crunchbase_uuid": {
|
||||
"type": "null"
|
||||
},
|
||||
"global": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"person_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"list_entries": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"list_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entity_type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"list_id",
|
||||
"creator_id",
|
||||
"entity_id",
|
||||
"entity_type",
|
||||
"created_at"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"domain",
|
||||
"domains",
|
||||
"crunchbase_uuid",
|
||||
"global",
|
||||
"person_ids",
|
||||
"list_entries"
|
||||
]
|
||||
}
|
23
packages/nodes-base/nodes/ApiTemplateIo/__schema__/v1.0.0/pdf/create.json
vendored
Normal file
23
packages/nodes-base/nodes/ApiTemplateIo/__schema__/v1.0.0/pdf/create.json
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"template_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"transaction_ref": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"download_url",
|
||||
"template_id",
|
||||
"transaction_ref",
|
||||
"status"
|
||||
]
|
||||
}
|
200
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/create.json
vendored
Normal file
200
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/create.json
vendored
Normal file
|
@ -0,0 +1,200 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"minimum_access_level_for_sharing": {
|
||||
"type": "string"
|
||||
},
|
||||
"minimum_access_level_for_customization": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_view": {
|
||||
"type": "string"
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"privacy_setting": {
|
||||
"type": "string"
|
||||
},
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"current_status": {
|
||||
"type": "null"
|
||||
},
|
||||
"current_status_update": {
|
||||
"type": "null"
|
||||
},
|
||||
"owner": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"completed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"completed_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"members": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"icon": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"created_at",
|
||||
"modified_at",
|
||||
"start_on",
|
||||
"minimum_access_level_for_sharing",
|
||||
"minimum_access_level_for_customization",
|
||||
"default_access_level",
|
||||
"default_view",
|
||||
"permalink_url",
|
||||
"team",
|
||||
"workspace",
|
||||
"archived",
|
||||
"notes",
|
||||
"name",
|
||||
"privacy_setting",
|
||||
"public",
|
||||
"current_status",
|
||||
"current_status_update",
|
||||
"due_on",
|
||||
"due_date",
|
||||
"owner",
|
||||
"completed",
|
||||
"completed_at",
|
||||
"completed_by",
|
||||
"members",
|
||||
"followers",
|
||||
"icon",
|
||||
"color"
|
||||
]
|
||||
}
|
405
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/get.json
vendored
Normal file
405
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/get.json
vendored
Normal file
|
@ -0,0 +1,405 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"completed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enum_options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"color",
|
||||
"enabled",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_formula_field": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_value_read_only": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"enabled",
|
||||
"name",
|
||||
"description",
|
||||
"created_by",
|
||||
"display_value",
|
||||
"resource_subtype",
|
||||
"resource_type",
|
||||
"is_formula_field",
|
||||
"is_value_read_only",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"custom_field_settings": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_field": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"enum_options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"color",
|
||||
"enabled",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_formula_field": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_subtype",
|
||||
"resource_type",
|
||||
"type",
|
||||
"is_formula_field"
|
||||
]
|
||||
},
|
||||
"is_important": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"custom_field",
|
||||
"is_important",
|
||||
"parent",
|
||||
"project",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"default_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_view": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"members": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minimum_access_level_for_customization": {
|
||||
"type": "string"
|
||||
},
|
||||
"minimum_access_level_for_sharing": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"privacy_setting": {
|
||||
"type": "string"
|
||||
},
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"archived",
|
||||
"color",
|
||||
"completed",
|
||||
"completed_at",
|
||||
"created_at",
|
||||
"current_status",
|
||||
"current_status_update",
|
||||
"custom_fields",
|
||||
"default_access_level",
|
||||
"default_view",
|
||||
"due_on",
|
||||
"due_date",
|
||||
"followers",
|
||||
"members",
|
||||
"minimum_access_level_for_customization",
|
||||
"minimum_access_level_for_sharing",
|
||||
"modified_at",
|
||||
"name",
|
||||
"notes",
|
||||
"owner",
|
||||
"permalink_url",
|
||||
"privacy_setting",
|
||||
"public",
|
||||
"resource_type",
|
||||
"start_on",
|
||||
"team",
|
||||
"workspace"
|
||||
]
|
||||
}
|
19
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/getAll.json
vendored
Normal file
19
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/project/getAll.json
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
195
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/subtask/create.json
vendored
Normal file
195
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/subtask/create.json
vendored
Normal file
|
@ -0,0 +1,195 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"actual_time_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"start_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"due_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"completed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"num_hearts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"num_likes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"start_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hearted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"assignee_section": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"parent": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name",
|
||||
"resource_subtype"
|
||||
]
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"projects",
|
||||
"memberships",
|
||||
"resource_type",
|
||||
"created_at",
|
||||
"modified_at",
|
||||
"name",
|
||||
"notes",
|
||||
"assignee",
|
||||
"actual_time_minutes",
|
||||
"workspace",
|
||||
"start_on",
|
||||
"resource_subtype",
|
||||
"due_at",
|
||||
"due_on",
|
||||
"completed_at",
|
||||
"assignee_status",
|
||||
"completed",
|
||||
"num_hearts",
|
||||
"tags",
|
||||
"num_likes",
|
||||
"start_at",
|
||||
"liked",
|
||||
"likes",
|
||||
"hearted",
|
||||
"hearts",
|
||||
"followers",
|
||||
"parent",
|
||||
"permalink_url"
|
||||
]
|
||||
}
|
34
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/subtask/getAll.json
vendored
Normal file
34
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/subtask/getAll.json
vendored
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"parent": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
342
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/create.json
vendored
Normal file
342
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/create.json
vendored
Normal file
|
@ -0,0 +1,342 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"projects": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"num_likes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"num_hearts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"start_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"due_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"completed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"actual_time_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"section": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"project",
|
||||
"section"
|
||||
]
|
||||
}
|
||||
},
|
||||
"parent": {
|
||||
"type": "null"
|
||||
},
|
||||
"likes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"user"
|
||||
]
|
||||
}
|
||||
},
|
||||
"hearts": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"user"
|
||||
]
|
||||
}
|
||||
},
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hearted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"enum_value": {
|
||||
"type": "null"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"enum_options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"enabled",
|
||||
"name",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"enabled",
|
||||
"name",
|
||||
"type",
|
||||
"resource_subtype",
|
||||
"display_value",
|
||||
"created_by"
|
||||
]
|
||||
}
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
303
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/get.json
vendored
Normal file
303
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/get.json
vendored
Normal file
|
@ -0,0 +1,303 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"actual_time_minutes": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"enum_options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"completion_state": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"color",
|
||||
"enabled",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_formula_field": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_value_read_only": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"precision": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"enabled",
|
||||
"name",
|
||||
"description",
|
||||
"created_by",
|
||||
"display_value",
|
||||
"resource_subtype",
|
||||
"resource_type",
|
||||
"is_formula_field",
|
||||
"is_value_read_only",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"hearted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
},
|
||||
"section": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"project",
|
||||
"section"
|
||||
]
|
||||
}
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"num_hearts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"num_likes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"projects": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"actual_time_minutes",
|
||||
"assignee",
|
||||
"assignee_status",
|
||||
"completed",
|
||||
"completed_at",
|
||||
"created_at",
|
||||
"due_at",
|
||||
"due_on",
|
||||
"followers",
|
||||
"hearted",
|
||||
"hearts",
|
||||
"liked",
|
||||
"likes",
|
||||
"memberships",
|
||||
"modified_at",
|
||||
"name",
|
||||
"notes",
|
||||
"num_hearts",
|
||||
"num_likes",
|
||||
"parent",
|
||||
"permalink_url",
|
||||
"projects",
|
||||
"resource_type",
|
||||
"start_at",
|
||||
"start_on",
|
||||
"tags",
|
||||
"resource_subtype",
|
||||
"workspace"
|
||||
]
|
||||
}
|
14
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/getAll.json
vendored
Normal file
14
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/getAll.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/move.json
vendored
Normal file
11
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/move.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
23
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/search.json
vendored
Normal file
23
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/search.json
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type",
|
||||
"resource_subtype"
|
||||
]
|
||||
}
|
310
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/update.json
vendored
Normal file
310
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/task/update.json
vendored
Normal file
|
@ -0,0 +1,310 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"projects": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"num_likes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"num_hearts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"workspace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"start_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"due_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"completed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"actual_time_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hearted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"permalink_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"section": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"project",
|
||||
"section"
|
||||
]
|
||||
}
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"enum_options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"enabled",
|
||||
"name",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
},
|
||||
"precision": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"enabled",
|
||||
"name",
|
||||
"type",
|
||||
"resource_subtype",
|
||||
"display_value",
|
||||
"created_by"
|
||||
]
|
||||
}
|
||||
},
|
||||
"followers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"projects",
|
||||
"num_likes",
|
||||
"num_hearts",
|
||||
"workspace",
|
||||
"tags",
|
||||
"start_at",
|
||||
"start_on",
|
||||
"resource_subtype",
|
||||
"due_at",
|
||||
"due_on",
|
||||
"completed_at",
|
||||
"assignee_status",
|
||||
"completed",
|
||||
"actual_time_minutes",
|
||||
"assignee",
|
||||
"notes",
|
||||
"name",
|
||||
"modified_at",
|
||||
"created_at",
|
||||
"resource_type",
|
||||
"parent",
|
||||
"likes",
|
||||
"hearts",
|
||||
"liked",
|
||||
"hearted",
|
||||
"permalink_url",
|
||||
"memberships",
|
||||
"followers"
|
||||
]
|
||||
}
|
110
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/taskComment/add.json
vendored
Normal file
110
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/taskComment/add.json
vendored
Normal file
|
@ -0,0 +1,110 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"num_likes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"num_hearts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_edited": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_pinned": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"source": {
|
||||
"type": "string"
|
||||
},
|
||||
"hearted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"liked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_editable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"target": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_subtype": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"name",
|
||||
"resource_subtype"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"resource_type",
|
||||
"created_at",
|
||||
"num_likes",
|
||||
"num_hearts",
|
||||
"resource_subtype",
|
||||
"is_edited",
|
||||
"text",
|
||||
"type",
|
||||
"is_pinned",
|
||||
"source",
|
||||
"hearts",
|
||||
"likes",
|
||||
"hearted",
|
||||
"liked",
|
||||
"previews",
|
||||
"is_editable",
|
||||
"created_by",
|
||||
"target"
|
||||
]
|
||||
}
|
47
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/user/get.json
vendored
Normal file
47
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/user/get.json
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaces": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"email",
|
||||
"name",
|
||||
"photo",
|
||||
"resource_type",
|
||||
"workspaces"
|
||||
]
|
||||
}
|
19
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/user/getAll.json
vendored
Normal file
19
packages/nodes-base/nodes/Asana/__schema__/v1.0.0/user/getAll.json
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
27
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectEntities.json
vendored
Normal file
27
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectEntities.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"BeginOffset": {
|
||||
"type": "integer"
|
||||
},
|
||||
"EndOffset": {
|
||||
"type": "integer"
|
||||
},
|
||||
"Score": {
|
||||
"type": "number"
|
||||
},
|
||||
"Text": {
|
||||
"type": "string"
|
||||
},
|
||||
"Type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"BeginOffset",
|
||||
"EndOffset",
|
||||
"Score",
|
||||
"Text",
|
||||
"Type"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/create.json
vendored
Normal file
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/create.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/getAll.json
vendored
Normal file
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/getAll.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Name": {
|
||||
"type": "string"
|
||||
},
|
||||
"CreationDate": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/search.json
vendored
Normal file
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/bucket/search.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Key": {
|
||||
"type": "string"
|
||||
},
|
||||
"LastModified": {
|
||||
"type": "string"
|
||||
},
|
||||
"ETag": {
|
||||
"type": "string"
|
||||
},
|
||||
"Size": {
|
||||
"type": "string"
|
||||
},
|
||||
"StorageClass": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Key",
|
||||
"LastModified",
|
||||
"ETag",
|
||||
"Size",
|
||||
"StorageClass"
|
||||
]
|
||||
}
|
22
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/copy.json
vendored
Normal file
22
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/copy.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"xmlns": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"xmlns"
|
||||
]
|
||||
},
|
||||
"LastModified": {
|
||||
"type": "string"
|
||||
},
|
||||
"ETag": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
8
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/delete.json
vendored
Normal file
8
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/delete.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/getAll.json
vendored
Normal file
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/getAll.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Key": {
|
||||
"type": "string"
|
||||
},
|
||||
"LastModified": {
|
||||
"type": "string"
|
||||
},
|
||||
"ETag": {
|
||||
"type": "string"
|
||||
},
|
||||
"Size": {
|
||||
"type": "string"
|
||||
},
|
||||
"StorageClass": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Key",
|
||||
"LastModified",
|
||||
"ETag",
|
||||
"Size",
|
||||
"StorageClass"
|
||||
]
|
||||
}
|
28
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/upload.json
vendored
Normal file
28
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/file/upload.json
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"xmlns": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"xmlns"
|
||||
]
|
||||
},
|
||||
"Location": {
|
||||
"type": "string"
|
||||
},
|
||||
"Bucket": {
|
||||
"type": "string"
|
||||
},
|
||||
"Key": {
|
||||
"type": "string"
|
||||
},
|
||||
"ETag": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/folder/create.json
vendored
Normal file
11
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/folder/create.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/folder/getAll.json
vendored
Normal file
27
packages/nodes-base/nodes/Aws/S3/__schema__/v2.0.0/folder/getAll.json
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Key": {
|
||||
"type": "string"
|
||||
},
|
||||
"LastModified": {
|
||||
"type": "string"
|
||||
},
|
||||
"ETag": {
|
||||
"type": "string"
|
||||
},
|
||||
"Size": {
|
||||
"type": "string"
|
||||
},
|
||||
"StorageClass": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Key",
|
||||
"LastModified",
|
||||
"ETag",
|
||||
"Size",
|
||||
"StorageClass"
|
||||
]
|
||||
}
|
48
packages/nodes-base/nodes/Aws/SES/__schema__/v1.0.0/email/send.json
vendored
Normal file
48
packages/nodes-base/nodes/Aws/SES/__schema__/v1.0.0/email/send.json
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"SendEmailResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"$": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"xmlns": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"xmlns"
|
||||
]
|
||||
},
|
||||
"SendEmailResult": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"MessageId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"MessageId"
|
||||
]
|
||||
},
|
||||
"ResponseMetadata": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"RequestId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"RequestId"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"$",
|
||||
"SendEmailResult",
|
||||
"ResponseMetadata"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
28
packages/nodes-base/nodes/Aws/Transcribe/__schema__/v1.0.0/transcriptionJob/create.json
vendored
Normal file
28
packages/nodes-base/nodes/Aws/Transcribe/__schema__/v1.0.0/transcriptionJob/create.json
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"CreationTime": {
|
||||
"type": "number"
|
||||
},
|
||||
"IdentifyLanguage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"Media": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"MediaFileUri": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"MediaFileUri"
|
||||
]
|
||||
},
|
||||
"TranscriptionJobName": {
|
||||
"type": "string"
|
||||
},
|
||||
"TranscriptionJobStatus": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
55
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/companyReport/get.json
vendored
Normal file
55
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/companyReport/get.json
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"type",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"employees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"hireDate": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"fields",
|
||||
"employees"
|
||||
]
|
||||
}
|
14
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/employee/get.json
vendored
Normal file
14
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/employee/get.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"1357": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
43
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/employee/getAll.json
vendored
Normal file
43
packages/nodes-base/nodes/BambooHr/__schema__/v1.0.0/employee/getAll.json
vendored
Normal file
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"firstName": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastName": {
|
||||
"type": "string"
|
||||
},
|
||||
"pronouns": {
|
||||
"type": "null"
|
||||
},
|
||||
"photoUploaded": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"photoUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"canUploadPhoto": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"preferredName",
|
||||
"jobTitle",
|
||||
"workEmail",
|
||||
"department",
|
||||
"pronouns",
|
||||
"photoUploaded",
|
||||
"photoUrl",
|
||||
"canUploadPhoto"
|
||||
]
|
||||
}
|
92
packages/nodes-base/nodes/Bannerbear/__schema__/v1.0.0/image/create.json
vendored
Normal file
92
packages/nodes-base/nodes/Bannerbear/__schema__/v1.0.0/image/create.json
vendored
Normal file
|
@ -0,0 +1,92 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"uid": {
|
||||
"type": "string"
|
||||
},
|
||||
"template": {
|
||||
"type": "string"
|
||||
},
|
||||
"template_version": {
|
||||
"type": "null"
|
||||
},
|
||||
"modifications": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"webhook_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"webhook_response_code": {
|
||||
"type": "null"
|
||||
},
|
||||
"transparent": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"metadata": {
|
||||
"type": "null"
|
||||
},
|
||||
"template_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"width": {
|
||||
"type": "integer"
|
||||
},
|
||||
"height": {
|
||||
"type": "integer"
|
||||
},
|
||||
"render_pdf": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pdf_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"pdf_url_compressed": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"created_at",
|
||||
"status",
|
||||
"self",
|
||||
"uid",
|
||||
"image_url",
|
||||
"image_url_png",
|
||||
"image_url_jpg",
|
||||
"template",
|
||||
"template_version",
|
||||
"modifications",
|
||||
"webhook_url",
|
||||
"webhook_response_code",
|
||||
"transparent",
|
||||
"metadata",
|
||||
"template_name",
|
||||
"width",
|
||||
"height",
|
||||
"render_pdf",
|
||||
"pdf_url",
|
||||
"pdf_url_compressed"
|
||||
]
|
||||
}
|
42
packages/nodes-base/nodes/Bitly/__schema__/v1.0.0/link/create.json
vendored
Normal file
42
packages/nodes-base/nodes/Bitly/__schema__/v1.0.0/link/create.json
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"link": {
|
||||
"type": "string"
|
||||
},
|
||||
"long_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"references": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"group"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"created_at",
|
||||
"id",
|
||||
"link",
|
||||
"custom_bitlinks",
|
||||
"long_url",
|
||||
"archived",
|
||||
"tags",
|
||||
"deeplinks",
|
||||
"references"
|
||||
]
|
||||
}
|
219
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/get.json
vendored
Normal file
219
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/get.json
vendored
Normal file
|
@ -0,0 +1,219 @@
|
|||
{
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
200
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/search.json
vendored
Normal file
200
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/search.json
vendored
Normal file
|
@ -0,0 +1,200 @@
|
|||
{
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"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",
|
||||
"etag"
|
||||
]
|
||||
}
|
198
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/upload.json
vendored
Normal file
198
packages/nodes-base/nodes/Box/__schema__/v1.0.0/file/upload.json
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
218
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/create.json
vendored
Normal file
218
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/create.json
vendored
Normal file
|
@ -0,0 +1,218 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sequence_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"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_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"
|
||||
]
|
||||
},
|
||||
"trashed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"purged_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"content_created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"folder_upload_email": {
|
||||
"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"
|
||||
},
|
||||
"item_collection": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"offset": {
|
||||
"type": "integer"
|
||||
},
|
||||
"limit": {
|
||||
"type": "integer"
|
||||
},
|
||||
"order": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"by": {
|
||||
"type": "string"
|
||||
},
|
||||
"direction": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"by",
|
||||
"direction"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"total_count",
|
||||
"entries",
|
||||
"offset",
|
||||
"limit",
|
||||
"order"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
288
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/get.json
vendored
Normal file
288
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/get.json
vendored
Normal file
|
@ -0,0 +1,288 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sequence_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"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_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"
|
||||
]
|
||||
},
|
||||
"trashed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"purged_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"content_created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"owned_by": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"name",
|
||||
"login"
|
||||
]
|
||||
},
|
||||
"parent": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"item_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"item_collection": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"entries": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sequence_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"file_version": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha1": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sha1"
|
||||
]
|
||||
},
|
||||
"sha1": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"offset": {
|
||||
"type": "integer"
|
||||
},
|
||||
"limit": {
|
||||
"type": "integer"
|
||||
},
|
||||
"order": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"by": {
|
||||
"type": "string"
|
||||
},
|
||||
"direction": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"by",
|
||||
"direction"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"total_count",
|
||||
"entries",
|
||||
"offset",
|
||||
"limit",
|
||||
"order"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"id",
|
||||
"sequence_id",
|
||||
"etag",
|
||||
"name",
|
||||
"created_at",
|
||||
"modified_at",
|
||||
"description",
|
||||
"size",
|
||||
"path_collection",
|
||||
"created_by",
|
||||
"modified_by",
|
||||
"trashed_at",
|
||||
"purged_at",
|
||||
"content_created_at",
|
||||
"content_modified_at",
|
||||
"owned_by",
|
||||
"shared_link",
|
||||
"folder_upload_email",
|
||||
"parent",
|
||||
"item_status",
|
||||
"item_collection"
|
||||
]
|
||||
}
|
184
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/search.json
vendored
Normal file
184
packages/nodes-base/nodes/Box/__schema__/v1.0.0/folder/search.json
vendored
Normal file
|
@ -0,0 +1,184 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"sequence_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"modified_at": {
|
||||
"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_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"
|
||||
]
|
||||
},
|
||||
"trashed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"purged_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"content_created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_modified_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"folder_upload_email": {
|
||||
"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",
|
||||
"etag"
|
||||
]
|
||||
}
|
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/create.json
vendored
Normal file
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/create.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
37
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/get.json
vendored
Normal file
37
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/get.json
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"emailBlacklisted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"smsBlacklisted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"modifiedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"attributes": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"FIRSTNAME": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"listIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
56
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
56
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"emailBlacklisted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"smsBlacklisted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"modifiedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"listIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"listUnsubscribed": {
|
||||
"type": "null"
|
||||
},
|
||||
"attributes": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"FIRSTNAME": {
|
||||
"type": "string"
|
||||
},
|
||||
"LASTNAME": {
|
||||
"type": "string"
|
||||
},
|
||||
"PHONE": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"emailBlacklisted",
|
||||
"smsBlacklisted",
|
||||
"createdAt",
|
||||
"modifiedAt",
|
||||
"listIds",
|
||||
"listUnsubscribed",
|
||||
"attributes"
|
||||
]
|
||||
}
|
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/upsert.json
vendored
Normal file
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/contact/upsert.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
11
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/email/send.json
vendored
Normal file
11
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/email/send.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"messageId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"messageId"
|
||||
]
|
||||
}
|
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/email/sendTemplate.json
vendored
Normal file
8
packages/nodes-base/nodes/Brevo/__schema__/v1.0.0/email/sendTemplate.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"messageId": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
15
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/create.json
vendored
Normal file
15
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/create.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status",
|
||||
"id"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/delete.json
vendored
Normal file
11
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/delete.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"success"
|
||||
]
|
||||
}
|
22
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/get.json
vendored
Normal file
22
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/get.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Modified Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"Created Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"Created By": {
|
||||
"type": "string"
|
||||
},
|
||||
"_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Modified Date",
|
||||
"Created Date",
|
||||
"_id"
|
||||
]
|
||||
}
|
22
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/getAll.json
vendored
Normal file
22
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/getAll.json
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Created Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"Created By": {
|
||||
"type": "string"
|
||||
},
|
||||
"Modified Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Created Date",
|
||||
"Modified Date",
|
||||
"_id"
|
||||
]
|
||||
}
|
8
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/update.json
vendored
Normal file
8
packages/nodes-base/nodes/Bubble/__schema__/v1.0.0/object/update.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
187
packages/nodes-base/nodes/Clearbit/__schema__/v1.0.0/person/enrich.json
vendored
Normal file
187
packages/nodes-base/nodes/Clearbit/__schema__/v1.0.0/person/enrich.json
vendored
Normal file
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"fullName": {
|
||||
"type": "string"
|
||||
},
|
||||
"givenName": {
|
||||
"type": "string"
|
||||
},
|
||||
"familyName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"fullName",
|
||||
"givenName",
|
||||
"familyName"
|
||||
]
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"bio": {
|
||||
"type": "null"
|
||||
},
|
||||
"site": {
|
||||
"type": "null"
|
||||
},
|
||||
"employment": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"domain": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"domain",
|
||||
"name",
|
||||
"title",
|
||||
"role",
|
||||
"seniority"
|
||||
]
|
||||
},
|
||||
"facebook": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"handle": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"handle"
|
||||
]
|
||||
},
|
||||
"twitter": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"handle": {
|
||||
"type": "null"
|
||||
},
|
||||
"id": {
|
||||
"type": "null"
|
||||
},
|
||||
"bio": {
|
||||
"type": "null"
|
||||
},
|
||||
"followers": {
|
||||
"type": "null"
|
||||
},
|
||||
"following": {
|
||||
"type": "null"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "null"
|
||||
},
|
||||
"favorites": {
|
||||
"type": "null"
|
||||
},
|
||||
"location": {
|
||||
"type": "null"
|
||||
},
|
||||
"site": {
|
||||
"type": "null"
|
||||
},
|
||||
"avatar": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"handle",
|
||||
"id",
|
||||
"bio",
|
||||
"followers",
|
||||
"following",
|
||||
"statuses",
|
||||
"favorites",
|
||||
"location",
|
||||
"site",
|
||||
"avatar"
|
||||
]
|
||||
},
|
||||
"googleplus": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"handle": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"handle"
|
||||
]
|
||||
},
|
||||
"gravatar": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"avatars": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"handle",
|
||||
"urls",
|
||||
"avatar",
|
||||
"avatars"
|
||||
]
|
||||
},
|
||||
"fuzzy": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"emailProvider": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"indexedAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"inactiveAt": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"email",
|
||||
"location",
|
||||
"timeZone",
|
||||
"utcOffset",
|
||||
"geo",
|
||||
"bio",
|
||||
"site",
|
||||
"avatar",
|
||||
"employment",
|
||||
"facebook",
|
||||
"github",
|
||||
"twitter",
|
||||
"linkedin",
|
||||
"googleplus",
|
||||
"gravatar",
|
||||
"fuzzy",
|
||||
"emailProvider",
|
||||
"indexedAt",
|
||||
"phone"
|
||||
]
|
||||
}
|
32
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/checklist/create.json
vendored
Normal file
32
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/checklist/create.json
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"unresolved": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"task_id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"resolved",
|
||||
"unresolved",
|
||||
"items"
|
||||
]
|
||||
}
|
95
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/checklistItem/create.json
vendored
Normal file
95
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/checklistItem/create.json
vendored
Normal file
|
@ -0,0 +1,95 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"unresolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "null"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date_time": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date_time": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"task_id",
|
||||
"name",
|
||||
"date_created",
|
||||
"orderindex",
|
||||
"creator",
|
||||
"resolved",
|
||||
"unresolved",
|
||||
"items"
|
||||
]
|
||||
}
|
160
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/comment/create.json
vendored
Normal file
160
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/comment/create.json
vendored
Normal file
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hist_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "integer"
|
||||
},
|
||||
"version": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"object_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"object_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"operation": {
|
||||
"type": "string"
|
||||
},
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"context": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"audit_context": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"userid": {
|
||||
"type": "integer"
|
||||
},
|
||||
"current_time": {
|
||||
"type": "integer"
|
||||
},
|
||||
"route": {
|
||||
"type": "string"
|
||||
},
|
||||
"ip": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_agent": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"userid",
|
||||
"current_time",
|
||||
"route"
|
||||
]
|
||||
},
|
||||
"originating_service": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"audit_context",
|
||||
"originating_service"
|
||||
]
|
||||
},
|
||||
"relationships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"object_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"object_type",
|
||||
"object_id",
|
||||
"workspace_id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"changes": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"field": {
|
||||
"type": "string"
|
||||
},
|
||||
"after": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"field",
|
||||
"after"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"context",
|
||||
"relationships",
|
||||
"changes"
|
||||
]
|
||||
},
|
||||
"master_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"traceparent": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "integer"
|
||||
},
|
||||
"date_updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"event_publish_time": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"object_type",
|
||||
"object_id",
|
||||
"workspace_id",
|
||||
"operation",
|
||||
"data",
|
||||
"master_id",
|
||||
"version",
|
||||
"deleted",
|
||||
"traceparent",
|
||||
"date_created",
|
||||
"date_updated",
|
||||
"event_publish_time"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"hist_id",
|
||||
"date",
|
||||
"version"
|
||||
]
|
||||
}
|
121
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/comment/getAll.json
vendored
Normal file
121
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/comment/getAll.json
vendored
Normal file
|
@ -0,0 +1,121 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"comment": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"attributes": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"block-id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"text"
|
||||
]
|
||||
}
|
||||
},
|
||||
"comment_text": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"color",
|
||||
"initials",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"reaction": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"initials",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"reaction",
|
||||
"date",
|
||||
"user"
|
||||
]
|
||||
}
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"reply_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"comment",
|
||||
"comment_text",
|
||||
"user",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"reactions",
|
||||
"date",
|
||||
"reply_count"
|
||||
]
|
||||
}
|
61
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/create.json
vendored
Normal file
61
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/create.json
vendored
Normal file
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"override_statuses": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"task_count": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"override_statuses",
|
||||
"hidden",
|
||||
"space",
|
||||
"task_count",
|
||||
"archived",
|
||||
"statuses",
|
||||
"lists",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
172
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/get.json
vendored
Normal file
172
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/get.json
vendored
Normal file
|
@ -0,0 +1,172 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"override_statuses": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"task_count": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"orderindex",
|
||||
"color",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"lists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "null"
|
||||
},
|
||||
"task_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"orderindex",
|
||||
"color",
|
||||
"type",
|
||||
"status_group"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"status",
|
||||
"priority",
|
||||
"assignee",
|
||||
"task_count",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"archived",
|
||||
"override_statuses",
|
||||
"statuses",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"override_statuses",
|
||||
"hidden",
|
||||
"space",
|
||||
"task_count",
|
||||
"archived",
|
||||
"statuses",
|
||||
"lists",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
188
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/getAll.json
vendored
Normal file
188
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/folder/getAll.json
vendored
Normal file
|
@ -0,0 +1,188 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"override_statuses": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"task_count": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"type",
|
||||
"orderindex",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
},
|
||||
"lists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "null"
|
||||
},
|
||||
"task_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"orderindex",
|
||||
"color",
|
||||
"type",
|
||||
"status_group"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"status",
|
||||
"priority",
|
||||
"assignee",
|
||||
"task_count",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"space",
|
||||
"archived",
|
||||
"override_statuses",
|
||||
"statuses",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"override_statuses",
|
||||
"hidden",
|
||||
"space",
|
||||
"task_count",
|
||||
"archived",
|
||||
"statuses",
|
||||
"lists",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
130
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/create.json
vendored
Normal file
130
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/create.json
vendored
Normal file
|
@ -0,0 +1,130 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"inbound_address": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"override_statuses": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"orderindex",
|
||||
"color",
|
||||
"type",
|
||||
"status_group"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"deleted",
|
||||
"orderindex",
|
||||
"content",
|
||||
"priority",
|
||||
"assignee",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"folder",
|
||||
"space",
|
||||
"archived",
|
||||
"override_statuses",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
29
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/customFields.json
vendored
Normal file
29
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/customFields.json
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"hide_from_guests": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"type_config",
|
||||
"date_created",
|
||||
"hide_from_guests",
|
||||
"required"
|
||||
]
|
||||
}
|
134
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/get.json
vendored
Normal file
134
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/get.json
vendored
Normal file
|
@ -0,0 +1,134 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"inbound_address": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"statuses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_group": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"orderindex",
|
||||
"color",
|
||||
"type",
|
||||
"status_group"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"deleted",
|
||||
"orderindex",
|
||||
"priority",
|
||||
"assignee",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"folder",
|
||||
"space",
|
||||
"inbound_address",
|
||||
"archived",
|
||||
"override_statuses",
|
||||
"statuses",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
84
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
84
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/getAll.json
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"status",
|
||||
"priority",
|
||||
"assignee",
|
||||
"task_count",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"folder",
|
||||
"space",
|
||||
"archived",
|
||||
"override_statuses",
|
||||
"permission_level"
|
||||
]
|
||||
}
|
54
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/member.json
vendored
Normal file
54
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/list/member.json
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"profileInfo": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"verified_ambassador": {
|
||||
"type": "null"
|
||||
},
|
||||
"verified_consultant": {
|
||||
"type": "null"
|
||||
},
|
||||
"viewed_verified_ambassador": {
|
||||
"type": "null"
|
||||
},
|
||||
"viewed_verified_consultant": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"display_profile",
|
||||
"verified_ambassador",
|
||||
"verified_consultant",
|
||||
"top_tier_user",
|
||||
"ai_expert",
|
||||
"viewed_verified_ambassador",
|
||||
"viewed_verified_consultant",
|
||||
"viewed_top_tier_user",
|
||||
"viewed_ai_expert"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"color",
|
||||
"initials",
|
||||
"profilePicture",
|
||||
"profileInfo"
|
||||
]
|
||||
}
|
388
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/create.json
vendored
Normal file
388
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/create.json
vendored
Normal file
|
@ -0,0 +1,388 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"custom_item_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"text_content": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"color",
|
||||
"orderindex",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_done": {
|
||||
"type": "null"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"watchers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_fg": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_bg": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"tag_fg",
|
||||
"tag_bg",
|
||||
"creator"
|
||||
]
|
||||
}
|
||||
},
|
||||
"points": {
|
||||
"type": "null"
|
||||
},
|
||||
"time_spent": {
|
||||
"type": "integer"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"type_config": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sorting": {
|
||||
"type": "string"
|
||||
},
|
||||
"options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"hide_from_guests": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"type_config",
|
||||
"date_created",
|
||||
"hide_from_guests",
|
||||
"required"
|
||||
]
|
||||
}
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sharing": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public_share_expires_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"public_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"token": {
|
||||
"type": "null"
|
||||
},
|
||||
"seo_optimized": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"public",
|
||||
"public_share_expires_on",
|
||||
"public_fields",
|
||||
"token",
|
||||
"seo_optimized"
|
||||
]
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"custom_id",
|
||||
"custom_item_id",
|
||||
"name",
|
||||
"text_content",
|
||||
"description",
|
||||
"status",
|
||||
"orderindex",
|
||||
"date_created",
|
||||
"date_updated",
|
||||
"date_closed",
|
||||
"date_done",
|
||||
"archived",
|
||||
"creator",
|
||||
"assignees",
|
||||
"group_assignees",
|
||||
"watchers",
|
||||
"checklists",
|
||||
"tags",
|
||||
"parent",
|
||||
"top_level_parent",
|
||||
"priority",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"points",
|
||||
"time_estimate",
|
||||
"time_spent",
|
||||
"custom_fields",
|
||||
"dependencies",
|
||||
"linked_tasks",
|
||||
"locations",
|
||||
"team_id",
|
||||
"url",
|
||||
"sharing",
|
||||
"permission_level",
|
||||
"list",
|
||||
"project",
|
||||
"folder",
|
||||
"space"
|
||||
]
|
||||
}
|
762
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/get.json
vendored
Normal file
762
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/get.json
vendored
Normal file
|
@ -0,0 +1,762 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_item_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"text_content": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"color",
|
||||
"orderindex",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"watchers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"checklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"unresolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "null"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
},
|
||||
"children": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date_time": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date_time": {
|
||||
"type": "null"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
},
|
||||
"children": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "number"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date_time": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date_time": {
|
||||
"type": "null"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"start_date",
|
||||
"start_date_time",
|
||||
"due_date",
|
||||
"due_date_time",
|
||||
"sent_due_date_notif",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"start_date",
|
||||
"start_date_time",
|
||||
"due_date",
|
||||
"due_date_time",
|
||||
"sent_due_date_notif",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"start_date",
|
||||
"start_date_time",
|
||||
"due_date",
|
||||
"due_date_time",
|
||||
"sent_due_date_notif",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"task_id",
|
||||
"name",
|
||||
"date_created",
|
||||
"orderindex",
|
||||
"creator",
|
||||
"resolved",
|
||||
"unresolved",
|
||||
"items"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_fg": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_bg": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"tag_fg",
|
||||
"tag_bg",
|
||||
"creator"
|
||||
]
|
||||
}
|
||||
},
|
||||
"time_spent": {
|
||||
"type": "integer"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"type_config": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sorting": {
|
||||
"type": "string"
|
||||
},
|
||||
"options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"hide_from_guests": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"type_config",
|
||||
"date_created",
|
||||
"hide_from_guests",
|
||||
"required"
|
||||
]
|
||||
}
|
||||
},
|
||||
"linked_tasks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"link_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"userid": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"task_id",
|
||||
"link_id",
|
||||
"date_created",
|
||||
"userid",
|
||||
"workspace_id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"locations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sharing": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public_share_expires_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"public_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"seo_optimized": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"public",
|
||||
"public_share_expires_on",
|
||||
"public_fields",
|
||||
"token",
|
||||
"seo_optimized"
|
||||
]
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"attachments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"source": {
|
||||
"type": "integer"
|
||||
},
|
||||
"version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"extension": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_folder": {
|
||||
"type": "null"
|
||||
},
|
||||
"mimetype": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved_comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"initials",
|
||||
"color",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"url_w_query": {
|
||||
"type": "string"
|
||||
},
|
||||
"url_w_host": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"date",
|
||||
"title",
|
||||
"type",
|
||||
"source",
|
||||
"version",
|
||||
"extension",
|
||||
"thumbnail_small",
|
||||
"thumbnail_medium",
|
||||
"thumbnail_large",
|
||||
"is_folder",
|
||||
"mimetype",
|
||||
"hidden",
|
||||
"parent_id",
|
||||
"size",
|
||||
"total_comments",
|
||||
"resolved_comments",
|
||||
"user",
|
||||
"deleted",
|
||||
"orientation",
|
||||
"url",
|
||||
"email_data",
|
||||
"workspace_id",
|
||||
"url_w_query",
|
||||
"url_w_host"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"custom_id",
|
||||
"custom_item_id",
|
||||
"name",
|
||||
"text_content",
|
||||
"description",
|
||||
"status",
|
||||
"orderindex",
|
||||
"date_created",
|
||||
"date_updated",
|
||||
"date_closed",
|
||||
"date_done",
|
||||
"archived",
|
||||
"creator",
|
||||
"assignees",
|
||||
"group_assignees",
|
||||
"watchers",
|
||||
"checklists",
|
||||
"tags",
|
||||
"parent",
|
||||
"top_level_parent",
|
||||
"priority",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"points",
|
||||
"time_estimate",
|
||||
"time_spent",
|
||||
"custom_fields",
|
||||
"dependencies",
|
||||
"linked_tasks",
|
||||
"locations",
|
||||
"team_id",
|
||||
"url",
|
||||
"sharing",
|
||||
"permission_level",
|
||||
"list",
|
||||
"project",
|
||||
"folder",
|
||||
"space",
|
||||
"attachments"
|
||||
]
|
||||
}
|
517
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/getAll.json
vendored
Normal file
517
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/getAll.json
vendored
Normal file
|
@ -0,0 +1,517 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_item_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status",
|
||||
"id",
|
||||
"color",
|
||||
"type",
|
||||
"orderindex"
|
||||
]
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"watchers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"checklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"unresolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "null"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"start_date_time": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date_time": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"start_date",
|
||||
"start_date_time",
|
||||
"due_date",
|
||||
"due_date_time",
|
||||
"sent_due_date_notif",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"task_id",
|
||||
"name",
|
||||
"date_created",
|
||||
"orderindex",
|
||||
"creator",
|
||||
"resolved",
|
||||
"unresolved",
|
||||
"items"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_fg": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_bg": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"tag_fg",
|
||||
"tag_bg",
|
||||
"creator"
|
||||
]
|
||||
}
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"type_config": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"hide_from_guests": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"type_config",
|
||||
"date_created",
|
||||
"hide_from_guests",
|
||||
"required"
|
||||
]
|
||||
}
|
||||
},
|
||||
"linked_tasks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"link_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"userid": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"task_id",
|
||||
"link_id",
|
||||
"date_created",
|
||||
"userid",
|
||||
"workspace_id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"locations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sharing": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public_share_expires_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"public_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"token": {
|
||||
"type": "null"
|
||||
},
|
||||
"seo_optimized": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"public",
|
||||
"public_share_expires_on",
|
||||
"public_fields",
|
||||
"token",
|
||||
"seo_optimized"
|
||||
]
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"custom_id",
|
||||
"custom_item_id",
|
||||
"name",
|
||||
"text_content",
|
||||
"description",
|
||||
"status",
|
||||
"orderindex",
|
||||
"date_created",
|
||||
"date_updated",
|
||||
"date_closed",
|
||||
"date_done",
|
||||
"archived",
|
||||
"creator",
|
||||
"assignees",
|
||||
"group_assignees",
|
||||
"watchers",
|
||||
"checklists",
|
||||
"tags",
|
||||
"parent",
|
||||
"top_level_parent",
|
||||
"priority",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"points",
|
||||
"time_estimate",
|
||||
"custom_fields",
|
||||
"dependencies",
|
||||
"linked_tasks",
|
||||
"locations",
|
||||
"team_id",
|
||||
"url",
|
||||
"sharing",
|
||||
"permission_level",
|
||||
"list",
|
||||
"project",
|
||||
"folder",
|
||||
"space"
|
||||
]
|
||||
}
|
673
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/update.json
vendored
Normal file
673
packages/nodes-base/nodes/ClickUp/__schema__/v1.0.0/task/update.json
vendored
Normal file
|
@ -0,0 +1,673 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_item_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"status",
|
||||
"color",
|
||||
"orderindex",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"watchers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"color",
|
||||
"initials",
|
||||
"email",
|
||||
"profilePicture"
|
||||
]
|
||||
}
|
||||
},
|
||||
"checklists": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
},
|
||||
"creator": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"unresolved": {
|
||||
"type": "integer"
|
||||
},
|
||||
"items": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"group_assignee": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent": {
|
||||
"type": "null"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"due_date": {
|
||||
"type": "null"
|
||||
},
|
||||
"sent_due_date_notif": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"orderindex",
|
||||
"assignee",
|
||||
"group_assignee",
|
||||
"resolved",
|
||||
"parent",
|
||||
"date_created",
|
||||
"children"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"task_id",
|
||||
"name",
|
||||
"date_created",
|
||||
"orderindex",
|
||||
"creator",
|
||||
"resolved",
|
||||
"unresolved",
|
||||
"items"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_fg": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_bg": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"tag_fg",
|
||||
"tag_bg",
|
||||
"creator"
|
||||
]
|
||||
}
|
||||
},
|
||||
"points": {
|
||||
"type": "null"
|
||||
},
|
||||
"time_spent": {
|
||||
"type": "integer"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"type_config": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"options": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"orderindex": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"color"
|
||||
]
|
||||
}
|
||||
},
|
||||
"sorting": {
|
||||
"type": "string"
|
||||
},
|
||||
"new_drop_down": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"hide_from_guests": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"type_config",
|
||||
"date_created",
|
||||
"hide_from_guests",
|
||||
"required"
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"depends_on": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"userid": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"chain_id": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"task_id",
|
||||
"depends_on",
|
||||
"type",
|
||||
"date_created",
|
||||
"userid",
|
||||
"workspace_id",
|
||||
"chain_id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"linked_tasks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"task_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"link_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"userid": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"task_id",
|
||||
"link_id",
|
||||
"date_created",
|
||||
"userid",
|
||||
"workspace_id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"locations": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
}
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sharing": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"public": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public_share_expires_on": {
|
||||
"type": "null"
|
||||
},
|
||||
"public_fields": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"token": {
|
||||
"type": "null"
|
||||
},
|
||||
"seo_optimized": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"public",
|
||||
"public_share_expires_on",
|
||||
"public_fields",
|
||||
"token",
|
||||
"seo_optimized"
|
||||
]
|
||||
},
|
||||
"permission_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"list": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"project": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"folder": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"access": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"hidden",
|
||||
"access"
|
||||
]
|
||||
},
|
||||
"space": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"attachments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"source": {
|
||||
"type": "integer"
|
||||
},
|
||||
"version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"extension": {
|
||||
"type": "string"
|
||||
},
|
||||
"thumbnail_small": {
|
||||
"type": "string"
|
||||
},
|
||||
"thumbnail_medium": {
|
||||
"type": "string"
|
||||
},
|
||||
"thumbnail_large": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_folder": {
|
||||
"type": "null"
|
||||
},
|
||||
"mimetype": {
|
||||
"type": "string"
|
||||
},
|
||||
"hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"parent_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolved_comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"initials": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"initials",
|
||||
"color",
|
||||
"profilePicture"
|
||||
]
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"email_data": {
|
||||
"type": "null"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"url_w_query": {
|
||||
"type": "string"
|
||||
},
|
||||
"url_w_host": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"date",
|
||||
"title",
|
||||
"type",
|
||||
"source",
|
||||
"version",
|
||||
"extension",
|
||||
"thumbnail_small",
|
||||
"thumbnail_medium",
|
||||
"thumbnail_large",
|
||||
"is_folder",
|
||||
"mimetype",
|
||||
"hidden",
|
||||
"parent_id",
|
||||
"size",
|
||||
"total_comments",
|
||||
"resolved_comments",
|
||||
"user",
|
||||
"deleted",
|
||||
"orientation",
|
||||
"url",
|
||||
"email_data",
|
||||
"workspace_id",
|
||||
"url_w_query",
|
||||
"url_w_host"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"custom_id",
|
||||
"custom_item_id",
|
||||
"name",
|
||||
"text_content",
|
||||
"description",
|
||||
"status",
|
||||
"orderindex",
|
||||
"date_created",
|
||||
"date_updated",
|
||||
"date_closed",
|
||||
"date_done",
|
||||
"archived",
|
||||
"creator",
|
||||
"assignees",
|
||||
"group_assignees",
|
||||
"watchers",
|
||||
"checklists",
|
||||
"tags",
|
||||
"parent",
|
||||
"priority",
|
||||
"due_date",
|
||||
"start_date",
|
||||
"points",
|
||||
"time_estimate",
|
||||
"time_spent",
|
||||
"custom_fields",
|
||||
"dependencies",
|
||||
"linked_tasks",
|
||||
"locations",
|
||||
"team_id",
|
||||
"url",
|
||||
"sharing",
|
||||
"permission_level",
|
||||
"list",
|
||||
"project",
|
||||
"folder",
|
||||
"space"
|
||||
]
|
||||
}
|
156
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/getAll.json
vendored
Normal file
156
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/project/getAll.json
vendored
Normal file
|
@ -0,0 +1,156 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"hourlyRate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"amount": {
|
||||
"type": "integer"
|
||||
},
|
||||
"currency": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"amount",
|
||||
"currency"
|
||||
]
|
||||
},
|
||||
"clientId": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaceId": {
|
||||
"type": "string"
|
||||
},
|
||||
"billable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"memberships": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"userId": {
|
||||
"type": "string"
|
||||
},
|
||||
"hourlyRate": {
|
||||
"type": "null"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"timeEstimate": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"estimate": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"resetOption": {
|
||||
"type": "null"
|
||||
},
|
||||
"active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"includeNonBillable": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"estimate",
|
||||
"type",
|
||||
"resetOption",
|
||||
"active",
|
||||
"includeNonBillable"
|
||||
]
|
||||
},
|
||||
"estimateReset": {
|
||||
"type": "null"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
164
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/user/getAll.json
vendored
Normal file
164
packages/nodes-base/nodes/Clockify/__schema__/v1.0.0/user/getAll.json
vendored
Normal file
|
@ -0,0 +1,164 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"activeWorkspace": {
|
||||
"type": "string"
|
||||
},
|
||||
"defaultWorkspace": {
|
||||
"type": "string"
|
||||
},
|
||||
"settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"weekStart": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeZone": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeFormat": {
|
||||
"type": "string"
|
||||
},
|
||||
"dateFormat": {
|
||||
"type": "string"
|
||||
},
|
||||
"sendNewsletter": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"weeklyUpdates": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"longRunning": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scheduledReports": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"approval": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pto": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"alerts": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reminders": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"timeTrackingManual": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"summaryReportSettings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"group": {
|
||||
"type": "string"
|
||||
},
|
||||
"subgroup": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"group",
|
||||
"subgroup"
|
||||
]
|
||||
},
|
||||
"isCompactViewOn": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"dashboardSelection": {
|
||||
"type": "string"
|
||||
},
|
||||
"dashboardViewType": {
|
||||
"type": "string"
|
||||
},
|
||||
"dashboardPinToTop": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"collapseAllProjectLists": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"groupSimilarEntriesDisabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"myStartOfDay": {
|
||||
"type": "string"
|
||||
},
|
||||
"projectPickerTaskFilter": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lang": {
|
||||
"type": "string"
|
||||
},
|
||||
"multiFactorEnabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"theme": {
|
||||
"type": "string"
|
||||
},
|
||||
"scheduling": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"onboarding": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"showOnlyWorkingDays": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"weekStart",
|
||||
"timeZone",
|
||||
"timeFormat",
|
||||
"dateFormat",
|
||||
"sendNewsletter",
|
||||
"weeklyUpdates",
|
||||
"longRunning",
|
||||
"scheduledReports",
|
||||
"approval",
|
||||
"pto",
|
||||
"alerts",
|
||||
"reminders",
|
||||
"timeTrackingManual",
|
||||
"summaryReportSettings",
|
||||
"isCompactViewOn",
|
||||
"dashboardSelection",
|
||||
"dashboardViewType",
|
||||
"dashboardPinToTop",
|
||||
"projectListCollapse",
|
||||
"collapseAllProjectLists",
|
||||
"groupSimilarEntriesDisabled",
|
||||
"myStartOfDay",
|
||||
"projectPickerTaskFilter",
|
||||
"lang",
|
||||
"multiFactorEnabled",
|
||||
"theme",
|
||||
"scheduling",
|
||||
"onboarding",
|
||||
"showOnlyWorkingDays"
|
||||
]
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"email",
|
||||
"name",
|
||||
"memberships",
|
||||
"profilePicture",
|
||||
"activeWorkspace",
|
||||
"defaultWorkspace",
|
||||
"settings",
|
||||
"status",
|
||||
"customFields"
|
||||
]
|
||||
}
|
11
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/table/getAllRows.json
vendored
Normal file
11
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/table/getAllRows.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
146
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/table/getRow.json
vendored
Normal file
146
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/table/getRow.json
vendored
Normal file
|
@ -0,0 +1,146 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"Niche Name": {
|
||||
"type": "string"
|
||||
},
|
||||
"ONB_Response_Guildelines": {
|
||||
"type": "string"
|
||||
},
|
||||
"ONB_Style": {
|
||||
"type": "string"
|
||||
},
|
||||
"Onb_Identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"Onb_Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Dbr_Identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"Dbr_Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Onb_Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Onb_Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"DBR_Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"DBR_Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"Appointments_Identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"Confirmation_Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Confirmation_Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Reminders_Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Reminders 1 Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Reminders 2 Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"No Show identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"No Show Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"No Show Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Cold Call Identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"Cold Call Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Cold Calling Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Cold Calling Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"Cold Calling Response Guidelines": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Identity": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Response Guidlines": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"ONB_Specifics": {
|
||||
"type": "string"
|
||||
},
|
||||
"Context": {
|
||||
"type": "string"
|
||||
},
|
||||
"Onb_Example": {
|
||||
"type": "string"
|
||||
},
|
||||
"Call Later Task": {
|
||||
"type": "string"
|
||||
},
|
||||
"Call Later Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"Call Later Examples": {
|
||||
"type": "string"
|
||||
},
|
||||
"Call Later DBR Steps": {
|
||||
"type": "string"
|
||||
},
|
||||
"DBR_Example": {
|
||||
"type": "string"
|
||||
},
|
||||
"Appointments Example": {
|
||||
"type": "string"
|
||||
},
|
||||
"Appointments_Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Specifics New": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Specifics Past": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Examples": {
|
||||
"type": "string"
|
||||
},
|
||||
"Inbound Context": {
|
||||
"type": "string"
|
||||
},
|
||||
"Voice ID": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
65
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/view/getAllViewRows.json
vendored
Normal file
65
packages/nodes-base/nodes/Coda/__schema__/v1.1.0/view/getAllViewRows.json
vendored
Normal file
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"Contract ID": {
|
||||
"type": "string"
|
||||
},
|
||||
"Contract Link": {
|
||||
"type": "string"
|
||||
},
|
||||
"Summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"over4MB?": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"fileSize": {
|
||||
"type": "string"
|
||||
},
|
||||
"Summarize": {
|
||||
"type": "string"
|
||||
},
|
||||
"contractTextOutput": {
|
||||
"type": "string"
|
||||
},
|
||||
"extractText": {
|
||||
"type": "string"
|
||||
},
|
||||
"lastUpdated": {
|
||||
"type": "string"
|
||||
},
|
||||
"Status Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"Contract Signature Date": {
|
||||
"type": "string"
|
||||
},
|
||||
"Processing Organization": {
|
||||
"type": "string"
|
||||
},
|
||||
"Contract Notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"Full Deletion Required?": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"IT Addendum?": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"Do not use name/logo?": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"Created on": {
|
||||
"type": "string"
|
||||
},
|
||||
"rowID": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
]
|
||||
}
|
180
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/get.json
vendored
Normal file
180
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/get.json
vendored
Normal file
|
@ -0,0 +1,180 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_slug": {
|
||||
"type": "string"
|
||||
},
|
||||
"platforms": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"detail_platforms": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"decimal_place": {
|
||||
"type": "null"
|
||||
},
|
||||
"contract_address": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"decimal_place",
|
||||
"contract_address"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"block_time_in_minutes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"categories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"preview_listing": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"additional_notices": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"description": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"en": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"en"
|
||||
]
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"homepage": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"whitepaper": {
|
||||
"type": "string"
|
||||
},
|
||||
"official_forum_url": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"chat_url": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"twitter_screen_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"github": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"github",
|
||||
"bitbucket"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"homepage",
|
||||
"whitepaper",
|
||||
"blockchain_site",
|
||||
"official_forum_url",
|
||||
"chat_url",
|
||||
"announcement_url",
|
||||
"twitter_screen_name",
|
||||
"facebook_username",
|
||||
"bitcointalk_thread_identifier",
|
||||
"telegram_channel_identifier",
|
||||
"subreddit_url",
|
||||
"repos_url"
|
||||
]
|
||||
},
|
||||
"image": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"thumb": {
|
||||
"type": "string"
|
||||
},
|
||||
"small": {
|
||||
"type": "string"
|
||||
},
|
||||
"large": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"thumb",
|
||||
"small",
|
||||
"large"
|
||||
]
|
||||
},
|
||||
"watchlist_portfolio_users": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"symbol",
|
||||
"name",
|
||||
"web_slug",
|
||||
"asset_platform_id",
|
||||
"platforms",
|
||||
"detail_platforms",
|
||||
"block_time_in_minutes",
|
||||
"hashing_algorithm",
|
||||
"categories",
|
||||
"preview_listing",
|
||||
"public_notice",
|
||||
"additional_notices",
|
||||
"description",
|
||||
"links",
|
||||
"image",
|
||||
"country_origin",
|
||||
"genesis_date",
|
||||
"sentiment_votes_up_percentage",
|
||||
"sentiment_votes_down_percentage",
|
||||
"watchlist_portfolio_users",
|
||||
"market_cap_rank",
|
||||
"status_updates",
|
||||
"last_updated"
|
||||
]
|
||||
}
|
19
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/getAll.json
vendored
Normal file
19
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/getAll.json
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"symbol",
|
||||
"name"
|
||||
]
|
||||
}
|
781
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/history.json
vendored
Normal file
781
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/history.json
vendored
Normal file
|
@ -0,0 +1,781 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"localization": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"en": {
|
||||
"type": "string"
|
||||
},
|
||||
"de": {
|
||||
"type": "string"
|
||||
},
|
||||
"es": {
|
||||
"type": "string"
|
||||
},
|
||||
"fr": {
|
||||
"type": "string"
|
||||
},
|
||||
"it": {
|
||||
"type": "string"
|
||||
},
|
||||
"pl": {
|
||||
"type": "string"
|
||||
},
|
||||
"ro": {
|
||||
"type": "string"
|
||||
},
|
||||
"hu": {
|
||||
"type": "string"
|
||||
},
|
||||
"nl": {
|
||||
"type": "string"
|
||||
},
|
||||
"pt": {
|
||||
"type": "string"
|
||||
},
|
||||
"sv": {
|
||||
"type": "string"
|
||||
},
|
||||
"vi": {
|
||||
"type": "string"
|
||||
},
|
||||
"tr": {
|
||||
"type": "string"
|
||||
},
|
||||
"ru": {
|
||||
"type": "string"
|
||||
},
|
||||
"ja": {
|
||||
"type": "string"
|
||||
},
|
||||
"zh": {
|
||||
"type": "string"
|
||||
},
|
||||
"zh-tw": {
|
||||
"type": "string"
|
||||
},
|
||||
"ko": {
|
||||
"type": "string"
|
||||
},
|
||||
"ar": {
|
||||
"type": "string"
|
||||
},
|
||||
"th": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"cs": {
|
||||
"type": "string"
|
||||
},
|
||||
"da": {
|
||||
"type": "string"
|
||||
},
|
||||
"el": {
|
||||
"type": "string"
|
||||
},
|
||||
"hi": {
|
||||
"type": "string"
|
||||
},
|
||||
"no": {
|
||||
"type": "string"
|
||||
},
|
||||
"sk": {
|
||||
"type": "string"
|
||||
},
|
||||
"uk": {
|
||||
"type": "string"
|
||||
},
|
||||
"he": {
|
||||
"type": "string"
|
||||
},
|
||||
"fi": {
|
||||
"type": "string"
|
||||
},
|
||||
"bg": {
|
||||
"type": "string"
|
||||
},
|
||||
"hr": {
|
||||
"type": "string"
|
||||
},
|
||||
"lt": {
|
||||
"type": "string"
|
||||
},
|
||||
"sl": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"en",
|
||||
"de",
|
||||
"es",
|
||||
"fr",
|
||||
"it",
|
||||
"pl",
|
||||
"ro",
|
||||
"hu",
|
||||
"nl",
|
||||
"pt",
|
||||
"sv",
|
||||
"vi",
|
||||
"tr",
|
||||
"ru",
|
||||
"ja",
|
||||
"zh",
|
||||
"zh-tw",
|
||||
"ko",
|
||||
"ar",
|
||||
"th",
|
||||
"id",
|
||||
"cs",
|
||||
"da",
|
||||
"el",
|
||||
"hi",
|
||||
"no",
|
||||
"sk",
|
||||
"uk",
|
||||
"he",
|
||||
"fi",
|
||||
"bg",
|
||||
"hr",
|
||||
"lt",
|
||||
"sl"
|
||||
]
|
||||
},
|
||||
"image": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"thumb": {
|
||||
"type": "string"
|
||||
},
|
||||
"small": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"thumb",
|
||||
"small"
|
||||
]
|
||||
},
|
||||
"market_data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"current_price": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"aed": {
|
||||
"type": "number"
|
||||
},
|
||||
"ars": {
|
||||
"type": "number"
|
||||
},
|
||||
"aud": {
|
||||
"type": "number"
|
||||
},
|
||||
"bch": {
|
||||
"type": "number"
|
||||
},
|
||||
"bdt": {
|
||||
"type": "number"
|
||||
},
|
||||
"bhd": {
|
||||
"type": "number"
|
||||
},
|
||||
"bmd": {
|
||||
"type": "number"
|
||||
},
|
||||
"bnb": {
|
||||
"type": "number"
|
||||
},
|
||||
"brl": {
|
||||
"type": "number"
|
||||
},
|
||||
"cad": {
|
||||
"type": "number"
|
||||
},
|
||||
"chf": {
|
||||
"type": "number"
|
||||
},
|
||||
"clp": {
|
||||
"type": "number"
|
||||
},
|
||||
"cny": {
|
||||
"type": "number"
|
||||
},
|
||||
"czk": {
|
||||
"type": "number"
|
||||
},
|
||||
"dkk": {
|
||||
"type": "number"
|
||||
},
|
||||
"dot": {
|
||||
"type": "number"
|
||||
},
|
||||
"eos": {
|
||||
"type": "number"
|
||||
},
|
||||
"eth": {
|
||||
"type": "number"
|
||||
},
|
||||
"eur": {
|
||||
"type": "number"
|
||||
},
|
||||
"gbp": {
|
||||
"type": "number"
|
||||
},
|
||||
"gel": {
|
||||
"type": "number"
|
||||
},
|
||||
"hkd": {
|
||||
"type": "number"
|
||||
},
|
||||
"huf": {
|
||||
"type": "number"
|
||||
},
|
||||
"idr": {
|
||||
"type": "number"
|
||||
},
|
||||
"ils": {
|
||||
"type": "number"
|
||||
},
|
||||
"inr": {
|
||||
"type": "number"
|
||||
},
|
||||
"jpy": {
|
||||
"type": "number"
|
||||
},
|
||||
"krw": {
|
||||
"type": "number"
|
||||
},
|
||||
"kwd": {
|
||||
"type": "number"
|
||||
},
|
||||
"lkr": {
|
||||
"type": "number"
|
||||
},
|
||||
"ltc": {
|
||||
"type": "number"
|
||||
},
|
||||
"mmk": {
|
||||
"type": "number"
|
||||
},
|
||||
"mxn": {
|
||||
"type": "number"
|
||||
},
|
||||
"myr": {
|
||||
"type": "number"
|
||||
},
|
||||
"ngn": {
|
||||
"type": "number"
|
||||
},
|
||||
"nok": {
|
||||
"type": "number"
|
||||
},
|
||||
"nzd": {
|
||||
"type": "number"
|
||||
},
|
||||
"php": {
|
||||
"type": "number"
|
||||
},
|
||||
"pkr": {
|
||||
"type": "number"
|
||||
},
|
||||
"pln": {
|
||||
"type": "number"
|
||||
},
|
||||
"rub": {
|
||||
"type": "number"
|
||||
},
|
||||
"sar": {
|
||||
"type": "number"
|
||||
},
|
||||
"sek": {
|
||||
"type": "number"
|
||||
},
|
||||
"sgd": {
|
||||
"type": "number"
|
||||
},
|
||||
"thb": {
|
||||
"type": "number"
|
||||
},
|
||||
"try": {
|
||||
"type": "number"
|
||||
},
|
||||
"twd": {
|
||||
"type": "number"
|
||||
},
|
||||
"uah": {
|
||||
"type": "number"
|
||||
},
|
||||
"usd": {
|
||||
"type": "number"
|
||||
},
|
||||
"vef": {
|
||||
"type": "number"
|
||||
},
|
||||
"vnd": {
|
||||
"type": "number"
|
||||
},
|
||||
"xag": {
|
||||
"type": "number"
|
||||
},
|
||||
"xau": {
|
||||
"type": "number"
|
||||
},
|
||||
"xdr": {
|
||||
"type": "number"
|
||||
},
|
||||
"xlm": {
|
||||
"type": "number"
|
||||
},
|
||||
"xrp": {
|
||||
"type": "number"
|
||||
},
|
||||
"yfi": {
|
||||
"type": "number"
|
||||
},
|
||||
"zar": {
|
||||
"type": "number"
|
||||
},
|
||||
"bits": {
|
||||
"type": "number"
|
||||
},
|
||||
"link": {
|
||||
"type": "number"
|
||||
},
|
||||
"sats": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"aed",
|
||||
"ars",
|
||||
"aud",
|
||||
"bch",
|
||||
"bdt",
|
||||
"bhd",
|
||||
"bmd",
|
||||
"bnb",
|
||||
"brl",
|
||||
"btc",
|
||||
"cad",
|
||||
"chf",
|
||||
"clp",
|
||||
"cny",
|
||||
"czk",
|
||||
"dkk",
|
||||
"dot",
|
||||
"eos",
|
||||
"eth",
|
||||
"eur",
|
||||
"gbp",
|
||||
"gel",
|
||||
"hkd",
|
||||
"huf",
|
||||
"idr",
|
||||
"ils",
|
||||
"inr",
|
||||
"jpy",
|
||||
"krw",
|
||||
"kwd",
|
||||
"lkr",
|
||||
"ltc",
|
||||
"mmk",
|
||||
"mxn",
|
||||
"myr",
|
||||
"ngn",
|
||||
"nok",
|
||||
"nzd",
|
||||
"php",
|
||||
"pkr",
|
||||
"pln",
|
||||
"rub",
|
||||
"sar",
|
||||
"sek",
|
||||
"sgd",
|
||||
"thb",
|
||||
"try",
|
||||
"twd",
|
||||
"uah",
|
||||
"usd",
|
||||
"vef",
|
||||
"vnd",
|
||||
"xag",
|
||||
"xau",
|
||||
"xdr",
|
||||
"xlm",
|
||||
"xrp",
|
||||
"yfi",
|
||||
"zar",
|
||||
"bits",
|
||||
"link",
|
||||
"sats"
|
||||
]
|
||||
},
|
||||
"total_volume": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"aed": {
|
||||
"type": "number"
|
||||
},
|
||||
"aud": {
|
||||
"type": "number"
|
||||
},
|
||||
"bch": {
|
||||
"type": "number"
|
||||
},
|
||||
"bdt": {
|
||||
"type": "number"
|
||||
},
|
||||
"bhd": {
|
||||
"type": "number"
|
||||
},
|
||||
"bmd": {
|
||||
"type": "number"
|
||||
},
|
||||
"bnb": {
|
||||
"type": "number"
|
||||
},
|
||||
"brl": {
|
||||
"type": "number"
|
||||
},
|
||||
"btc": {
|
||||
"type": "number"
|
||||
},
|
||||
"cad": {
|
||||
"type": "number"
|
||||
},
|
||||
"chf": {
|
||||
"type": "number"
|
||||
},
|
||||
"clp": {
|
||||
"type": "number"
|
||||
},
|
||||
"cny": {
|
||||
"type": "number"
|
||||
},
|
||||
"czk": {
|
||||
"type": "number"
|
||||
},
|
||||
"dkk": {
|
||||
"type": "number"
|
||||
},
|
||||
"dot": {
|
||||
"type": "number"
|
||||
},
|
||||
"eos": {
|
||||
"type": "number"
|
||||
},
|
||||
"eth": {
|
||||
"type": "number"
|
||||
},
|
||||
"eur": {
|
||||
"type": "number"
|
||||
},
|
||||
"gbp": {
|
||||
"type": "number"
|
||||
},
|
||||
"gel": {
|
||||
"type": "number"
|
||||
},
|
||||
"hkd": {
|
||||
"type": "number"
|
||||
},
|
||||
"huf": {
|
||||
"type": "number"
|
||||
},
|
||||
"ils": {
|
||||
"type": "number"
|
||||
},
|
||||
"inr": {
|
||||
"type": "number"
|
||||
},
|
||||
"jpy": {
|
||||
"type": "number"
|
||||
},
|
||||
"krw": {
|
||||
"type": "number"
|
||||
},
|
||||
"kwd": {
|
||||
"type": "number"
|
||||
},
|
||||
"lkr": {
|
||||
"type": "number"
|
||||
},
|
||||
"ltc": {
|
||||
"type": "number"
|
||||
},
|
||||
"mmk": {
|
||||
"type": "number"
|
||||
},
|
||||
"mxn": {
|
||||
"type": "number"
|
||||
},
|
||||
"myr": {
|
||||
"type": "number"
|
||||
},
|
||||
"ngn": {
|
||||
"type": "number"
|
||||
},
|
||||
"nok": {
|
||||
"type": "number"
|
||||
},
|
||||
"nzd": {
|
||||
"type": "number"
|
||||
},
|
||||
"php": {
|
||||
"type": "number"
|
||||
},
|
||||
"pkr": {
|
||||
"type": "number"
|
||||
},
|
||||
"pln": {
|
||||
"type": "number"
|
||||
},
|
||||
"rub": {
|
||||
"type": "number"
|
||||
},
|
||||
"sar": {
|
||||
"type": "number"
|
||||
},
|
||||
"sek": {
|
||||
"type": "number"
|
||||
},
|
||||
"sgd": {
|
||||
"type": "number"
|
||||
},
|
||||
"thb": {
|
||||
"type": "number"
|
||||
},
|
||||
"try": {
|
||||
"type": "number"
|
||||
},
|
||||
"twd": {
|
||||
"type": "number"
|
||||
},
|
||||
"uah": {
|
||||
"type": "number"
|
||||
},
|
||||
"usd": {
|
||||
"type": "number"
|
||||
},
|
||||
"vef": {
|
||||
"type": "number"
|
||||
},
|
||||
"xag": {
|
||||
"type": "number"
|
||||
},
|
||||
"xau": {
|
||||
"type": "number"
|
||||
},
|
||||
"xdr": {
|
||||
"type": "number"
|
||||
},
|
||||
"xlm": {
|
||||
"type": "number"
|
||||
},
|
||||
"xrp": {
|
||||
"type": "number"
|
||||
},
|
||||
"yfi": {
|
||||
"type": "number"
|
||||
},
|
||||
"zar": {
|
||||
"type": "number"
|
||||
},
|
||||
"bits": {
|
||||
"type": "number"
|
||||
},
|
||||
"link": {
|
||||
"type": "number"
|
||||
},
|
||||
"sats": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"aed",
|
||||
"ars",
|
||||
"aud",
|
||||
"bch",
|
||||
"bdt",
|
||||
"bhd",
|
||||
"bmd",
|
||||
"bnb",
|
||||
"brl",
|
||||
"btc",
|
||||
"cad",
|
||||
"chf",
|
||||
"clp",
|
||||
"cny",
|
||||
"czk",
|
||||
"dkk",
|
||||
"dot",
|
||||
"eos",
|
||||
"eth",
|
||||
"eur",
|
||||
"gbp",
|
||||
"gel",
|
||||
"hkd",
|
||||
"huf",
|
||||
"idr",
|
||||
"ils",
|
||||
"inr",
|
||||
"jpy",
|
||||
"krw",
|
||||
"kwd",
|
||||
"lkr",
|
||||
"ltc",
|
||||
"mmk",
|
||||
"mxn",
|
||||
"myr",
|
||||
"ngn",
|
||||
"nok",
|
||||
"nzd",
|
||||
"php",
|
||||
"pkr",
|
||||
"pln",
|
||||
"rub",
|
||||
"sar",
|
||||
"sek",
|
||||
"sgd",
|
||||
"thb",
|
||||
"try",
|
||||
"twd",
|
||||
"uah",
|
||||
"usd",
|
||||
"vef",
|
||||
"vnd",
|
||||
"xag",
|
||||
"xau",
|
||||
"xdr",
|
||||
"xlm",
|
||||
"xrp",
|
||||
"yfi",
|
||||
"zar",
|
||||
"bits",
|
||||
"link",
|
||||
"sats"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"current_price",
|
||||
"market_cap",
|
||||
"total_volume"
|
||||
]
|
||||
},
|
||||
"community_data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"facebook_likes": {
|
||||
"type": "null"
|
||||
},
|
||||
"reddit_average_posts_48h": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reddit_average_comments_48h": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reddit_subscribers": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"facebook_likes",
|
||||
"twitter_followers",
|
||||
"reddit_average_posts_48h",
|
||||
"reddit_average_comments_48h",
|
||||
"reddit_subscribers",
|
||||
"reddit_accounts_active_48h"
|
||||
]
|
||||
},
|
||||
"developer_data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"forks": {
|
||||
"type": "null"
|
||||
},
|
||||
"stars": {
|
||||
"type": "null"
|
||||
},
|
||||
"subscribers": {
|
||||
"type": "null"
|
||||
},
|
||||
"total_issues": {
|
||||
"type": "null"
|
||||
},
|
||||
"closed_issues": {
|
||||
"type": "null"
|
||||
},
|
||||
"pull_requests_merged": {
|
||||
"type": "null"
|
||||
},
|
||||
"pull_request_contributors": {
|
||||
"type": "null"
|
||||
},
|
||||
"code_additions_deletions_4_weeks": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"additions": {
|
||||
"type": "null"
|
||||
},
|
||||
"deletions": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"additions",
|
||||
"deletions"
|
||||
]
|
||||
},
|
||||
"commit_count_4_weeks": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"forks",
|
||||
"stars",
|
||||
"subscribers",
|
||||
"total_issues",
|
||||
"closed_issues",
|
||||
"pull_requests_merged",
|
||||
"pull_request_contributors",
|
||||
"code_additions_deletions_4_weeks",
|
||||
"commit_count_4_weeks"
|
||||
]
|
||||
},
|
||||
"public_interest_stats": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"alexa_rank": {
|
||||
"type": "null"
|
||||
},
|
||||
"bing_matches": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"alexa_rank",
|
||||
"bing_matches"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"symbol",
|
||||
"name",
|
||||
"image"
|
||||
]
|
||||
}
|
78
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/market.json
vendored
Normal file
78
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/market.json
vendored
Normal file
|
@ -0,0 +1,78 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"symbol": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"image": {
|
||||
"type": "string"
|
||||
},
|
||||
"market_cap": {
|
||||
"type": "integer"
|
||||
},
|
||||
"market_cap_rank": {
|
||||
"type": "integer"
|
||||
},
|
||||
"fully_diluted_valuation": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_volume": {
|
||||
"type": "integer"
|
||||
},
|
||||
"market_cap_change_percentage_24h": {
|
||||
"type": "number"
|
||||
},
|
||||
"ath_change_percentage": {
|
||||
"type": "number"
|
||||
},
|
||||
"ath_date": {
|
||||
"type": "string"
|
||||
},
|
||||
"atl": {
|
||||
"type": "number"
|
||||
},
|
||||
"atl_change_percentage": {
|
||||
"type": "number"
|
||||
},
|
||||
"atl_date": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_updated": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"symbol",
|
||||
"name",
|
||||
"image",
|
||||
"current_price",
|
||||
"market_cap",
|
||||
"market_cap_rank",
|
||||
"fully_diluted_valuation",
|
||||
"total_volume",
|
||||
"high_24h",
|
||||
"low_24h",
|
||||
"price_change_24h",
|
||||
"price_change_percentage_24h",
|
||||
"market_cap_change_24h",
|
||||
"market_cap_change_percentage_24h",
|
||||
"circulating_supply",
|
||||
"total_supply",
|
||||
"max_supply",
|
||||
"ath",
|
||||
"ath_change_percentage",
|
||||
"ath_date",
|
||||
"atl",
|
||||
"atl_change_percentage",
|
||||
"atl_date",
|
||||
"roi",
|
||||
"last_updated"
|
||||
]
|
||||
}
|
20
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/marketChart.json
vendored
Normal file
20
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/marketChart.json
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time": {
|
||||
"type": "string"
|
||||
},
|
||||
"price": {
|
||||
"type": "number"
|
||||
},
|
||||
"totalVolume": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"time",
|
||||
"price",
|
||||
"marketCaps",
|
||||
"totalVolume"
|
||||
]
|
||||
}
|
16
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/price.json
vendored
Normal file
16
packages/nodes-base/nodes/CoinGecko/__schema__/v1.0.0/coin/price.json
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"nacho-the-kat": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"usd": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"usd"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
14
packages/nodes-base/nodes/Contentful/__schema__/v1.0.0/entry/getAll.json
vendored
Normal file
14
packages/nodes-base/nodes/Contentful/__schema__/v1.0.0/entry/getAll.json
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"code": {
|
||||
"type": "string"
|
||||
},
|
||||
"inventoryStatus": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
8
packages/nodes-base/nodes/CustomerIo/__schema__/v1.0.0/customer/upsert.json
vendored
Normal file
8
packages/nodes-base/nodes/CustomerIo/__schema__/v1.0.0/customer/upsert.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
8
packages/nodes-base/nodes/CustomerIo/__schema__/v1.0.0/event/track.json
vendored
Normal file
8
packages/nodes-base/nodes/CustomerIo/__schema__/v1.0.0/event/track.json
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"success": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
15
packages/nodes-base/nodes/DeepL/__schema__/v1.0.0/language/translate.json
vendored
Normal file
15
packages/nodes-base/nodes/DeepL/__schema__/v1.0.0/language/translate.json
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"detected_source_language": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"detected_source_language",
|
||||
"text"
|
||||
]
|
||||
}
|
208
packages/nodes-base/nodes/Dhl/__schema__/v1.0.0/shipment/get.json
vendored
Normal file
208
packages/nodes-base/nodes/Dhl/__schema__/v1.0.0/shipment/get.json
vendored
Normal file
|
@ -0,0 +1,208 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"service": {
|
||||
"type": "string"
|
||||
},
|
||||
"origin": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"address": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"countryCode": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"countryCode"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"address"
|
||||
]
|
||||
},
|
||||
"destination": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"address": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"countryCode": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"countryCode"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"address"
|
||||
]
|
||||
},
|
||||
"status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"statusCode": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"statusDetailed": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"remark": {
|
||||
"type": "string"
|
||||
},
|
||||
"location": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"address": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"addressLocality": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"addressLocality"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"address"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"timestamp",
|
||||
"statusCode",
|
||||
"status",
|
||||
"description"
|
||||
]
|
||||
},
|
||||
"serviceUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"returnFlag": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"details": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"product": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"productName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"productName"
|
||||
]
|
||||
},
|
||||
"proofOfDeliverySignedAvailable": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"totalNumberOfPieces": {
|
||||
"type": "integer"
|
||||
},
|
||||
"pieceIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"weight": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"unitText": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"product",
|
||||
"proofOfDeliverySignedAvailable",
|
||||
"totalNumberOfPieces",
|
||||
"weight"
|
||||
]
|
||||
},
|
||||
"events": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"timestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
"statusCode": {
|
||||
"type": "string"
|
||||
},
|
||||
"status": {
|
||||
"type": "string"
|
||||
},
|
||||
"statusDetailed": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"remark": {
|
||||
"type": "string"
|
||||
},
|
||||
"location": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"address": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"addressLocality": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"addressLocality"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"address"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"timestamp",
|
||||
"statusCode",
|
||||
"status",
|
||||
"description"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"service",
|
||||
"origin",
|
||||
"destination",
|
||||
"status",
|
||||
"details",
|
||||
"events"
|
||||
]
|
||||
}
|
32
packages/nodes-base/nodes/Discord/__schema__/v2.0.0/channel/create.json
vendored
Normal file
32
packages/nodes-base/nodes/Discord/__schema__/v2.0.0/channel/create.json
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_message_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"flags": {
|
||||
"type": "integer"
|
||||
},
|
||||
"guild_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"rate_limit_per_user": {
|
||||
"type": "integer"
|
||||
},
|
||||
"position": {
|
||||
"type": "integer"
|
||||
},
|
||||
"nsfw": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
55
packages/nodes-base/nodes/Discord/__schema__/v2.0.0/channel/get.json
vendored
Normal file
55
packages/nodes-base/nodes/Discord/__schema__/v2.0.0/channel/get.json
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"flags": {
|
||||
"type": "integer"
|
||||
},
|
||||
"guild_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"rate_limit_per_user": {
|
||||
"type": "integer"
|
||||
},
|
||||
"position": {
|
||||
"type": "integer"
|
||||
},
|
||||
"permission_overwrites": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"allow": {
|
||||
"type": "string"
|
||||
},
|
||||
"deny": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"type",
|
||||
"allow",
|
||||
"deny"
|
||||
]
|
||||
}
|
||||
},
|
||||
"nsfw": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue