chore: NODE-3065 - Generate Schema Files (no-changelog) (#15893)

This commit is contained in:
Jon
2025-06-03 22:17:50 +01:00
committed by GitHub
parent f8c9038c10
commit 7639cfbaa7
76 changed files with 1953 additions and 977 deletions

View File

@@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"created_at": {
"type": "string"
},
"deleted_TS": {
"type": "null"
},
"dropbox_thumbnailURL": {
"type": "null"
},
"id": {
"type": "integer"
},
"updated_at": {
"type": "string"
}
},
"version": 1
}

View File

@@ -31,6 +31,9 @@
} }
} }
}, },
"sessionId": {
"type": "string"
},
"warnings": { "warnings": {
"type": "array", "type": "array",
"items": { "items": {
@@ -41,7 +44,10 @@
} }
} }
} }
},
"windowId": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

@@ -0,0 +1,40 @@
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"liveViewUrl": {
"type": "string"
},
"targetId": {
"type": "string"
},
"windowId": {
"type": "string"
}
}
},
"errors": {
"type": "null"
},
"meta": {
"type": "object",
"properties": {
"requestId": {
"type": "string"
}
}
},
"sessionId": {
"type": "string"
},
"warnings": {
"type": "null"
},
"windowId": {
"type": "string"
}
},
"version": 1
}

View File

@@ -7,9 +7,12 @@
"name": { "name": {
"type": "string" "type": "string"
}, },
"resource_subtype": {
"type": "string"
},
"resource_type": { "resource_type": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

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

View File

@@ -21,10 +21,7 @@
}, },
"photoUrl": { "photoUrl": {
"type": "string" "type": "string"
},
"pronouns": {
"type": "null"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -15,7 +15,29 @@
}, },
"type": { "type": {
"type": "string" "type": "string"
},
"type_config": {
"type": "object",
"properties": {
"options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"orderindex": {
"type": "integer"
}
}
}
}
}
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"approved": {
"type": "boolean"
}
}
}
},
"version": 1
}

View File

@@ -1,9 +1,39 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"contentHash": {
"type": "string"
},
"contentSize": {
"type": "integer"
},
"id": { "id": {
"type": "string" "type": "string"
},
"isDownloadable": {
"type": "boolean"
},
"lastModifiedClient": {
"type": "string"
},
"lastModifiedServer": {
"type": "string"
},
"name": {
"type": "string"
},
"pathDisplay": {
"type": "string"
},
"pathLower": {
"type": "string"
},
"rev": {
"type": "string"
},
"type": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -13,6 +13,20 @@
"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"
}, },
@@ -53,5 +67,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -0,0 +1,50 @@
{
"type": "object",
"properties": {
"civility": {
"type": "string"
},
"company": {
"type": "string"
},
"company_linkedin": {
"type": "string"
},
"country": {
"type": "string"
},
"email": {
"type": "array",
"items": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"qualification": {
"type": "string"
}
}
}
},
"first_name": {
"type": "string"
},
"full_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"linkedin": {
"type": "string"
},
"nb_employees": {
"type": "string"
},
"website": {
"type": "string"
}
},
"version": 1
}

View File

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

View File

@@ -7,21 +7,33 @@
"amountMicros": { "amountMicros": {
"type": "string" "type": "string"
}, },
"averageCpm": {
"type": "number"
},
"costMicros": { "costMicros": {
"type": "string" "type": "string"
}, },
"ctr": {
"type": "number"
},
"id": { "id": {
"type": "string" "type": "string"
}, },
"impressions": { "impressions": {
"type": "string" "type": "string"
}, },
"interactionRate": {
"type": "number"
},
"interactions": { "interactions": {
"type": "string" "type": "string"
}, },
"name": { "name": {
"type": "string" "type": "string"
}, },
"optimizationScore": {
"type": "number"
},
"period": { "period": {
"type": "string" "type": "string"
}, },
@@ -35,5 +47,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -3,10 +3,7 @@
"properties": { "properties": {
"date": { "date": {
"type": "string" "type": "string"
},
"sessions": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -47,9 +47,6 @@
"organizer": { "organizer": {
"type": "object", "type": "object",
"properties": { "properties": {
"displayName": {
"type": "string"
},
"email": { "email": {
"type": "string" "type": "string"
}, },
@@ -90,5 +87,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -16,6 +16,9 @@
"sender": { "sender": {
"type": "object", "type": "object",
"properties": { "properties": {
"displayName": {
"type": "string"
},
"name": { "name": {
"type": "string" "type": "string"
}, },
@@ -27,8 +30,34 @@
"space": { "space": {
"type": "object", "type": "object",
"properties": { "properties": {
"lastActiveTime": {
"type": "string"
},
"membershipCount": {
"type": "object",
"properties": {
"joinedDirectHumanUserCount": {
"type": "integer"
}
}
},
"name": { "name": {
"type": "string" "type": "string"
},
"spaceHistoryState": {
"type": "string"
},
"spaceThreadingState": {
"type": "string"
},
"spaceType": {
"type": "string"
},
"spaceUri": {
"type": "string"
},
"type": {
"type": "string"
} }
} }
}, },
@@ -44,5 +73,5 @@
} }
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -290,6 +290,9 @@
"starred": { "starred": {
"type": "boolean" "type": "boolean"
}, },
"thumbnailLink": {
"type": "string"
},
"thumbnailVersion": { "thumbnailVersion": {
"type": "string" "type": "string"
}, },
@@ -315,5 +318,5 @@
"type": "boolean" "type": "boolean"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

@@ -1,18 +1,30 @@
{ {
"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": 2 "version": 3
} }

View File

@@ -80,12 +80,6 @@
"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"
}, },
@@ -147,5 +141,5 @@
} }
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -1,18 +1,30 @@
{ {
"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

@@ -1,6 +1,9 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"historyId": {
"type": "string"
},
"id": { "id": {
"type": "string" "type": "string"
}, },
@@ -9,15 +12,27 @@
"items": { "items": {
"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"
} }
@@ -25,5 +40,5 @@
} }
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -4,285 +4,18 @@
"agent_id": { "agent_id": {
"type": "integer" "type": "integer"
}, },
"appointment_type": {
"type": "integer"
},
"attachment_count": {
"type": "integer"
},
"category_1": {
"type": "string"
},
"category_2": {
"type": "string"
},
"category_3": {
"type": "string"
},
"category_4": {
"type": "string"
},
"child_count": {
"type": "integer"
},
"client_id": {
"type": "integer"
},
"client_name": {
"type": "string"
},
"cost": {
"type": "integer"
},
"dateoccurred": {
"type": "string"
},
"deadlinedate": {
"type": "string"
},
"department_id": {
"type": "integer"
},
"details": { "details": {
"type": "string" "type": "string"
}, },
"emailcclist": {
"type": "string"
},
"emailtolist": {
"type": "string"
},
"enduserstatus": {
"type": "integer"
},
"estimatedays": {
"type": "integer"
},
"excludefromsla": {
"type": "boolean"
},
"fixbydate": {
"type": "string"
},
"flagged": {
"type": "boolean"
},
"guid": {
"type": "string"
},
"id": { "id": {
"type": "integer" "type": "integer"
}, },
"idsummary": {
"type": "string"
},
"impact": {
"type": "integer"
},
"impactlevel": {
"type": "integer"
},
"inactive": {
"type": "boolean"
},
"invoiceseperatelyoverride": {
"type": "boolean"
},
"is_vip": {
"type": "boolean"
},
"isimportantcontact": {
"type": "boolean"
},
"itil_requesttype_id": {
"type": "integer"
},
"last_update": {
"type": "string"
},
"lastactiondate": {
"type": "string"
},
"lastincomingemail": {
"type": "string"
},
"matched_kb_id": {
"type": "integer"
},
"maximumRestrictedPriority": {
"type": "integer"
},
"merged_into_id": {
"type": "integer"
},
"notuseful_count": {
"type": "integer"
},
"onhold": {
"type": "boolean"
},
"oppcompanyname": {
"type": "string"
},
"oppvalueadjusted": {
"type": "integer"
},
"organisation_id": {
"type": "integer"
},
"pipeline_stage_id": {
"type": "integer"
},
"priority_id": {
"type": "integer"
},
"product_id": {
"type": "integer"
},
"projectinternaltask": {
"type": "boolean"
},
"purchaseordernumber": {
"type": "string"
},
"quantity": {
"type": "integer"
},
"read": {
"type": "boolean"
},
"release_id": {
"type": "integer"
},
"release_important": {
"type": "boolean"
},
"release2_id": {
"type": "integer"
},
"release3_id": {
"type": "integer"
},
"releasenotegroup_id": {
"type": "integer"
},
"reportedby": {
"type": "string"
},
"respondbydate": {
"type": "string"
},
"responsedate": {
"type": "string"
},
"reviewed": {
"type": "boolean"
},
"section_timezone": {
"type": "string"
},
"servicestatusnote": {
"type": "string"
},
"site_id": {
"type": "integer"
},
"site_name": {
"type": "string"
},
"site_timezone": {
"type": "string"
},
"sla_id": {
"type": "integer"
},
"slaresponsestate": {
"type": "string"
},
"source": {
"type": "integer"
},
"starttime": {
"type": "string"
},
"starttimeslot": {
"type": "integer"
},
"status_id": {
"type": "integer"
},
"summary": { "summary": {
"type": "string" "type": "string"
}, },
"supplier_status": {
"type": "integer"
},
"table": {
"type": "integer"
},
"targetdate": { "targetdate": {
"type": "string" "type": "string"
},
"targettime": {
"type": "string"
},
"targettimeslot": {
"type": "integer"
},
"team": {
"type": "string"
},
"ticket_tags": {
"type": "string"
},
"ticketage": {
"type": "number"
},
"tickettype_id": {
"type": "integer"
},
"updateservicestatus": {
"type": "boolean"
},
"urgency": {
"type": "integer"
},
"use": {
"type": "string"
},
"useful_count": {
"type": "integer"
},
"user_email": {
"type": "string"
},
"user_id": {
"type": "integer"
},
"user_name": {
"type": "string"
},
"userdef1": {
"type": "string"
},
"userdef2": {
"type": "string"
},
"userdef3": {
"type": "string"
},
"userdef4": {
"type": "string"
},
"userdef5": {
"type": "string"
},
"workflow_id": {
"type": "integer"
},
"workflow_step": {
"type": "integer"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

@@ -14,6 +14,49 @@
"type": "object", "type": "object",
"properties": { "properties": {
"dealname": { "dealname": {
"type": "object",
"properties": {
"source": {
"type": "string"
},
"timestamp": {
"type": "integer"
},
"value": {
"type": "string"
},
"versions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"requestId": {
"type": "string"
},
"source": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"timestamp": {
"type": "integer"
},
"updatedByUserId": {
"type": "integer"
},
"value": {
"type": "string"
}
}
}
}
}
},
"dealstage": {
"type": "object", "type": "object",
"properties": { "properties": {
"source": { "source": {
@@ -36,6 +79,9 @@
"name": { "name": {
"type": "string" "type": "string"
}, },
"requestId": {
"type": "string"
},
"source": { "source": {
"type": "string" "type": "string"
}, },
@@ -48,6 +94,9 @@
"updatedByUserId": { "updatedByUserId": {
"type": "integer" "type": "integer"
}, },
"useTimestampAsPersistenceTimestamp": {
"type": "boolean"
},
"value": { "value": {
"type": "string" "type": "string"
} }
@@ -57,7 +106,21 @@
} }
} }
} }
},
"stateChanges": {
"type": "array",
"items": {
"type": "object",
"properties": {
"changeFlag": {
"type": "string"
},
"timestamp": {
"type": "integer"
}
}
}
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -16,9 +16,6 @@
"createdate": { "createdate": {
"type": "string" "type": "string"
}, },
"dealname": {
"type": "string"
},
"hs_lastmodifieddate": { "hs_lastmodifieddate": {
"type": "string" "type": "string"
}, },
@@ -31,5 +28,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -12,67 +12,7 @@
}, },
"portalId": { "portalId": {
"type": "integer" "type": "integer"
},
"properties": {
"type": "object",
"properties": {
"subject": {
"type": "object",
"properties": {
"persistenceTimestamp": {
"type": "integer"
},
"sensitivityLevel": {
"type": "string"
},
"source": {
"type": "string"
},
"timestamp": {
"type": "integer"
},
"value": {
"type": "string"
},
"versions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"persistenceTimestamp": {
"type": "integer"
},
"requestId": {
"type": "string"
},
"source": {
"type": "string"
},
"sourceId": {
"type": "string"
},
"sourceVid": {
"type": "array",
"items": {
"type": "integer"
}
},
"timestamp": {
"type": "integer"
},
"value": {
"type": "string"
}
}
}
}
}
}
}
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -0,0 +1,26 @@
{
"type": "object",
"properties": {
"content": {
"type": "string"
},
"description": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"usage": {
"type": "object",
"properties": {
"tokens": {
"type": "integer"
}
}
}
},
"version": 1
}

View File

@@ -7,6 +7,20 @@
"fields": { "fields": {
"type": "object", "type": "object",
"properties": { "properties": {
"aggregateprogress": {
"type": "object",
"properties": {
"progress": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"aggregatetimeoriginalestimate": {
"type": "null"
},
"attachment": { "attachment": {
"type": "array", "type": "array",
"items": { "items": {
@@ -82,6 +96,415 @@
} }
} }
}, },
"comment": {
"type": "object",
"properties": {
"comments": {
"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"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"body": {
"type": "string"
},
"created": {
"type": "string"
},
"id": {
"type": "string"
},
"jsdPublic": {
"type": "boolean"
},
"self": {
"type": "string"
},
"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"
},
"self": {
"type": "string"
},
"timeZone": {
"type": "string"
}
}
},
"updated": {
"type": "string"
}
}
}
},
"maxResults": {
"type": "integer"
},
"self": {
"type": "string"
},
"startAt": {
"type": "integer"
},
"total": {
"type": "integer"
}
}
},
"created": {
"type": "string"
},
"creator": {
"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"
}
}
},
"fixVersions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"released": {
"type": "boolean"
},
"releaseDate": {
"type": "string"
},
"self": {
"type": "string"
}
}
}
},
"issuelinks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"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"
},
"type": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"inward": {
"type": "string"
},
"name": {
"type": "string"
},
"outward": {
"type": "string"
},
"self": {
"type": "string"
}
}
}
}
}
},
"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"
}
}
},
"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": { "project": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -165,6 +588,9 @@
} }
} }
}, },
"security": {
"type": "null"
},
"status": { "status": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -205,9 +631,183 @@
} }
} }
}, },
"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": {
"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"
}
}
}
},
"summary": { "summary": {
"type": "string" "type": "string"
}, },
"timeestimate": {
"type": "null"
},
"timeoriginalestimate": {
"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": { "worklog": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -257,9 +857,6 @@
"displayName": { "displayName": {
"type": "string" "type": "string"
}, },
"emailAddress": {
"type": "string"
},
"self": { "self": {
"type": "string" "type": "string"
}, },
@@ -324,9 +921,6 @@
"displayName": { "displayName": {
"type": "string" "type": "string"
}, },
"emailAddress": {
"type": "string"
},
"self": { "self": {
"type": "string" "type": "string"
}, },
@@ -342,6 +936,9 @@
} }
} }
} }
},
"workratio": {
"type": "integer"
} }
} }
}, },
@@ -355,5 +952,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -7,115 +7,6 @@
"fields": { "fields": {
"type": "object", "type": "object",
"properties": { "properties": {
"created": {
"type": "string"
},
"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"
}
}
},
"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": {
"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"
}
}
},
"status": { "status": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -171,5 +62,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -21,10 +21,7 @@
}, },
"lastName": { "lastName": {
"type": "string" "type": "string"
},
"linkedinUrl": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -0,0 +1,30 @@
{
"type": "object",
"properties": {
"_id": {
"type": "string"
},
"campaignId": {
"type": "string"
},
"companyName": {
"type": "string"
},
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"isPaused": {
"type": "boolean"
},
"lastName": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"version": 1
}

View File

@@ -1,15 +1,12 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"status": {
"type": "integer"
},
"message": { "message": {
"type": "string" "type": "string"
},
"status": {
"type": "integer"
} }
}, },
"required": [ "version": 1
"status",
"message"
]
} }

View File

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

View File

@@ -1,18 +1,12 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"createdDateTime": {
"type": "string"
},
"displayName": { "displayName": {
"type": "string" "type": "string"
}, },
"id": { "id": {
"type": "string" "type": "string"
},
"userPrincipalName": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -4,6 +4,17 @@
"createdBy": { "createdBy": {
"type": "object", "type": "object",
"properties": { "properties": {
"application": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"id": {
"type": "string"
}
}
},
"user": { "user": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -50,12 +61,20 @@
} }
} }
}, },
"id": {
"type": "string"
},
"lastModifiedBy": { "lastModifiedBy": {
"type": "object", "type": "object",
"properties": { "properties": {
"application": {
"type": "object",
"properties": {
"displayName": {
"type": "string"
},
"id": {
"type": "string"
}
}
},
"user": { "user": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -100,13 +119,7 @@
"type": "string" "type": "string"
} }
} }
},
"size": {
"type": "integer"
},
"webUrl": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -75,20 +75,6 @@
"properties": { "properties": {
"childCount": { "childCount": {
"type": "integer" "type": "integer"
},
"view": {
"type": "object",
"properties": {
"sortBy": {
"type": "string"
},
"sortOrder": {
"type": "string"
},
"viewType": {
"type": "string"
}
}
} }
} }
}, },
@@ -178,5 +164,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

@@ -24,9 +24,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": {
@@ -49,9 +85,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": 3 "version": 4
} }

View File

@@ -27,14 +27,6 @@
"conversationId": { "conversationId": {
"type": "string" "type": "string"
}, },
"flag": {
"type": "object",
"properties": {
"flagStatus": {
"type": "string"
}
}
},
"from": { "from": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -57,34 +49,9 @@
"id": { "id": {
"type": "string" "type": "string"
}, },
"importance": {
"type": "string"
},
"isRead": {
"type": "boolean"
},
"receivedDateTime": { "receivedDateTime": {
"type": "string" "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": {
@@ -100,29 +67,7 @@
} }
} }
} }
},
"subject": {
"type": "string"
},
"toRecipients": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -0,0 +1,39 @@
{
"type": "object",
"properties": {
"connection": {
"type": "string"
},
"contentCrc64": {
"type": "string"
},
"contentLength": {
"type": "integer"
},
"contentMd5": {
"type": "string"
},
"date": {
"type": "string"
},
"etag": {
"type": "string"
},
"lastModified": {
"type": "string"
},
"requestId": {
"type": "string"
},
"requestServerEncrypted": {
"type": "boolean"
},
"server": {
"type": "string"
},
"version": {
"type": "string"
}
},
"version": 1
}

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

@@ -15,31 +15,15 @@
} }
} }
}, },
"completedDateTime": { "categories": {
"type": "object", "type": "array",
"properties": { "items": {
"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"
}, },
@@ -62,5 +46,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,9 +1,6 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"activeRegionNum": {
"type": "integer"
},
"beginTime": { "beginTime": {
"type": "string" "type": "string"
}, },
@@ -49,5 +46,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,162 +1,15 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"archived": {
"type": "boolean"
},
"created_by": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object": {
"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": { "id": {
"type": "string" "type": "string"
}, },
"in_trash": { "name": {
"type": "boolean"
},
"is_inline": {
"type": "boolean"
},
"last_edited_by": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object": {
"type": "string"
}
}
},
"last_edited_time": {
"type": "string" "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": 2 "version": 3
} }

View File

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

View File

@@ -1,18 +1,9 @@
{ {
"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": 2 "version": 3
} }

View File

@@ -1,21 +1,9 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"__last_update": {
"type": "string"
},
"active": { "active": {
"type": "boolean" "type": "boolean"
}, },
"contact_fullname": {
"type": "string"
},
"contact_lastname": {
"type": "string"
},
"country": {
"type": "boolean"
},
"create_date": { "create_date": {
"type": "string" "type": "string"
}, },
@@ -24,34 +12,7 @@
}, },
"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"
}
},
"street4": {
"type": "boolean"
},
"tag_ids": {
"type": "array",
"items": {
"type": "integer"
}
},
"type": {
"type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -13,6 +13,34 @@
"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"
}, },
@@ -25,5 +53,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,6 +1,12 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"custom_fields": {
"type": "array",
"items": {
"type": "string"
}
},
"emails": { "emails": {
"type": "array", "type": "array",
"items": { "items": {
@@ -46,5 +52,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 3 "version": 4
} }

View File

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

View File

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

View File

@@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"ETag": {
"type": "string"
},
"Key": {
"type": "string"
},
"LastModified": {
"type": "string"
},
"Size": {
"type": "string"
},
"StorageClass": {
"type": "string"
}
},
"version": 1
}

View File

@@ -11,10 +11,7 @@
"type": "string" "type": "string"
} }
} }
},
"Id": {
"type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

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

View File

@@ -14,10 +14,7 @@
}, },
"Id": { "Id": {
"type": "string" "type": "string"
},
"Probability": {
"type": "integer"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -11,10 +11,7 @@
"type": "string" "type": "string"
} }
} }
},
"Id": {
"type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -1,9 +1,256 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "line_items": {
"type": "integer" "type": "array",
"items": {
"type": "object",
"properties": {
"admin_graphql_api_id": {
"type": "string"
},
"current_quantity": {
"type": "integer"
},
"discount_allocations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"amount_set": {
"type": "object",
"properties": {
"presentment_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
},
"shop_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
}
}
},
"discount_application_index": {
"type": "integer"
}
}
}
},
"duties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"admin_graphql_api_id": {
"type": "string"
},
"id": {
"type": "integer"
},
"price_set": {
"type": "object",
"properties": {
"presentment_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
},
"shop_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
}
}
}
}
}
},
"fulfillable_quantity": {
"type": "integer"
},
"fulfillment_service": {
"type": "string"
},
"gift_card": {
"type": "boolean"
},
"grams": {
"type": "integer"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"price": {
"type": "string"
},
"price_set": {
"type": "object",
"properties": {
"presentment_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
},
"shop_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
}
}
},
"product_exists": {
"type": "boolean"
},
"properties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
}
},
"quantity": {
"type": "integer"
},
"requires_shipping": {
"type": "boolean"
},
"tax_lines": {
"type": "array",
"items": {
"type": "object",
"properties": {
"channel_liable": {
"type": "boolean"
},
"price": {
"type": "string"
},
"price_set": {
"type": "object",
"properties": {
"presentment_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
},
"shop_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
}
}
},
"title": {
"type": "string"
}
}
}
},
"taxable": {
"type": "boolean"
},
"title": {
"type": "string"
},
"total_discount": {
"type": "string"
},
"total_discount_set": {
"type": "object",
"properties": {
"presentment_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
},
"shop_money": {
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"currency_code": {
"type": "string"
}
}
}
}
},
"vendor": {
"type": "string"
}
}
}
},
"total_price": {
"type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -1,9 +1,6 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"app_id": {
"type": "string"
},
"blocks": { "blocks": {
"type": "array", "type": "array",
"items": { "items": {
@@ -27,9 +24,6 @@
}, },
"type": { "type": {
"type": "string" "type": "string"
},
"user_id": {
"type": "string"
} }
} }
} }
@@ -46,49 +40,6 @@
} }
} }
}, },
"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"
}
}
},
"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"
}, },
@@ -108,5 +59,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -1,9 +1,175 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"member": { "color": {
"type": "string"
},
"deleted": {
"type": "boolean"
},
"id": {
"type": "string"
},
"is_admin": {
"type": "boolean"
},
"is_app_user": {
"type": "boolean"
},
"is_bot": {
"type": "boolean"
},
"is_email_confirmed": {
"type": "boolean"
},
"is_owner": {
"type": "boolean"
},
"is_primary_owner": {
"type": "boolean"
},
"is_restricted": {
"type": "boolean"
},
"is_ultra_restricted": {
"type": "boolean"
},
"name": {
"type": "string"
},
"profile": {
"type": "object",
"properties": {
"always_active": {
"type": "boolean"
},
"api_app_id": {
"type": "string"
},
"avatar_hash": {
"type": "string"
},
"bot_id": {
"type": "string"
},
"display_name": {
"type": "string"
},
"display_name_normalized": {
"type": "string"
},
"fields": {
"type": "null"
},
"first_name": {
"type": "string"
},
"huddle_state": {
"type": "string"
},
"huddle_state_expiration_ts": {
"type": "integer"
},
"image_1024": {
"type": "string"
},
"image_192": {
"type": "string"
},
"image_24": {
"type": "string"
},
"image_32": {
"type": "string"
},
"image_48": {
"type": "string"
},
"image_512": {
"type": "string"
},
"image_72": {
"type": "string"
},
"image_original": {
"type": "string"
},
"is_custom_image": {
"type": "boolean"
},
"last_name": {
"type": "string"
},
"phone": {
"type": "string"
},
"real_name": {
"type": "string"
},
"real_name_normalized": {
"type": "string"
},
"skype": {
"type": "string"
},
"status_emoji": {
"type": "string"
},
"status_emoji_display_info": {
"type": "array",
"items": {
"type": "object",
"properties": {
"display_url": {
"type": "string"
},
"emoji_name": {
"type": "string"
},
"unicode": {
"type": "string"
}
}
}
},
"status_expiration": {
"type": "integer"
},
"status_text": {
"type": "string"
},
"status_text_canonical": {
"type": "string"
},
"team": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"real_name": {
"type": "string"
},
"team_id": {
"type": "string"
},
"tz": {
"type": "string"
},
"tz_label": {
"type": "string"
},
"tz_offset": {
"type": "integer"
},
"updated": {
"type": "integer"
},
"who_can_share_contact_card": {
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

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

View File

@@ -9,12 +9,6 @@
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"encoding": {
"type": "string"
},
"is_binary": {
"type": "boolean"
},
"label": { "label": {
"type": "null" "type": "null"
}, },
@@ -27,9 +21,6 @@
"success": { "success": {
"type": "boolean" "type": "boolean"
}, },
"text": {
"type": "string"
},
"udh": { "udh": {
"type": "null" "type": "null"
} }
@@ -43,5 +34,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 1 "version": 2
} }

View File

@@ -4,9 +4,18 @@
"attributes": { "attributes": {
"type": "object", "type": "object",
"properties": { "properties": {
"content": {
"type": "string"
},
"createdAt": { "createdAt": {
"type": "string" "type": "string"
}, },
"is_from_user": {
"type": "boolean"
},
"timestamp": {
"type": "string"
},
"updatedAt": { "updatedAt": {
"type": "string" "type": "string"
} }
@@ -16,5 +25,5 @@
"type": "integer" "type": "integer"
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -28,9 +28,6 @@
"language_code": { "language_code": {
"type": "string" "type": "string"
}, },
"last_name": {
"type": "string"
},
"username": { "username": {
"type": "string" "type": "string"
} }
@@ -39,5 +36,5 @@
} }
} }
}, },
"version": 3 "version": 4
} }

View File

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

View File

@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"data": {
"type": "object",
"properties": {
"text": {
"type": "string"
}
}
}
},
"version": 1
}

View File

@@ -21,32 +21,15 @@
}, },
"type": { "type": {
"type": "string" "type": "string"
},
"username": {
"type": "string"
} }
} }
}, },
"date": { "date": {
"type": "integer" "type": "integer"
}, },
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"length": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"type": {
"type": "string"
},
"url": {
"type": "string"
}
}
}
},
"from": { "from": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -73,5 +56,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -16,14 +16,8 @@
"id": { "id": {
"type": "integer" "type": "integer"
}, },
"last_name": {
"type": "string"
},
"type": { "type": {
"type": "string" "type": "string"
},
"username": {
"type": "string"
} }
} }
}, },
@@ -76,5 +70,5 @@
} }
} }
}, },
"version": 2 "version": 3
} }

View File

@@ -4,9 +4,6 @@
"closed": { "closed": {
"type": "boolean" "type": "boolean"
}, },
"color": {
"type": "null"
},
"datasource": { "datasource": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -34,5 +31,5 @@
"type": "null" "type": "null"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -64,9 +64,6 @@
} }
} }
}, },
"cardRole": {
"type": "null"
},
"checkItemStates": { "checkItemStates": {
"type": "array", "type": "array",
"items": { "items": {
@@ -203,5 +200,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -1,6 +1,12 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"author_id": {
"type": "string"
},
"conversation_id": {
"type": "string"
},
"edit_history_tweet_ids": { "edit_history_tweet_ids": {
"type": "array", "type": "array",
"items": { "items": {
@@ -14,5 +20,5 @@
"type": "string" "type": "string"
} }
}, },
"version": 2 "version": 3
} }

View File

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

View File

@@ -155,10 +155,7 @@
} }
} }
} }
},
"Vendor_Name": {
"type": "null"
} }
}, },
"version": 3 "version": 4
} }

View File

@@ -1,6 +1,87 @@
{ {
"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"
},
"Created_Time": {
"type": "string"
},
"Full_Name": { "Full_Name": {
"type": "string" "type": "string"
}, },
@@ -10,6 +91,9 @@
"Last_Name": { "Last_Name": {
"type": "string" "type": "string"
}, },
"Locked__s": {
"type": "boolean"
},
"Owner": { "Owner": {
"type": "object", "type": "object",
"properties": { "properties": {
@@ -23,7 +107,21 @@
"type": "string" "type": "string"
} }
} }
},
"Tag": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
} }
}, },
"version": 2 "version": 3
} }