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

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

View File

@@ -0,0 +1,331 @@
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"number": {
"type": "integer"
},
"threads": {
"type": "integer"
},
"type": {
"type": "string"
},
"folderId": {
"type": "integer"
},
"status": {
"type": "string"
},
"state": {
"type": "string"
},
"subject": {
"type": "string"
},
"preview": {
"type": "string"
},
"mailboxId": {
"type": "integer"
},
"createdBy": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"type": {
"type": "string"
},
"first": {
"type": "string"
},
"last": {
"type": "string"
},
"photoUrl": {
"type": "string"
},
"email": {
"type": "string"
}
},
"required": [
"id",
"type",
"first",
"last",
"email"
]
},
"createdAt": {
"type": "string"
},
"closedBy": {
"type": "integer"
},
"closedByUser": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"type": {
"type": "string"
},
"first": {
"type": "string"
},
"last": {
"type": "string"
},
"email": {
"type": "string"
}
},
"required": [
"id",
"type",
"first",
"last",
"email"
]
},
"userUpdatedAt": {
"type": "string"
},
"customerWaitingSince": {
"type": "object",
"properties": {
"time": {
"type": "string"
},
"friendly": {
"type": "string"
}
},
"required": [
"time",
"friendly"
]
},
"source": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"via": {
"type": "string"
}
},
"required": [
"type",
"via"
]
},
"tags": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"color": {
"type": "string"
},
"tag": {
"type": "string"
}
},
"required": [
"id",
"color",
"tag"
]
}
},
"cc": {
"type": "array",
"items": {
"type": "string"
}
},
"primaryCustomer": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"type": {
"type": "string"
},
"first": {
"type": "string"
},
"last": {
"type": "string"
},
"photoUrl": {
"type": "string"
},
"email": {
"type": "string"
}
},
"required": [
"id",
"type",
"first",
"last",
"photoUrl",
"email"
]
},
"customFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"id",
"name",
"value",
"text"
]
}
},
"_links": {
"type": "object",
"properties": {
"self": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"mailbox": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"primaryCustomer": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"createdByCustomer": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"closedBy": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"threads": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
},
"web": {
"type": "object",
"properties": {
"href": {
"type": "string"
}
},
"required": [
"href"
]
}
},
"required": [
"self",
"mailbox",
"primaryCustomer",
"closedBy",
"threads",
"web"
]
}
},
"required": [
"id",
"number",
"threads",
"type",
"folderId",
"status",
"state",
"preview",
"mailboxId",
"createdBy",
"createdAt",
"closedBy",
"closedByUser",
"userUpdatedAt",
"customerWaitingSince",
"source",
"tags",
"cc",
"bcc",
"primaryCustomer",
"customFields",
"_embedded",
"_links"
]
}