mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
125
packages/nodes-base/nodes/Keap/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
125
packages/nodes-base/nodes/Keap/__schema__/v1.0.0/contact/getAll.json
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"email_opted_in": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"date_created": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_updated": {
|
||||
"type": "string"
|
||||
},
|
||||
"ScoreValue": {
|
||||
"type": "null"
|
||||
},
|
||||
"last_updated_utc_millis": {
|
||||
"type": "integer"
|
||||
},
|
||||
"email_addresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"email",
|
||||
"field"
|
||||
]
|
||||
}
|
||||
},
|
||||
"addresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"line1": {
|
||||
"type": "string"
|
||||
},
|
||||
"locality": {
|
||||
"type": "string"
|
||||
},
|
||||
"region": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
},
|
||||
"postal_code": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"line1",
|
||||
"line2",
|
||||
"locality",
|
||||
"region",
|
||||
"field",
|
||||
"postal_code",
|
||||
"zip_code",
|
||||
"zip_four",
|
||||
"country_code"
|
||||
]
|
||||
}
|
||||
},
|
||||
"phone_numbers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"number": {
|
||||
"type": "string"
|
||||
},
|
||||
"field": {
|
||||
"type": "string"
|
||||
},
|
||||
"number_e164": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"number",
|
||||
"extension",
|
||||
"field",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"given_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"family_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"tag_ids",
|
||||
"id",
|
||||
"company",
|
||||
"email_opted_in",
|
||||
"email_status",
|
||||
"date_created",
|
||||
"last_updated",
|
||||
"ScoreValue",
|
||||
"last_updated_utc_millis",
|
||||
"email_addresses",
|
||||
"addresses",
|
||||
"phone_numbers",
|
||||
"given_name",
|
||||
"family_name",
|
||||
"middle_name",
|
||||
"owner_id"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user