chore: NODE-2911 - Generate Schema Files (no-changelog) (#15030)

Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
Jon
2025-05-06 17:55:06 +01:00
committed by GitHub
parent 985f554501
commit d0022c5700
67 changed files with 1327 additions and 689 deletions

View File

@@ -4,9 +4,6 @@
"created_at": { "created_at": {
"type": "string" "type": "string"
}, },
"creator_id": {
"type": "integer"
},
"entity": { "entity": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -43,5 +40,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,47 @@
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"modelResponse": {
"type": "string"
}
}
},
"meta": {
"type": "object",
"properties": {
"requestId": {
"type": "string"
},
"status": {
"type": "string"
},
"usage": {
"type": "object",
"properties": {
"credits": {
"type": "integer"
},
"id": {
"type": "string"
}
}
}
}
},
"warnings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
}
}
}
},
"version": 1
}

View File

@@ -1,12 +1,6 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"ChecksumAlgorithm": {
"type": "string"
},
"ChecksumType": {
"type": "string"
},
"ETag": { "ETag": {
"type": "string" "type": "string"
}, },
@@ -23,5 +17,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,6 +1,9 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"canUploadPhoto": {
"type": "boolean"
},
"displayName": { "displayName": {
"type": "string" "type": "string"
}, },
@@ -12,7 +15,13 @@
}, },
"lastName": { "lastName": {
"type": "string" "type": "string"
},
"photoUploaded": {
"type": "boolean"
},
"photoUrl": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -13,20 +13,6 @@
"country": { "country": {
"type": "string" "type": "string"
}, },
"email": {
"type": "array",
"items": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"qualification": {
"type": "string"
}
}
}
},
"first_name": { "first_name": {
"type": "string" "type": "string"
}, },
@@ -54,6 +40,12 @@
"siren": { "siren": {
"type": "string" "type": "string"
}, },
"siret": {
"type": "string"
},
"siret_address": {
"type": "string"
},
"vat": { "vat": {
"type": "string" "type": "string"
}, },
@@ -61,5 +53,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -39,9 +39,15 @@
"messageTime": { "messageTime": {
"type": "integer" "type": "integer"
}, },
"rejected": {
"type": "array",
"items": {
"type": "string"
}
},
"response": { "response": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,44 @@
{
"type": "object",
"properties": {
"_links": {
"type": "object",
"properties": {
"git": {
"type": "string"
},
"html": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"git_url": {
"type": "string"
},
"html_url": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"sha": {
"type": "string"
},
"size": {
"type": "integer"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"version": 1
}

View File

@@ -19,9 +19,6 @@
"execute_filemode": { "execute_filemode": {
"type": "boolean" "type": "boolean"
}, },
"file_name": {
"type": "string"
},
"file_path": { "file_path": {
"type": "string" "type": "string"
}, },
@@ -35,5 +32,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -24,17 +24,6 @@
"reviewId": { "reviewId": {
"type": "string" "type": "string"
}, },
"reviewReply": {
"type": "object",
"properties": {
"comment": {
"type": "string"
},
"updateTime": {
"type": "string"
}
}
},
"starRating": { "starRating": {
"type": "string" "type": "string"
}, },
@@ -42,5 +31,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -15,9 +15,6 @@
} }
} }
}, },
"description": {
"type": "string"
},
"end": { "end": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -47,12 +44,12 @@
"kind": { "kind": {
"type": "string" "type": "string"
}, },
"location": {
"type": "string"
},
"organizer": { "organizer": {
"type": "object", "type": "object",
"properties": { "properties": {
"displayName": {
"type": "string"
},
"email": { "email": {
"type": "string" "type": "string"
}, },
@@ -93,5 +90,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -27,20 +27,9 @@
} }
} }
}, },
"phoneNumbers": {
"type": "object",
"properties": {
"mobile": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"resourceName": { "resourceName": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"version": 1
}

View File

@@ -12,7 +12,13 @@
}, },
"_updateTime": { "_updateTime": {
"type": "string" "type": "string"
},
"chat_id": {
"type": "string"
},
"lastInteraction": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,30 +1,18 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"historyId": {
"type": "string"
},
"id": { "id": {
"type": "string" "type": "string"
}, },
"internalDate": {
"type": "string"
},
"labelIds": { "labelIds": {
"type": "array", "type": "array",
"items": { "items": {
"type": "string" "type": "string"
} }
}, },
"sizeEstimate": {
"type": "integer"
},
"snippet": {
"type": "string"
},
"threadId": { "threadId": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -80,6 +80,12 @@
"to": { "to": {
"type": "string" "type": "string"
}, },
"x-gm-message-state": {
"type": "string"
},
"x-google-dkim-signature": {
"type": "string"
},
"x-google-smtp-source": { "x-google-smtp-source": {
"type": "string" "type": "string"
}, },
@@ -141,5 +147,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,24 +1,24 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"date": { "From": {
"type": "string" "type": "string"
}, },
"from": { "historyId": {
"type": "object",
"properties": {
"html": {
"type": "string" "type": "string"
}, },
"text": { "id": {
"type": "string" "type": "string"
}, },
"value": { "internalDate": {
"type": "string"
},
"labels": {
"type": "array", "type": "array",
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"address": { "id": {
"type": "string" "type": "string"
}, },
"name": { "name": {
@@ -26,114 +26,30 @@
} }
} }
} }
}
}
}, },
"headers": { "payload": {
"type": "object", "type": "object",
"properties": { "properties": {
"arc-authentication-results": { "mimeType": {
"type": "string"
},
"arc-message-signature": {
"type": "string"
},
"arc-seal": {
"type": "string"
},
"authentication-results": {
"type": "string"
},
"content-type": {
"type": "string"
},
"date": {
"type": "string"
},
"delivered-to": {
"type": "string"
},
"dkim-signature": {
"type": "string"
},
"from": {
"type": "string"
},
"message-id": {
"type": "string"
},
"mime-version": {
"type": "string"
},
"received": {
"type": "string"
},
"received-spf": {
"type": "string"
},
"return-path": {
"type": "string"
},
"subject": {
"type": "string"
},
"to": {
"type": "string"
},
"x-google-smtp-source": {
"type": "string"
},
"x-received": {
"type": "string" "type": "string"
} }
} }
}, },
"id": {
"type": "string"
},
"labelIds": {
"type": "array",
"items": {
"type": "string"
}
},
"messageId": {
"type": "string"
},
"sizeEstimate": { "sizeEstimate": {
"type": "integer" "type": "integer"
}, },
"subject": { "snippet": {
"type": "string"
},
"Subject": {
"type": "string" "type": "string"
}, },
"threadId": { "threadId": {
"type": "string" "type": "string"
}, },
"to": { "To": {
"type": "object",
"properties": {
"html": {
"type": "string"
},
"text": {
"type": "string"
},
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string" "type": "string"
} }
}
}
}
}
}
}, },
"version": 2 "version": 3
} }

View File

@@ -12,27 +12,6 @@
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"ARC-Authentication-Results": {
"type": "string"
},
"ARC-Message-Signature": {
"type": "string"
},
"ARC-Seal": {
"type": "string"
},
"Authentication-Results": {
"type": "string"
},
"Content-Type": {
"type": "string"
},
"Date": {
"type": "string"
},
"Delivered-To": {
"type": "string"
},
"From": { "From": {
"type": "string" "type": "string"
}, },
@@ -59,46 +38,14 @@
} }
} }
}, },
"Message-ID": {
"type": "string"
},
"MIME-Version": {
"type": "string"
},
"payload": { "payload": {
"type": "object", "type": "object",
"properties": { "properties": {
"body": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"size": {
"type": "integer"
}
}
},
"filename": {
"type": "string"
},
"mimeType": { "mimeType": {
"type": "string" "type": "string"
},
"partId": {
"type": "string"
} }
} }
}, },
"Received": {
"type": "string"
},
"Received-SPF": {
"type": "string"
},
"Return-Path": {
"type": "string"
},
"sizeEstimate": { "sizeEstimate": {
"type": "integer" "type": "integer"
}, },
@@ -113,16 +60,10 @@
}, },
"To": { "To": {
"type": "string" "type": "string"
},
"X-Google-Smtp-Source": {
"type": "string"
},
"X-Received": {
"type": "string"
} }
} }
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -27,9 +27,6 @@
} }
} }
}, },
"notes": {
"type": "string"
},
"position": { "position": {
"type": "string" "type": "string"
}, },
@@ -49,5 +46,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -178,7 +178,41 @@
"type": "string" "type": "string"
} }
} }
},
"status": {
"type": "object",
"properties": {
"embeddable": {
"type": "boolean"
},
"license": {
"type": "string"
},
"madeForKids": {
"type": "boolean"
},
"privacyStatus": {
"type": "string"
},
"publicStatsViewable": {
"type": "boolean"
},
"uploadStatus": {
"type": "string"
}
} }
}, },
"version": 2 "topicDetails": {
"type": "object",
"properties": {
"topicCategories": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"version": 3
} }

View File

@@ -45,6 +45,9 @@
"timestamp": { "timestamp": {
"type": "integer" "type": "integer"
}, },
"updatedByUserId": {
"type": "integer"
},
"useTimestampAsPersistenceTimestamp": { "useTimestampAsPersistenceTimestamp": {
"type": "boolean" "type": "boolean"
}, },
@@ -73,5 +76,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -16,9 +16,6 @@
"createdate": { "createdate": {
"type": "string" "type": "string"
}, },
"email": {
"type": "string"
},
"hs_object_id": { "hs_object_id": {
"type": "string" "type": "string"
}, },
@@ -31,5 +28,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -10,20 +10,54 @@
"portalId": { "portalId": {
"type": "integer" "type": "integer"
}, },
"stateChanges": { "properties": {
"type": "array",
"items": {
"type": "object", "type": "object",
"properties": { "properties": {
"changeFlag": { "dealname": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"sourceId": {
"type": "string" "type": "string"
}, },
"timestamp": { "timestamp": {
"type": "integer" "type": "integer"
},
"value": {
"type": "string"
},
"versions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"source": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"timestamp": {
"type": "integer"
},
"updatedByUserId": {
"type": "integer"
},
"value": {
"type": "string"
}
}
}
}
} }
} }
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -16,7 +16,7 @@
"createdate": { "createdate": {
"type": "string" "type": "string"
}, },
"dealstage": { "dealname": {
"type": "string" "type": "string"
}, },
"hs_lastmodifieddate": { "hs_lastmodifieddate": {
@@ -24,9 +24,6 @@
}, },
"hs_object_id": { "hs_object_id": {
"type": "string" "type": "string"
},
"pipeline": {
"type": "string"
} }
} }
}, },
@@ -34,5 +31,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -45,15 +45,15 @@
"persistenceTimestamp": { "persistenceTimestamp": {
"type": "integer" "type": "integer"
}, },
"requestId": {
"type": "string"
},
"source": { "source": {
"type": "string" "type": "string"
}, },
"sourceId": { "sourceId": {
"type": "string" "type": "string"
}, },
"sourceLabel": {
"type": "string"
},
"sourceVid": { "sourceVid": {
"type": "array", "type": "array",
"items": { "items": {
@@ -74,5 +74,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,9 +1,12 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"Keyword": {
"type": "string"
},
"row_number": { "row_number": {
"type": "integer" "type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -82,8 +82,266 @@
} }
} }
}, },
"project": {
"type": "object",
"properties": {
"avatarUrls": {
"type": "object",
"properties": {
"16x16": {
"type": "string"
},
"24x24": {
"type": "string"
},
"32x32": {
"type": "string"
},
"48x48": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"projectTypeKey": {
"type": "string"
},
"self": {
"type": "string"
},
"simplified": {
"type": "boolean"
}
}
},
"reporter": {
"type": "object",
"properties": {
"accountId": {
"type": "string"
},
"accountType": {
"type": "string"
},
"active": {
"type": "boolean"
},
"avatarUrls": {
"type": "object",
"properties": {
"16x16": {
"type": "string"
},
"24x24": {
"type": "string"
},
"32x32": {
"type": "string"
},
"48x48": {
"type": "string"
}
}
},
"displayName": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"status": {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
},
"statusCategory": {
"type": "object",
"properties": {
"colorName": {
"type": "string"
},
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
}
}
}
}
},
"summary": { "summary": {
"type": "string" "type": "string"
},
"worklog": {
"type": "object",
"properties": {
"maxResults": {
"type": "integer"
},
"startAt": {
"type": "integer"
},
"total": {
"type": "integer"
},
"worklogs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"author": {
"type": "object",
"properties": {
"accountId": {
"type": "string"
},
"accountType": {
"type": "string"
},
"active": {
"type": "boolean"
},
"avatarUrls": {
"type": "object",
"properties": {
"16x16": {
"type": "string"
},
"24x24": {
"type": "string"
},
"32x32": {
"type": "string"
},
"48x48": {
"type": "string"
}
}
},
"displayName": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"comment": {
"type": "string"
},
"created": {
"type": "string"
},
"id": {
"type": "string"
},
"issueId": {
"type": "string"
},
"self": {
"type": "string"
},
"started": {
"type": "string"
},
"timeSpent": {
"type": "string"
},
"timeSpentSeconds": {
"type": "integer"
},
"updateAuthor": {
"type": "object",
"properties": {
"accountId": {
"type": "string"
},
"accountType": {
"type": "string"
},
"active": {
"type": "boolean"
},
"avatarUrls": {
"type": "object",
"properties": {
"16x16": {
"type": "string"
},
"24x24": {
"type": "string"
},
"32x32": {
"type": "string"
},
"48x48": {
"type": "string"
}
}
},
"displayName": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"updated": {
"type": "string"
}
}
}
}
}
} }
} }
}, },
@@ -97,5 +355,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -7,64 +7,78 @@
"fields": { "fields": {
"type": "object", "type": "object",
"properties": { "properties": {
"assignee": {
"type": "object",
"properties": {
"accountId": {
"type": "string"
},
"accountType": {
"type": "string"
},
"active": {
"type": "boolean"
},
"avatarUrls": {
"type": "object",
"properties": {
"16x16": {
"type": "string"
},
"24x24": {
"type": "string"
},
"32x32": {
"type": "string"
},
"48x48": {
"type": "string"
}
}
},
"displayName": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"created": { "created": {
"type": "string" "type": "string"
}, },
"reporter": { "issuetype": {
"type": "object", "type": "object",
"properties": { "properties": {
"accountId": { "avatarId": {
"type": "integer"
},
"description": {
"type": "string" "type": "string"
}, },
"accountType": { "entityId": {
"type": "string" "type": "string"
}, },
"active": { "hierarchyLevel": {
"type": "integer"
},
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
},
"subtask": {
"type": "boolean" "type": "boolean"
}
}
}, },
"labels": {
"type": "array",
"items": {
"type": "string"
}
},
"priority": {
"type": "object",
"properties": {
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"progress": {
"type": "object",
"properties": {
"progress": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"project": {
"type": "object",
"properties": {
"avatarUrls": { "avatarUrls": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -82,17 +96,23 @@
} }
} }
}, },
"displayName": { "id": {
"type": "string" "type": "string"
}, },
"emailAddress": { "key": {
"type": "string"
},
"name": {
"type": "string"
},
"projectTypeKey": {
"type": "string" "type": "string"
}, },
"self": { "self": {
"type": "string" "type": "string"
}, },
"timeZone": { "simplified": {
"type": "string" "type": "boolean"
} }
} }
}, },
@@ -151,5 +171,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -7,17 +7,6 @@
"createdAt": { "createdAt": {
"type": "string" "type": "string"
}, },
"creator": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"id": {
"type": "string"
}
}
},
"id": { "id": {
"type": "string" "type": "string"
}, },
@@ -42,5 +31,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -10,15 +10,9 @@
"id": { "id": {
"type": "string" "type": "string"
}, },
"mailNickname": {
"type": "string"
},
"securityIdentifier": {
"type": "string"
},
"userPrincipalName": { "userPrincipalName": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -81,9 +81,12 @@
} }
} }
}, },
"subject": {
"type": "string"
},
"webLink": { "webLink": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -27,11 +27,19 @@
"conversationId": { "conversationId": {
"type": "string" "type": "string"
}, },
"flag": { "from": {
"type": "object", "type": "object",
"properties": { "properties": {
"flagStatus": { "emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string" "type": "string"
},
"name": {
"type": "string"
}
}
} }
} }
}, },
@@ -41,56 +49,9 @@
"id": { "id": {
"type": "string" "type": "string"
}, },
"importance": {
"type": "string"
},
"isDraft": {
"type": "boolean"
},
"isRead": {
"type": "boolean"
},
"receivedDateTime": {
"type": "string"
},
"replyTo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"sender": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
},
"subject": { "subject": {
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -27,9 +27,45 @@
"type": "string" "type": "string"
} }
}, },
"ccRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"changeKey": {
"type": "string"
},
"conversationId": { "conversationId": {
"type": "string" "type": "string"
}, },
"conversationIndex": {
"type": "string"
},
"createdDateTime": {
"type": "string"
},
"flag": {
"type": "object",
"properties": {
"flagStatus": {
"type": "string"
}
}
},
"from": { "from": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -52,9 +88,96 @@
"id": { "id": {
"type": "string" "type": "string"
}, },
"importance": {
"type": "string"
},
"inferenceClassification": {
"type": "string"
},
"internetMessageId": {
"type": "string"
},
"isDraft": {
"type": "boolean"
},
"isRead": {
"type": "boolean"
},
"isReadReceiptRequested": {
"type": "boolean"
},
"lastModifiedDateTime": {
"type": "string"
},
"parentFolderId": {
"type": "string"
},
"receivedDateTime": {
"type": "string"
},
"replyTo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"sender": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
},
"sentDateTime": {
"type": "string"
},
"subject": { "subject": {
"type": "string" "type": "string"
},
"toRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"webLink": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -24,28 +24,17 @@
"type": "string" "type": "string"
} }
}, },
"ccRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"conversationId": { "conversationId": {
"type": "string" "type": "string"
}, },
"flag": {
"type": "object",
"properties": {
"flagStatus": {
"type": "string"
}
}
},
"from": { "from": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -68,6 +57,34 @@
"id": { "id": {
"type": "string" "type": "string"
}, },
"importance": {
"type": "string"
},
"isRead": {
"type": "boolean"
},
"receivedDateTime": {
"type": "string"
},
"replyTo": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"sender": { "sender": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -84,6 +101,9 @@
} }
} }
}, },
"subject": {
"type": "string"
},
"toRecipients": { "toRecipients": {
"type": "array", "type": "array",
"items": { "items": {
@@ -104,5 +124,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -4,10 +4,11 @@
"data": { "data": {
"type": "object", "type": "object",
"properties": { "properties": {
"text": { "approved": {
"type": "string" "type": "boolean"
}
} }
} }
} }
},
"version": 1
} }

View File

@@ -12,7 +12,19 @@
}, },
"id": { "id": {
"type": "string" "type": "string"
},
"isInline": {
"type": "boolean"
},
"lastModifiedDateTime": {
"type": "string"
},
"name": {
"type": "string"
},
"size": {
"type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,44 @@
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"properties": {
"type": "object",
"properties": {
"blobType": {
"type": "string"
},
"contentLength": {
"type": "integer"
},
"contentMD5": {
"type": "string"
},
"contentType": {
"type": "string"
},
"creationTime": {
"type": "string"
},
"etag": {
"type": "string"
},
"lastModified": {
"type": "string"
},
"leaseState": {
"type": "string"
},
"leaseStatus": {
"type": "string"
},
"serverEncrypted": {
"type": "boolean"
}
}
}
},
"version": 1
}

View File

@@ -18,10 +18,7 @@
}, },
"tenantId": { "tenantId": {
"type": "string" "type": "string"
},
"webUrl": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -15,15 +15,31 @@
} }
} }
}, },
"categories": { "completedDateTime": {
"type": "array", "type": "object",
"items": { "properties": {
"dateTime": {
"type": "string" "type": "string"
},
"timeZone": {
"type": "string"
}
} }
}, },
"createdDateTime": { "createdDateTime": {
"type": "string" "type": "string"
}, },
"dueDateTime": {
"type": "object",
"properties": {
"dateTime": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"hasAttachments": { "hasAttachments": {
"type": "boolean" "type": "boolean"
}, },
@@ -46,5 +62,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,15 +1,162 @@
{ {
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"created_by": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
"type": "string" "type": "string"
}, },
"name": { "object": {
"type": "string" "type": "string"
}
}
},
"created_time": {
"type": "string"
},
"description": {
"type": "array",
"items": {
"type": "object",
"properties": {
"annotations": {
"type": "object",
"properties": {
"bold": {
"type": "boolean"
},
"code": {
"type": "boolean"
},
"color": {
"type": "string"
},
"italic": {
"type": "boolean"
},
"strikethrough": {
"type": "boolean"
},
"underline": {
"type": "boolean"
}
}
},
"plain_text": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"content": {
"type": "string"
}
}
},
"type": {
"type": "string"
}
}
}
},
"id": {
"type": "string"
},
"in_trash": {
"type": "boolean"
},
"is_inline": {
"type": "boolean"
},
"last_edited_by": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object": {
"type": "string"
}
}
},
"last_edited_time": {
"type": "string"
},
"object": {
"type": "string"
},
"parent": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"workspace": {
"type": "boolean"
}
}
},
"request_id": {
"type": "string"
},
"title": {
"type": "array",
"items": {
"type": "object",
"properties": {
"annotations": {
"type": "object",
"properties": {
"bold": {
"type": "boolean"
},
"code": {
"type": "boolean"
},
"color": {
"type": "string"
},
"italic": {
"type": "boolean"
},
"strikethrough": {
"type": "boolean"
},
"underline": {
"type": "boolean"
}
}
},
"href": {
"type": "null"
},
"plain_text": {
"type": "string"
},
"text": {
"type": "object",
"properties": {
"content": {
"type": "string"
},
"link": {
"type": "null"
}
}
},
"type": {
"type": "string"
}
}
}
}, },
"url": { "url": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,9 +1,18 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"contact_address_complete": {
"type": "string"
},
"display_name": {
"type": "string"
},
"id": { "id": {
"type": "integer" "type": "integer"
},
"is_company": {
"type": "boolean"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -3,10 +3,7 @@
"properties": { "properties": {
"id": { "id": {
"type": "integer" "type": "integer"
},
"name": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,9 +1,57 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"__last_update": {
"type": "string"
},
"active": {
"type": "boolean"
},
"contact_fullname": {
"type": "string"
},
"contact_lastname": {
"type": "string"
},
"country": {
"type": "boolean"
},
"create_date": {
"type": "string"
},
"display_name": {
"type": "string"
},
"id": { "id": {
"type": "integer" "type": "integer"
},
"is_blacklisted": {
"type": "boolean"
},
"lost_reason": {
"type": "boolean"
},
"message_attachment_count": {
"type": "integer"
},
"message_ids": {
"type": "array",
"items": {
"type": "integer"
} }
}, },
"version": 2 "street4": {
"type": "boolean"
},
"tag_ids": {
"type": "array",
"items": {
"type": "integer"
}
},
"type": {
"type": "string"
}
},
"version": 3
} }

View File

@@ -13,34 +13,6 @@
"message": { "message": {
"type": "object", "type": "object",
"properties": { "properties": {
"annotations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"url_citation": {
"type": "object",
"properties": {
"end_index": {
"type": "integer"
},
"start_index": {
"type": "integer"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
}
}
},
"content": { "content": {
"type": "string" "type": "string"
}, },
@@ -53,5 +25,5 @@
} }
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,7 +1,4 @@
{ {
"type": "object",
"properties": {
"item": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@@ -24,17 +21,15 @@
} }
} }
}, },
"result_score": {
"type": "number"
},
"type": { "type": {
"type": "string" "type": "string"
}, },
"visible_to": { "visible_to": {
"type": "integer" "type": "integer"
} }
}
}, },
"result_score": { "version": 2
"type": "number"
}
},
"version": 1
} }

View File

@@ -1,12 +1,6 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"custom_fields": {
"type": "array",
"items": {
"type": "string"
}
},
"emails": { "emails": {
"type": "array", "type": "array",
"items": { "items": {
@@ -25,17 +19,6 @@
"type": "string" "type": "string"
} }
}, },
"organization": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
}
},
"owner": { "owner": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -63,5 +46,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"api_id": {
"type": "string"
},
"message": {
"type": "string"
},
"request_uuid": {
"type": "string"
}
},
"version": 1
}

View File

@@ -19,9 +19,6 @@
"other_account": { "other_account": {
"type": "string" "type": "string"
}, },
"subt_nat_amount": {
"type": "string"
},
"tx_date": { "tx_date": {
"type": "string" "type": "string"
}, },
@@ -29,5 +26,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -12,9 +12,9 @@
} }
} }
}, },
"Name": { "Id": {
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -12,9 +12,12 @@
} }
} }
}, },
"Name": { "Id": {
"type": "string" "type": "string"
},
"Probability": {
"type": "integer"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -15,9 +15,12 @@
"Id": { "Id": {
"type": "string" "type": "string"
}, },
"Priority": {
"type": "string"
},
"Status": { "Status": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,30 @@
{
"type": "object",
"properties": {
"_archived": {
"type": "boolean"
},
"_creator": {
"type": "string"
},
"_ctime": {
"type": "string"
},
"_id": {
"type": "string"
},
"_last_modifier": {
"type": "string"
},
"_locked": {
"type": "null"
},
"_locked_by": {
"type": "null"
},
"_mtime": {
"type": "string"
}
},
"version": 1
}

View File

@@ -16,9 +16,6 @@
"sys_created_on": { "sys_created_on": {
"type": "string" "type": "string"
}, },
"sys_id": {
"type": "string"
},
"sys_mod_count": { "sys_mod_count": {
"type": "string" "type": "string"
}, },
@@ -32,5 +29,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,6 +1,9 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"app_id": {
"type": "string"
},
"blocks": { "blocks": {
"type": "array", "type": "array",
"items": { "items": {
@@ -22,6 +25,15 @@
"text": { "text": {
"type": "string" "type": "string"
}, },
"type": {
"type": "string"
},
"user_id": {
"type": "string"
}
}
}
},
"type": { "type": {
"type": "string" "type": "string"
} }
@@ -34,18 +46,52 @@
} }
} }
}, },
"type": { "bot_id": {
"type": "string"
},
"bot_profile": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"deleted": {
"type": "boolean"
},
"icons": {
"type": "object",
"properties": {
"image_36": {
"type": "string"
},
"image_48": {
"type": "string"
},
"image_72": {
"type": "string" "type": "string"
} }
} }
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"team_id": {
"type": "string"
},
"updated": {
"type": "integer"
},
"user_id": {
"type": "string"
}
} }
}, },
"client_msg_id": { "client_msg_id": {
"type": "string" "type": "string"
}, },
"subtype": {
"type": "string"
},
"team": { "team": {
"type": "string" "type": "string"
}, },
@@ -62,5 +108,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -97,6 +97,9 @@
}, },
"updated": { "updated": {
"type": "integer" "type": "integer"
},
"user_id": {
"type": "string"
} }
} }
}, },
@@ -124,5 +127,5 @@
"type": "boolean" "type": "boolean"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,6 +1,9 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"code": {
"type": "integer"
},
"signal": { "signal": {
"type": "null" "type": "null"
}, },
@@ -11,5 +14,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -0,0 +1,32 @@
{
"type": "object",
"properties": {
"attributes": {
"type": "object",
"properties": {
"content": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"heading": {
"type": "string"
},
"primaryText": {
"type": "string"
},
"slug": {
"type": "string"
},
"updatedAt": {
"type": "string"
}
}
},
"id": {
"type": "integer"
}
},
"version": 1
}

View File

@@ -7,9 +7,6 @@
"createdAt": { "createdAt": {
"type": "string" "type": "string"
}, },
"scene_id": {
"type": "integer"
},
"updatedAt": { "updatedAt": {
"type": "string" "type": "string"
} }
@@ -19,5 +16,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -10,6 +10,29 @@
"accent_color_id": { "accent_color_id": {
"type": "integer" "type": "integer"
}, },
"accepted_gift_types": {
"type": "object",
"properties": {
"limited_gifts": {
"type": "boolean"
},
"premium_subscription": {
"type": "boolean"
},
"unique_gifts": {
"type": "boolean"
},
"unlimited_gifts": {
"type": "boolean"
}
}
},
"active_usernames": {
"type": "array",
"items": {
"type": "string"
}
},
"can_send_gift": { "can_send_gift": {
"type": "boolean" "type": "boolean"
}, },
@@ -24,9 +47,12 @@
}, },
"type": { "type": {
"type": "string" "type": "string"
},
"username": {
"type": "string"
} }
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -7,6 +7,9 @@
"result": { "result": {
"type": "object", "type": "object",
"properties": { "properties": {
"is_anonymous": {
"type": "boolean"
},
"status": { "status": {
"type": "string" "type": "string"
}, },
@@ -25,6 +28,9 @@
"language_code": { "language_code": {
"type": "string" "type": "string"
}, },
"last_name": {
"type": "string"
},
"username": { "username": {
"type": "string" "type": "string"
} }
@@ -33,5 +39,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -21,9 +21,6 @@
}, },
"type": { "type": {
"type": "string" "type": "string"
},
"username": {
"type": "string"
} }
} }
}, },
@@ -76,5 +73,5 @@
} }
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -16,6 +16,9 @@
"id": { "id": {
"type": "integer" "type": "integer"
}, },
"last_name": {
"type": "string"
},
"type": { "type": {
"type": "string" "type": "string"
}, },
@@ -73,5 +76,5 @@
} }
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -4,6 +4,9 @@
"closed": { "closed": {
"type": "boolean" "type": "boolean"
}, },
"color": {
"type": "null"
},
"datasource": { "datasource": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -21,6 +24,9 @@
"name": { "name": {
"type": "string" "type": "string"
}, },
"softLimit": {
"type": "null"
},
"subscribed": { "subscribed": {
"type": "boolean" "type": "boolean"
}, },
@@ -28,5 +34,5 @@
"type": "null" "type": "null"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -29,6 +29,9 @@
"checkItemsChecked": { "checkItemsChecked": {
"type": "integer" "type": "integer"
}, },
"checkItemsEarliestDue": {
"type": "null"
},
"comments": { "comments": {
"type": "integer" "type": "integer"
}, },
@@ -61,6 +64,9 @@
} }
} }
}, },
"cardRole": {
"type": "null"
},
"checkItemStates": { "checkItemStates": {
"type": "array", "type": "array",
"items": { "items": {
@@ -87,6 +93,9 @@
"idPlugin": { "idPlugin": {
"type": "null" "type": "null"
}, },
"idUploadedBackground": {
"type": "null"
},
"size": { "size": {
"type": "string" "type": "string"
} }
@@ -142,6 +151,9 @@
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"color": {
"type": "string"
},
"id": { "id": {
"type": "string" "type": "string"
}, },
@@ -191,5 +203,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -174,6 +174,12 @@
"type": "integer" "type": "integer"
} }
}, },
"class_list": {
"type": "array",
"items": {
"type": "string"
}
},
"comment_status": { "comment_status": {
"type": "string" "type": "string"
}, },
@@ -272,5 +278,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -79,12 +79,6 @@
"$state": { "$state": {
"type": "string" "type": "string"
}, },
"Assistant": {
"type": "null"
},
"Asst_Phone": {
"type": "null"
},
"Created_By": { "Created_By": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -134,12 +128,6 @@
"Modified_Time": { "Modified_Time": {
"type": "string" "type": "string"
}, },
"Other_Street": {
"type": "null"
},
"Other_Zip": {
"type": "null"
},
"Owner": { "Owner": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -154,12 +142,23 @@
} }
} }
}, },
"Unsubscribed_Mode": { "Tag": {
"type": "null" "type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}, },
"Unsubscribed_Time": { "name": {
"type": "string"
}
}
}
},
"Vendor_Name": {
"type": "null" "type": "null"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,87 +1,6 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"$approval": {
"type": "object",
"properties": {
"approve": {
"type": "boolean"
},
"delegate": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"resubmit": {
"type": "boolean"
},
"takeover": {
"type": "boolean"
}
}
},
"$approval_state": {
"type": "string"
},
"$approved": {
"type": "boolean"
},
"$converted": {
"type": "boolean"
},
"$currency_symbol": {
"type": "string"
},
"$editable": {
"type": "boolean"
},
"$field_states": {
"type": "null"
},
"$in_merge": {
"type": "boolean"
},
"$layout_id": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"$locked_for_me": {
"type": "boolean"
},
"$process_flow": {
"type": "boolean"
},
"$review": {
"type": "null"
},
"$review_process": {
"type": "object",
"properties": {
"approve": {
"type": "boolean"
},
"reject": {
"type": "boolean"
},
"resubmit": {
"type": "boolean"
}
}
},
"$state": {
"type": "string"
},
"Email_Opt_Out": {
"type": "boolean"
},
"Full_Name": { "Full_Name": {
"type": "string" "type": "string"
}, },
@@ -91,26 +10,6 @@
"Last_Name": { "Last_Name": {
"type": "string" "type": "string"
}, },
"Locked__s": {
"type": "boolean"
},
"Modified_By": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"Modified_Time": {
"type": "string"
},
"Owner": { "Owner": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -124,27 +23,7 @@
"type": "string" "type": "string"
} }
} }
},
"Tag": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
} }
}, },
"Unsubscribed_Mode": { "version": 2
"type": "null"
},
"Unsubscribed_Time": {
"type": "null"
}
},
"version": 1
} }

View File

@@ -19,9 +19,6 @@
"start_time": { "start_time": {
"type": "string" "type": "string"
}, },
"supportGoLive": {
"type": "boolean"
},
"timezone": { "timezone": {
"type": "string" "type": "string"
}, },
@@ -35,5 +32,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }