connection

Verbindungs-Einstellungen

Allgemeine Informationen

Domain

TcHmiOpcUa

Schema

Typ

object

JSON-Schema

{
    "additionalProperties": false,
    "description": "descConnection",
    "properties": {
        "connectionTimeout": {
            "default": "PT1S",
            "format": "timespan",
            "formatMaximum": "PT10S",
            "formatMinimum": "PT0.1S",
            "type": "string"
        },
        "readTimeout": {
            "default": "PT10S",
            "format": "timespan",
            "formatMaximum": "PT30S",
            "formatMinimum": "PT0.1S",
            "type": "string"
        },
        "reconnectMode": {
            "default": 0,
            "enum": [
                0,
                1,
                2
            ],
            "options": [
                {
                    "label": "none",
                    "value": 0
                },
                {
                    "label": "auto",
                    "value": 1
                },
                {
                    "label": "onRequest",
                    "value": 2
                }
            ],
            "type": "integer"
        },
        "reconnectTries": {
            "type": "integer"
        }
    },
    "required": [
        "reconnectMode",
        "reconnectTries",
        "connectionTimeout",
        "readTimeout"
    ],
    "type": "object"
}