{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/email-security_PhishGuardReport", "title": "email-security_PhishGuardReport", "properties": { "content": { "type": "string" }, "disposition": { "$ref": "#/components/schemas/email-security_DispositionLabel" }, "fields": { "properties": { "from": { "nullable": true, "type": "string" }, "postfix_id": { "type": "string" }, "to": { "items": { "type": "string" }, "type": "array" }, "ts": { "format": "date-time", "type": "string" } }, "required": [ "to", "ts", "postfix_id" ], "type": "object" }, "id": { "format": "int32", "type": "integer" }, "priority": { "type": "string" }, "tags": { "items": { "$ref": "#/components/schemas/email-security_PhishGuardReportTag" }, "nullable": true, "type": "array" }, "title": { "type": "string" }, "ts": { "format": "date-time", "type": "string" } }, "required": [ "id", "ts", "title", "content", "fields", "priority", "disposition" ], "type": "object" }