email-security_PhishGuardReport

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string
disposition object
fields object
id integer
priority string
tags array
title string
ts string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-email-security-phishguardreport-schema.json Raw ↑
{
  "$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"
}