changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "emails": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "from": {
+ "type": "string"
+ },
+ "hasAttachments": {
+ "type": "boolean"
+ },
+ "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",
+ "snippet",
+ "hasAttachments",
+ "labels"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "message": {
+ "type": "string"
+ },
+ "nextPageToken": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "resultCount": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "emails",
+ "nextPageToken",
+ "resultCount"
+ ],
+ "type": "object"
+}