addedOutput schema / properties / inbox_thread / properties / data / items / properties / authentication_results
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "dkim": {
+ "enum": [
+ "pass",
+ "fail",
+ "softfail",
+ "neutral",
+ "none",
+ "temperror",
+ "permerror",
+ "policy",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "dmarc": {
+ "enum": [
+ "pass",
+ "fail",
+ "softfail",
+ "neutral",
+ "none",
+ "temperror",
+ "permerror",
+ "policy",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "raw": {
+ "additionalProperties": false,
+ "properties": {
+ "authenticationResults": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "receivedSpf": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "spamStatus": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "authenticationResults",
+ "receivedSpf",
+ "spamStatus"
+ ],
+ "type": "object"
+ },
+ "spam": {
+ "additionalProperties": false,
+ "properties": {
+ "isSpam": {
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "scoreMilli": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "isSpam",
+ "scoreMilli"
+ ],
+ "type": "object"
+ },
+ "spf": {
+ "enum": [
+ "pass",
+ "fail",
+ "softfail",
+ "neutral",
+ "none",
+ "temperror",
+ "permerror",
+ "policy",
+ "unknown"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "spf",
+ "dkim",
+ "dmarc",
+ "spam",
+ "raw"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+}
changedOutput schema / properties / inbox_thread / properties / data / items / required
Previous value: -[
- "id",
- "thread_id",
- "mailbox_id",
- "address",
- "folder_ids",
- "keywords",
- "from",
- "to",
- "subject",
- "received_at",
- "preview",
- "has_attachment",
- "size",
- "object",
- "cc",
- "reply_to",
- "message_id",
- "in_reply_to",
- "references",
- "body_values",
- "text_body",
- "html_body",
- "attachments"
-]New value: +[
+ "id",
+ "thread_id",
+ "mailbox_id",
+ "address",
+ "folder_ids",
+ "keywords",
+ "from",
+ "to",
+ "subject",
+ "received_at",
+ "preview",
+ "has_attachment",
+ "size",
+ "authentication_results",
+ "object",
+ "cc",
+ "reply_to",
+ "message_id",
+ "in_reply_to",
+ "references",
+ "body_values",
+ "text_body",
+ "html_body",
+ "attachments"
+]