feat: Generate Schema Files - 18113073 (no-changelog) (#12927)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Jon
2025-01-30 14:59:04 +00:00
committed by GitHub
parent cdfa22593b
commit 9d027339fd
661 changed files with 76670 additions and 1 deletions

View File

@@ -0,0 +1,89 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"dateAdded": {
"type": "string"
},
"type": {
"type": "string"
},
"locationId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"firstNameLowerCase": {
"type": "string"
},
"fullNameLowerCase": {
"type": "string"
},
"lastName": {
"type": "string"
},
"lastNameLowerCase": {
"type": "string"
},
"email": {
"type": "string"
},
"emailLowerCase": {
"type": "string"
},
"phone": {
"type": "string"
},
"country": {
"type": "string"
},
"source": {
"type": "string"
},
"timezone": {
"type": "string"
},
"fingerprint": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"customField": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id",
"value"
]
}
},
"assignedTo": {
"type": "string"
},
"address1": {
"type": "string"
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"postalCode": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,96 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"dateAdded": {
"type": "string"
},
"type": {
"type": "string"
},
"locationId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"firstNameLowerCase": {
"type": "string"
},
"fullNameLowerCase": {
"type": "string"
},
"lastName": {
"type": "string"
},
"lastNameLowerCase": {
"type": "string"
},
"email": {
"type": "string"
},
"emailLowerCase": {
"type": "string"
},
"phone": {
"type": "string"
},
"country": {
"type": "string"
},
"createdBy": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"channel": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"timestamp": {
"type": "string"
}
},
"required": [
"source",
"channel",
"sourceId",
"timestamp"
]
},
"dateUpdated": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
]
}
}
}
}

View File

@@ -0,0 +1,124 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"dateAdded": {
"type": "string"
},
"type": {
"type": "string"
},
"locationId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"firstNameLowerCase": {
"type": "string"
},
"fullNameLowerCase": {
"type": "string"
},
"lastName": {
"type": "string"
},
"lastNameLowerCase": {
"type": "string"
},
"email": {
"type": "string"
},
"emailLowerCase": {
"type": "string"
},
"phone": {
"type": "string"
},
"country": {
"type": "string"
},
"attributionSource": {
"type": "object",
"properties": {
"sessionSource": {
"type": "string"
},
"medium": {
"type": "string"
}
},
"required": [
"sessionSource",
"medium"
]
},
"createdBy": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"channel": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"timestamp": {
"type": "string"
}
},
"required": [
"source",
"channel",
"sourceId",
"timestamp"
]
},
"dateUpdated": {
"type": "string"
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id",
"value"
]
}
},
"additionalPhones": {
"type": "array",
"items": {
"type": "object",
"properties": {
"phone": {
"type": "string"
}
},
"required": [
"phone",
"phoneLabel"
]
}
},
"state": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,80 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"locationId": {
"type": "string"
},
"contactName": {
"type": "string"
},
"dnd": {
"type": "boolean"
},
"type": {
"type": "string"
},
"dateAdded": {
"type": "string"
},
"dateUpdated": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"country": {
"type": "string"
},
"website": {
"type": "null"
},
"attributions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"utmSessionSource": {
"type": "string"
},
"isFirst": {
"type": "boolean"
},
"medium": {
"type": "string"
}
},
"required": [
"utmSessionSource",
"medium"
]
}
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id",
"value"
]
}
}
}
}

View File

@@ -0,0 +1,118 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"additionalPhones": {
"type": "array",
"items": {
"type": "object",
"properties": {
"phoneLabel": {
"type": "null"
},
"phone": {
"type": "string"
}
},
"required": [
"phoneLabel",
"phone"
]
}
},
"dateAdded": {
"type": "string"
},
"type": {
"type": "string"
},
"locationId": {
"type": "string"
},
"firstName": {
"type": "string"
},
"firstNameLowerCase": {
"type": "string"
},
"fullNameLowerCase": {
"type": "string"
},
"lastName": {
"type": "string"
},
"lastNameLowerCase": {
"type": "string"
},
"phone": {
"type": "string"
},
"country": {
"type": "string"
},
"dnd": {
"type": "boolean"
},
"createdBy": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"channel": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"timestamp": {
"type": "string"
}
},
"required": [
"source",
"channel",
"sourceId",
"timestamp"
]
},
"emailLowerCase": {
"type": "string"
},
"email": {
"type": "string"
},
"dateUpdated": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id",
"value"
]
}
}
}
}

View File

@@ -0,0 +1,136 @@
{
"type": "object",
"properties": {
"opportunity": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"monetaryValue": {
"type": "integer"
},
"pipelineId": {
"type": "string"
},
"pipelineStageId": {
"type": "string"
},
"status": {
"type": "string"
},
"lastStatusChangeAt": {
"type": "string"
},
"lastStageChangeAt": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"contactId": {
"type": "string"
},
"isAttribute": {
"type": "boolean"
},
"internalSource": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"apiVersion": {
"type": "string"
},
"channel": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"type",
"id",
"apiVersion",
"channel",
"source"
]
},
"locationId": {
"type": "string"
},
"lastActionDate": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"contact": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"phone": {
"type": "string"
}
},
"required": [
"id",
"name",
"tags",
"followers"
]
}
},
"required": [
"id",
"name",
"monetaryValue",
"pipelineId",
"pipelineStageId",
"status",
"lastStatusChangeAt",
"lastStageChangeAt",
"createdAt",
"updatedAt",
"contactId",
"isAttribute",
"internalSource",
"locationId",
"lastActionDate",
"followers",
"contact"
]
},
"traceId": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,149 @@
{
"type": "object",
"properties": {
"opportunity": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"pipelineId": {
"type": "string"
},
"pipelineStageId": {
"type": "string"
},
"status": {
"type": "string"
},
"lastStatusChangeAt": {
"type": "string"
},
"lastStageChangeAt": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"contactId": {
"type": "string"
},
"isAttribute": {
"type": "boolean"
},
"internalSource": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"apiVersion": {
"type": "string"
},
"channel": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"type",
"id",
"apiVersion",
"channel",
"source"
]
},
"locationId": {
"type": "string"
},
"lastActionDate": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"contact": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"assignedTo": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"tags",
"followers"
]
},
"indexVersion": {
"type": "integer"
}
},
"required": [
"id",
"name",
"monetaryValue",
"pipelineId",
"pipelineStageId",
"status",
"lastStatusChangeAt",
"lastStageChangeAt",
"createdAt",
"updatedAt",
"contactId",
"isAttribute",
"internalSource",
"locationId",
"lastActionDate",
"followers",
"contact"
]
},
"traceId": {
"type": "string"
}
},
"required": [
"opportunity",
"traceId"
]
}

View File

@@ -0,0 +1,183 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"pipelineId": {
"type": "string"
},
"pipelineStageId": {
"type": "string"
},
"pipelineStageUId": {
"type": "string"
},
"status": {
"type": "string"
},
"lastStatusChangeAt": {
"type": "string"
},
"lastStageChangeAt": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"indexVersion": {
"type": "integer"
},
"contactId": {
"type": "string"
},
"locationId": {
"type": "string"
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"fieldValueString": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {
"type": "string"
},
"fieldValueDate": {
"type": "integer"
}
},
"required": [
"id",
"type"
]
}
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"relations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"associationId": {
"type": "string"
},
"relationId": {
"type": "string"
},
"primary": {
"type": "boolean"
},
"objectKey": {
"type": "string"
},
"recordId": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"associationId",
"relationId",
"primary",
"objectKey",
"recordId",
"fullName",
"contactName",
"companyName",
"email",
"phone",
"tags",
"attributed"
]
}
},
"contact": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"tags"
]
},
"attributions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"utmSessionSource": {
"type": "string"
},
"isFirst": {
"type": "boolean"
},
"medium": {
"type": "string"
}
},
"required": [
"medium"
]
}
}
},
"required": [
"id",
"name",
"monetaryValue",
"pipelineId",
"pipelineStageId",
"pipelineStageUId",
"assignedTo",
"status",
"source",
"lastStatusChangeAt",
"lastStageChangeAt",
"createdAt",
"updatedAt",
"contactId",
"locationId",
"customFields",
"lostReasonId",
"followers",
"relations",
"contact",
"sort",
"attributions"
]
}

View File

@@ -0,0 +1,156 @@
{
"type": "object",
"properties": {
"opportunity": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"monetaryValue": {
"type": "integer"
},
"pipelineId": {
"type": "string"
},
"pipelineStageId": {
"type": "string"
},
"status": {
"type": "string"
},
"source": {
"type": "string"
},
"lastStatusChangeAt": {
"type": "string"
},
"lastStageChangeAt": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"contactId": {
"type": "string"
},
"isAttribute": {
"type": "boolean"
},
"internalSource": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
},
"apiVersion": {
"type": "string"
},
"channel": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"type",
"id"
]
},
"locationId": {
"type": "string"
},
"lastActionDate": {
"type": "string"
},
"followers": {
"type": "array",
"items": {
"type": "string"
}
},
"contact": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"email",
"phone",
"tags",
"followers"
]
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id",
"fieldValue"
]
}
},
"indexVersion": {
"type": "integer"
}
},
"required": [
"id",
"name",
"monetaryValue",
"pipelineId",
"pipelineStageId",
"status",
"lastStatusChangeAt",
"lastStageChangeAt",
"createdAt",
"updatedAt",
"contactId",
"isAttribute",
"internalSource",
"locationId",
"lastActionDate",
"followers",
"contact"
]
},
"traceId": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,46 @@
{
"type": "object",
"properties": {
"task": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"completed": {
"type": "boolean"
},
"contactId": {
"type": "string"
},
"businessId": {
"type": "string"
}
},
"required": [
"id",
"title",
"dueDate",
"completed",
"contactId"
]
},
"traceId": {
"type": "string"
},
"contactId": {
"type": "string"
}
},
"required": [
"task",
"traceId",
"contactId"
]
}