changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "attachments": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "attachmentId": {
+ "type": "string"
+ },
+ "filename": {
+ "type": "string"
+ },
+ "mimeType": {
+ "type": "string"
+ },
+ "size": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "filename",
+ "mimeType",
+ "size",
+ "attachmentId"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "bcc": {
+ "type": "string"
+ },
+ "body": {
+ "additionalProperties": false,
+ "properties": {
+ "html": {
+ "type": "string"
+ },
+ "text": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "cc": {
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "from": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "labels": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "snippet": {
+ "type": "string"
+ },
+ "subject": {
+ "type": "string"
+ },
+ "threadId": {
+ "type": "string"
+ },
+ "to": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "threadId",
+ "subject",
+ "body",
+ "attachments",
+ "labels",
+ "snippet"
+ ],
+ "type": "object"
+}