email-security_Attachment

APIs.ioEngineeringPlatform

Properties

Name Type Description
content_type string
detection object
encrypted boolean
name string
size integer
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-email-security-attachment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/email-security_Attachment",
  "title": "email-security_Attachment",
  "properties": {
    "content_type": {
      "nullable": true,
      "type": "string"
    },
    "detection": {
      "allOf": [
        {
          "$ref": "#/components/schemas/email-security_DispositionLabel"
        },
        {
          "nullable": true,
          "type": "string"
        }
      ]
    },
    "encrypted": {
      "nullable": true,
      "type": "boolean"
    },
    "name": {
      "nullable": true,
      "type": "string"
    },
    "size": {
      "minimum": 0,
      "type": "integer"
    }
  },
  "required": [
    "size"
  ],
  "type": "object"
}