Users

Contains the information about all managed user accounts.

General Information

Domain

TcHmiUserManagement

Full symbol path

TcHmiUserManagement.Config::USERS

Property is hidden

No

Contained in every configuration by default

No

Schema

Type

object

Default value

{
    "__SystemAdministrator": {
        "ENABLED": false,
        "PASSWORD": "",
        "SALT": ""
    },
    "__SystemGuest": {
        "ENABLED": true,
        "PASSWORD": "",
        "SALT": ""
    }
}

JSON Schema

{
    "additionalProperties": {
        "additionalProperties": false,
        "configDescription": "DESC_USER",
        "properties": {
            "ALGORITHM": {
                "default": 0,
                "enum": [
                    0,
                    1
                ],
                "options": [
                    {
                        "label": "SHA256",
                        "value": 0
                    },
                    {
                        "label": "PBKDF2-HMAC-64-SHA512-1000",
                        "value": 1
                    }
                ],
                "type": "integer"
            },
            "ENABLED": {
                "default": true,
                "type": "boolean"
            },
            "PASSWORD": {
                "default": "",
                "type": "string"
            },
            "SALT": {
                "default": "",
                "format": "base64",
                "type": "string"
            }
        },
        "required": [
            "PASSWORD",
            "SALT",
            "ALGORITHM",
            "ENABLED"
        ],
        "type": "object"
    },
    "default": {
        "__SystemAdministrator": {
            "ENABLED": false,
            "PASSWORD": "",
            "SALT": ""
        },
        "__SystemGuest": {
            "ENABLED": true,
            "PASSWORD": "",
            "SALT": ""
        }
    },
    "description": "DESC_USERS",
    "required": [
        "__SystemAdministrator",
        "__SystemGuest"
    ],
    "type": "object"
}