chore: NODE-4536 - Generate Schema Files (no-changelog) (#26379)

Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
Jon
2026-03-06 21:18:04 +00:00
committed by GitHub
parent ab26070d14
commit 7bc9cac72e
37 changed files with 1473 additions and 28 deletions
@@ -10,6 +10,26 @@
"name": {
"type": "string"
},
"photo": {
"type": "object",
"properties": {
"image_128x128": {
"type": "string"
},
"image_21x21": {
"type": "string"
},
"image_27x27": {
"type": "string"
},
"image_36x36": {
"type": "string"
},
"image_60x60": {
"type": "string"
}
}
},
"resource_type": {
"type": "string"
},
@@ -31,5 +51,5 @@
}
}
},
"version": 1
"version": 2
}
@@ -35,9 +35,12 @@
}
}
}
},
"sorting": {
"type": "string"
}
}
}
},
"version": 5
"version": 6
}
@@ -0,0 +1,24 @@
{
"type": "object",
"properties": {
"InboundMessage": {
"type": "string"
},
"LeadEmail": {
"type": "string"
},
"LeadID": {
"type": "string"
},
"LeadLinkedInURL": {
"type": "string"
},
"LeadName": {
"type": "string"
},
"MsgStatus": {
"type": "string"
}
},
"version": 1
}
@@ -47,7 +47,7 @@
"type": "object",
"properties": {
"usd": {
"type": "number"
"type": "integer"
},
"usd_24h_change": {
"type": "number"
@@ -60,12 +60,27 @@
"cardano": {
"type": "object",
"properties": {
"gbp": {
"type": "number"
},
"gbp_24h_change": {
"type": "number"
},
"gbp_24h_vol": {
"type": "number"
},
"gbp_market_cap": {
"type": "number"
},
"usd": {
"type": "number"
},
"usd_24h_change": {
"type": "number"
},
"usd_24h_vol": {
"type": "number"
},
"usd_market_cap": {
"type": "number"
}
@@ -279,5 +294,5 @@
}
}
},
"version": 1
"version": 2
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"version": 1
}
@@ -13,14 +13,34 @@
"name": {
"type": "string"
},
"parent_shared_folder_id": {
"type": "string"
},
"path_display": {
"type": "string"
},
"path_lower": {
"type": "string"
},
"sharing_info": {
"type": "object",
"properties": {
"no_access": {
"type": "boolean"
},
"parent_shared_folder_id": {
"type": "string"
},
"read_only": {
"type": "boolean"
},
"traverse_only": {
"type": "boolean"
}
}
}
}
}
},
"version": 1
"version": 2
}
@@ -37,14 +37,23 @@
"sharing_info": {
"type": "object",
"properties": {
"is_parent_shared_folder_read_only": {
"type": "boolean"
},
"modified_by": {
"type": "string"
},
"no_access": {
"type": "boolean"
},
"parent_shared_folder_id": {
"type": "string"
},
"read_only": {
"type": "boolean"
},
"traverse_only": {
"type": "boolean"
}
}
},
@@ -52,5 +61,5 @@
"type": "integer"
}
},
"version": 2
"version": 3
}
@@ -52,5 +52,5 @@
"type": "string"
}
},
"version": 4
"version": 5
}
@@ -1,9 +1,27 @@
{
"type": "object",
"properties": {
"creation": {
"type": "string"
},
"docstatus": {
"type": "integer"
},
"idx": {
"type": "integer"
},
"modified": {
"type": "string"
},
"modified_by": {
"type": "string"
},
"name": {
"type": "string"
},
"owner": {
"type": "string"
}
},
"version": 1
"version": 2
}
@@ -3,7 +3,10 @@
"properties": {
"_id": {
"type": "string"
},
"timestamp": {
"type": "string"
}
},
"version": 3
"version": 4
}
@@ -25,15 +25,30 @@
"file_path": {
"type": "string"
},
"id": {
"type": "string"
},
"last_commit_id": {
"type": "string"
},
"mode": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"ref": {
"type": "string"
},
"size": {
"type": "integer"
},
"type": {
"type": "string"
}
},
"version": 5
"version": 6
}
@@ -7,6 +7,9 @@
"amountMicros": {
"type": "string"
},
"averageCost": {
"type": "number"
},
"averageCpm": {
"type": "number"
},
@@ -44,5 +47,5 @@
"type": "string"
}
},
"version": 6
"version": 7
}
@@ -0,0 +1,12 @@
{
"type": "object",
"properties": {
"comment": {
"type": "string"
},
"updateTime": {
"type": "string"
}
},
"version": 1
}
@@ -24,6 +24,9 @@
"name": {
"type": "string"
},
"singleUserBotDm": {
"type": "boolean"
},
"spaceHistoryState": {
"type": "string"
},
@@ -40,5 +43,5 @@
"type": "string"
}
},
"version": 2
"version": 3
}
@@ -1,6 +1,9 @@
{
"type": "object",
"properties": {
"changePasswordAtNextLogin": {
"type": "boolean"
},
"creationTime": {
"type": "string"
},
@@ -43,5 +46,5 @@
"type": "string"
}
},
"version": 1
"version": 2
}
@@ -1,18 +1,79 @@
{
"type": "object",
"properties": {
"agreedToTerms": {
"type": "boolean"
},
"archived": {
"type": "boolean"
},
"changePasswordAtNextLogin": {
"type": "boolean"
},
"creationTime": {
"type": "string"
},
"customerId": {
"type": "string"
},
"emails": {
"type": "array",
"items": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"primary": {
"type": "boolean"
}
}
}
},
"etag": {
"type": "string"
},
"id": {
"type": "string"
},
"includeInGlobalAddressList": {
"type": "boolean"
},
"ipWhitelisted": {
"type": "boolean"
},
"isAdmin": {
"type": "boolean"
},
"isDelegatedAdmin": {
"type": "boolean"
},
"isEnforcedIn2Sv": {
"type": "boolean"
},
"isEnrolledIn2Sv": {
"type": "boolean"
},
"isMailboxSetup": {
"type": "boolean"
},
"kind": {
"type": "string"
},
"languages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"languageCode": {
"type": "string"
},
"preference": {
"type": "string"
}
}
}
},
"lastLoginTime": {
"type": "string"
},
@@ -30,6 +91,9 @@
}
}
},
"orgUnitPath": {
"type": "string"
},
"primaryEmail": {
"type": "string"
},
@@ -37,5 +101,5 @@
"type": "boolean"
}
},
"version": 4
"version": 5
}
@@ -0,0 +1,27 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"messagesTotal": {
"type": "integer"
},
"messagesUnread": {
"type": "integer"
},
"name": {
"type": "string"
},
"threadsTotal": {
"type": "integer"
},
"threadsUnread": {
"type": "integer"
},
"type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
}
},
"version": 1
}
@@ -80,6 +80,12 @@
"to": {
"type": "string"
},
"x-gm-features": {
"type": "string"
},
"x-gm-gg": {
"type": "string"
},
"x-gm-message-state": {
"type": "string"
},
@@ -147,5 +153,5 @@
}
}
},
"version": 1
"version": 2
}
@@ -0,0 +1,18 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"labelIds": {
"type": "array",
"items": {
"type": "string"
}
},
"threadId": {
"type": "string"
}
},
"version": 1
}
@@ -68,6 +68,9 @@
"body": {
"type": "object",
"properties": {
"data": {
"type": "string"
},
"size": {
"type": "integer"
}
@@ -115,5 +118,5 @@
}
}
},
"version": 1
"version": 2
}
@@ -0,0 +1,18 @@
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"is_vip": {
"type": "boolean"
},
"name": {
"type": "string"
},
"website": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"client_id": {
"type": "integer"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
},
"version": 1
}
@@ -1,9 +1,20 @@
{
"type": "object",
"properties": {
"2026-02-19": {
"type": "object",
"properties": {
"slots": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"traceId": {
"type": "string"
}
},
"version": 1
"version": 2
}
@@ -1,6 +1,17 @@
{
"type": "object",
"properties": {
"additionalEmails": {
"type": "array",
"items": {
"type": "object",
"properties": {
"email": {
"type": "string"
}
}
}
},
"additionalPhones": {
"type": "array",
"items": {
@@ -85,6 +96,9 @@
"locationId": {
"type": "string"
},
"source": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
@@ -95,5 +109,5 @@
"type": "string"
}
},
"version": 2
"version": 3
}
@@ -1,6 +1,9 @@
{
"type": "object",
"properties": {
"error": {
"type": "string"
},
"isNew": {
"type": "boolean"
},
@@ -8,5 +11,5 @@
"type": "integer"
}
},
"version": 1
"version": 2
}
@@ -7,6 +7,60 @@
"fields": {
"type": "object",
"properties": {
"aggregateprogress": {
"type": "object",
"properties": {
"progress": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"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"
}
}
},
"attachment": {
"type": "array",
"items": {
@@ -257,6 +311,268 @@
}
}
},
"customfield_10001": {
"type": "null"
},
"customfield_10019": {
"type": "string"
},
"environment": {
"type": "null"
},
"issuelinks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"inwardIssue": {
"type": "object",
"properties": {
"fields": {
"type": "object",
"properties": {
"issuetype": {
"type": "object",
"properties": {
"avatarId": {
"type": "integer"
},
"description": {
"type": "string"
},
"entityId": {
"type": "string"
},
"hierarchyLevel": {
"type": "integer"
},
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
},
"subtask": {
"type": "boolean"
}
}
},
"priority": {
"type": "object",
"properties": {
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"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": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"outwardIssue": {
"type": "object",
"properties": {
"fields": {
"type": "object",
"properties": {
"issuetype": {
"type": "object",
"properties": {
"avatarId": {
"type": "integer"
},
"description": {
"type": "string"
},
"hierarchyLevel": {
"type": "integer"
},
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
},
"subtask": {
"type": "boolean"
}
}
},
"priority": {
"type": "object",
"properties": {
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"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": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"self": {
"type": "string"
},
"type": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"inward": {
"type": "string"
},
"name": {
"type": "string"
},
"outward": {
"type": "string"
},
"self": {
"type": "string"
}
}
}
}
}
},
"issuetype": {
"type": "object",
"properties": {
@@ -295,6 +611,74 @@
"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": {
"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": {
@@ -338,6 +722,9 @@
}
}
},
"security": {
"type": "null"
},
"status": {
"type": "object",
"properties": {
@@ -378,6 +765,29 @@
}
}
},
"statusCategory": {
"type": "object",
"properties": {
"colorName": {
"type": "string"
},
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"statuscategorychangedate": {
"type": "string"
},
"subtasks": {
"type": "array",
"items": {
@@ -495,8 +905,62 @@
"summary": {
"type": "string"
},
"timeestimate": {
"type": "null"
},
"timeoriginalestimate": {
"type": "null"
},
"timespent": {
"type": "null"
},
"updated": {
"type": "string"
},
"votes": {
"type": "object",
"properties": {
"hasVoted": {
"type": "boolean"
},
"self": {
"type": "string"
},
"votes": {
"type": "integer"
}
}
},
"watches": {
"type": "object",
"properties": {
"isWatching": {
"type": "boolean"
},
"self": {
"type": "string"
},
"watchCount": {
"type": "integer"
}
}
},
"worklog": {
"type": "object",
"properties": {
"maxResults": {
"type": "integer"
},
"startAt": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"workratio": {
"type": "integer"
}
}
},
@@ -510,5 +974,5 @@
"type": "string"
}
},
"version": 9
"version": 10
}
@@ -18,6 +18,49 @@
}
}
},
"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"
}
}
},
"components": {
"type": "array",
"items": {
@@ -241,6 +284,117 @@
}
}
},
"outwardIssue": {
"type": "object",
"properties": {
"fields": {
"type": "object",
"properties": {
"issuetype": {
"type": "object",
"properties": {
"avatarId": {
"type": "integer"
},
"description": {
"type": "string"
},
"entityId": {
"type": "string"
},
"hierarchyLevel": {
"type": "integer"
},
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"type": "string"
},
"subtask": {
"type": "boolean"
}
}
},
"priority": {
"type": "object",
"properties": {
"iconUrl": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"self": {
"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": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"key": {
"type": "string"
},
"self": {
"type": "string"
}
}
},
"self": {
"type": "string"
},
@@ -645,5 +799,5 @@
"type": "string"
}
},
"version": 9
"version": 10
}
@@ -25,6 +25,9 @@
"isPaused": {
"type": "boolean"
},
"jobTitle": {
"type": "string"
},
"lastName": {
"type": "string"
},
@@ -32,5 +35,5 @@
"type": "string"
}
},
"version": 5
"version": 6
}
@@ -1,6 +1,17 @@
{
"type": "object",
"properties": {
"assignee": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"id": {
"type": "string"
}
}
},
"createdAt": {
"type": "string"
},
@@ -39,5 +50,5 @@
"type": "string"
}
},
"version": 1
"version": 2
}
@@ -1,20 +1,193 @@
{
"type": "object",
"properties": {
"_links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"href": {
"type": "string"
},
"method": {
"type": "string"
},
"rel": {
"type": "string"
},
"schema": {
"type": "string"
},
"targetSchema": {
"type": "string"
}
}
}
},
"archive_url": {
"type": "string"
},
"content_type": {
"type": "string"
},
"create_time": {
"type": "string"
},
"delivery_status": {
"type": "object",
"properties": {
"can_cancel": {
"type": "boolean"
},
"emails_canceled": {
"type": "integer"
},
"emails_sent": {
"type": "integer"
},
"enabled": {
"type": "boolean"
},
"status": {
"type": "string"
}
}
},
"emails_sent": {
"type": "integer"
},
"id": {
"type": "string"
},
"long_archive_url": {
"type": "string"
},
"needs_block_refresh": {
"type": "boolean"
},
"recipients": {
"type": "object",
"properties": {
"list_id": {
"type": "string"
},
"list_is_active": {
"type": "boolean"
},
"list_name": {
"type": "string"
},
"recipient_count": {
"type": "integer"
},
"segment_opts": {
"type": "object",
"properties": {
"conditions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"condition_type": {
"type": "string"
},
"field": {
"type": "string"
},
"op": {
"type": "string"
}
}
}
},
"match": {
"type": "string"
}
}
},
"segment_text": {
"type": "string"
}
}
},
"report_summary": {
"type": "object",
"properties": {
"clicks": {
"type": "integer"
},
"ecommerce": {
"type": "object",
"properties": {
"total_orders": {
"type": "integer"
}
}
},
"opens": {
"type": "integer"
},
"subscriber_clicks": {
"type": "integer"
},
"unique_opens": {
"type": "integer"
}
}
},
"resendable": {
"type": "boolean"
},
"send_time": {
"type": "string"
},
"settings": {
"type": "object",
"properties": {
"authenticate": {
"type": "boolean"
},
"auto_footer": {
"type": "boolean"
},
"auto_tweet": {
"type": "boolean"
},
"drag_and_drop": {
"type": "boolean"
},
"fb_comments": {
"type": "boolean"
},
"folder_id": {
"type": "string"
},
"from_name": {
"type": "string"
},
"inline_css": {
"type": "boolean"
},
"reply_to": {
"type": "string"
},
"subject_line": {
"type": "string"
},
"template_id": {
"type": "integer"
},
"timewarp": {
"type": "boolean"
},
"title": {
"type": "string"
},
"to_name": {
"type": "string"
},
"use_conversation": {
"type": "boolean"
}
}
},
@@ -46,7 +219,13 @@
"type": "boolean"
}
}
},
"type": {
"type": "string"
},
"web_id": {
"type": "integer"
}
},
"version": 1
"version": 2
}
@@ -1,6 +1,9 @@
{
"type": "object",
"properties": {
"answer": {
"type": "string"
},
"createdDate": {
"type": "string"
},
@@ -19,15 +22,56 @@
"lastModifiedDate": {
"type": "string"
},
"metadados": {
"type": "object",
"properties": {
"Email": {
"type": "string"
},
"EnvioEmail": {
"type": "string"
},
"FollowUp": {
"type": "string"
},
"IdLead": {
"type": "string"
},
"MensagemTimestamp": {
"type": "string"
},
"Nome": {
"type": "string"
},
"RespostaAgenteTimestamp": {
"type": "string"
},
"sessionId": {
"type": "string"
},
"Status": {
"type": "string"
},
"Telefone": {
"type": "string"
}
}
},
"partitionKey": {
"type": "string"
},
"query": {
"type": "string"
},
"resourceId": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"timeStamp": {
"type": "integer"
},
@@ -35,5 +79,5 @@
"type": "integer"
}
},
"version": 2
"version": 3
}
@@ -0,0 +1,30 @@
{
"type": "object",
"properties": {
"@odata.context": {
"type": "string"
},
"createdDateTime": {
"type": "string"
},
"displayName": {
"type": "string"
},
"id": {
"type": "string"
},
"mailEnabled": {
"type": "boolean"
},
"mailNickname": {
"type": "string"
},
"securityEnabled": {
"type": "boolean"
},
"securityIdentifier": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"location": {
"type": "string"
}
},
"version": 1
}
@@ -1,12 +1,77 @@
{
"type": "object",
"properties": {
"createdBy": {
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "string"
}
}
}
}
},
"createdDateTime": {
"type": "string"
},
"file": {
"type": "object",
"properties": {
"hashes": {
"type": "object",
"properties": {
"quickXorHash": {
"type": "string"
}
}
},
"mimeType": {
"type": "string"
}
}
},
"fileSystemInfo": {
"type": "object",
"properties": {
"createdDateTime": {
"type": "string"
},
"lastModifiedDateTime": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"lastModifiedBy": {
"type": "object",
"properties": {
"user": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"email": {
"type": "string"
},
"id": {
"type": "string"
}
}
}
}
},
"lastModifiedDateTime": {
"type": "string"
},
@@ -16,6 +81,29 @@
"name": {
"type": "string"
},
"parentReference": {
"type": "object",
"properties": {
"driveId": {
"type": "string"
},
"driveType": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"path": {
"type": "string"
},
"siteId": {
"type": "string"
}
}
},
"path": {
"type": "string"
},
@@ -26,5 +114,5 @@
"type": "string"
}
},
"version": 1
"version": 2
}
@@ -24,9 +24,45 @@
"type": "string"
}
},
"ccRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
},
"changeKey": {
"type": "string"
},
"conversationId": {
"type": "string"
},
"conversationIndex": {
"type": "string"
},
"createdDateTime": {
"type": "string"
},
"flag": {
"type": "object",
"properties": {
"flagStatus": {
"type": "string"
}
}
},
"from": {
"type": "object",
"properties": {
@@ -49,9 +85,68 @@
"id": {
"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"
},
@@ -76,7 +171,10 @@
}
}
}
},
"webLink": {
"type": "string"
}
},
"version": 8
"version": 9
}
@@ -27,7 +27,27 @@
},
"size": {
"type": "integer"
},
"value": {
"type": "array",
"items": {
"type": "object",
"properties": {
"@odata.mediaContentType": {
"type": "string"
},
"@odata.type": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
},
"version": 7
"version": 8
}