16 lines
629 B
JSON
16 lines
629 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"email": { "type": "string", "format": "email" },
|
|
"pwd": { "type": "string" },
|
|
"xoauth": { "type": "string" },
|
|
"xoauth2": { "type": "string" },
|
|
"imapHost": { "type": "string", "format": "hostname" },
|
|
"smtpHost": { "type": "string", "format": "hostname" },
|
|
"imapPort": { "type": "number", "maximum": 65535 },
|
|
"smtpPort": { "type": "number", "maximum": 65535 },
|
|
"tls": { "type": "boolean" }
|
|
},
|
|
"required": ["email", "imapHost", "smtpHost", "imapPort", "smtpPort", "tls"],
|
|
"additionalProperties": false
|
|
} |