{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/email-security_Domain", "title": "email-security_Domain", "example": { "allowed_delivery_modes": [ "API" ], "created_at": "2023-11-14T22:13:20Z", "domain": "example.com", "id": 2400, "integration_id": "a5dbb180-60ea-4578-84bb-d01a5d4e50c3", "last_modified": "2023-11-14T22:13:20Z", "lookback_hops": 2, "o365_tenant_id": "c3c3239d-8858-47df-9618-0e2d9bdf6aa8" }, "properties": { "allowed_delivery_modes": { "items": { "$ref": "#/components/schemas/email-security_DeliveryMode" }, "type": "array" }, "created_at": { "format": "date-time", "type": "string" }, "domain": { "type": "string" }, "id": { "description": "Unique domain identifier", "example": 2400, "format": "int32", "type": "integer" }, "integration_id": { "format": "uuid", "nullable": true, "type": "string" }, "last_modified": { "format": "date-time", "type": "string" }, "lookback_hops": { "format": "int32", "type": "integer" }, "o365_tenant_id": { "nullable": true, "type": "string" } }, "required": [ "id", "created_at", "last_modified", "domain", "allowed_delivery_modes", "lookback_hops" ], "type": "object" }