Smtp
Smtp resource type schema.
| 1 | { |
| 2 | "type": "object", |
| 3 | "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 4 | "required": [ |
| 5 | "host" |
| 6 | ], |
| 7 | "properties": { |
| 8 | "host": { |
| 9 | "type": "string", |
| 10 | "default": "mail.smtpbucket.com", |
| 11 | "description": "SMTP host address" |
| 12 | }, |
| 13 | "port": { |
| 14 | "type": "integer", |
| 15 | "default": 8025, |
| 16 | "description": "port number on which to connect" |
| 17 | }, |
| 18 | "user": { |
| 19 | "type": "string", |
| 20 | "description": "" |
| 21 | }, |
| 22 | "password": { |
| 23 | "type": "string", |
| 24 | "description": "" |
| 25 | } |
| 26 | } |
| 27 | } |