changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "attachment_downloads": {
+ "additionalProperties": false,
+ "properties": {
+ "as_resource": {
+ "type": "boolean"
+ },
+ "directory": {
+ "type": "string"
+ },
+ "max_bytes": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "reason": {
+ "description": "Only when saving to disk is off.",
+ "type": "string"
+ },
+ "to_disk": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "as_resource",
+ "to_disk"
+ ],
+ "type": "object"
+ },
+ "attachment_text_extraction": {
+ "additionalProperties": false,
+ "properties": {
+ "enabled": {
+ "const": true,
+ "type": "boolean"
+ },
+ "extractable_types": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "max_bytes": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "enabled",
+ "max_bytes",
+ "extractable_types"
+ ],
+ "type": "object"
+ },
+ "can_send_mail": {
+ "const": false,
+ "description": "This server cannot send mail at all, by design.",
+ "type": "boolean"
+ },
+ "capabilities": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "host": {
+ "type": "string"
+ },
+ "limits": {
+ "additionalProperties": false,
+ "properties": {
+ "allowed_attachment_types": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "default_message_limit": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "max_inline_attachment_bytes": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "default_message_limit",
+ "max_inline_attachment_bytes",
+ "allowed_attachment_types"
+ ],
+ "type": "object"
+ },
+ "mailbox": {
+ "description": "The default this server selects.",
+ "type": "string"
+ },
+ "new_mail_tracking": {
+ "additionalProperties": false,
+ "properties": {
+ "enabled": {
+ "type": "boolean"
+ },
+ "keyword": {
+ "type": "string"
+ },
+ "reason": {
+ "description": "Only when it is off.",
+ "type": "string"
+ },
+ "storable": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "enabled"
+ ],
+ "type": "object"
+ },
+ "permanent_flags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "port": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "tls": {
+ "type": "string"
+ },
+ "write_tools_enabled": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "host",
+ "port",
+ "tls",
+ "mailbox",
+ "capabilities",
+ "permanent_flags",
+ "new_mail_tracking",
+ "write_tools_enabled",
+ "can_send_mail",
+ "attachment_downloads",
+ "attachment_text_extraction",
+ "limits"
+ ],
+ "type": "object"
+}