Era.Common.DataDefinition.Settings.Syslog_Config

Description

Properties

Name JsonSchemaType Description
certificate string
enabled boolean
events_list array of enum
format enum of Era.Common.DataDefinition.Syslog.PayloadFormat
host string
keep_alive boolean
octet_counted_framing boolean
port integer
transport enum of Era.Common.DataDefinition.Settings.Syslog_Transport
uuid reference to Era.Common.DataDefinition.Common.Uuid
validate_certificate boolean
version enum of Era.Common.DataDefinition.Settings.Syslog_Version

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.DataDefinition.Settings.Syslog

JsonSchema

{
    "title": "Era.Common.DataDefinition.Settings.Syslog_Config",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.DataDefinition.Settings.Syslog_Config"
    ],
    "properties": {
        "Era.Common.DataDefinition.Settings.Syslog_Config": {
            "$ref": "#/definitions/Syslog_Config"
        }
    },
    "definitions": {
        "Syslog_Config": {
            "additionalProperties": false,
            "type": "object",
            "properties": {
                "certificate": {
                    "type": "string"
                },
                "enabled": {
                    "type": "boolean"
                },
                "events_list": {
                    "type": "array",
                    "items": [
                        {
                            "enum": [
                                1,
                                2,
                                3,
                                4,
                                5
                            ]
                        }
                    ]
                },
                "format": {
                    "enum": [
                        1,
                        2,
                        3,
                        4,
                        5
                    ]
                },
                "host": {
                    "type": "string"
                },
                "keep_alive": {
                    "type": "boolean"
                },
                "octet_counted_framing": {
                    "type": "boolean"
                },
                "port": {
                    "type": "integer"
                },
                "transport": {
                    "enum": [
                        1,
                        2,
                        3
                    ]
                },
                "uuid": {
                    "$ref": "Era.Common.DataDefinition.Common.Uuid#/definitions/Uuid"
                },
                "validate_certificate": {
                    "type": "boolean"
                },
                "version": {
                    "enum": [
                        1,
                        2
                    ]
                }
            }
        }
    }
}