Era.Common.DataDefinition.Settings.EmailSender_Smtp

Description

Properties

Name JsonSchemaType Description
authentication enum of Era.Common.DataDefinition.EmailSender.AuthenticationType
connection_security enum of Era.Common.DataDefinition.EmailSender.ConnectionSecurityType
credentials reference to Era.Common.DataDefinition.Settings.Credentials
enabled boolean
host string
port integer
sender_address string

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Settings.EmailSender

JsonSchema

{
    "title": "Era.Common.DataDefinition.Settings.EmailSender_Smtp",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Settings.EmailSender_Smtp"
    ],
    "properties": {
        "Era.Common.DataDefinition.Settings.EmailSender_Smtp": {
            "$ref": "#/definitions/EmailSender_Smtp"
        }
    },
    "definitions": {
        "EmailSender_Smtp": {
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "authentication": {
                    "enum": [
                        1,
                        2,
                        3,
                        4,
                        5,
                        6,
                        7,
                        9,
                        10,
                        15
                    ]
                },
                "connection_security": {
                    "enum": [
                        1,
                        2,
                        3
                    ]
                },
                "credentials": {
                    "$ref": "Era.Common.DataDefinition.Settings.Credentials#/definitions/Credentials"
                },
                "enabled": {
                    "type": "boolean"
                },
                "host": {
                    "type": "string"
                },
                "port": {
                    "type": "integer"
                },
                "sender_address": {
                    "type": "string"
                }
            }
        }
    }
}