Era.Common.NetworkMessage.ConsoleApi.Encryption.RpcGetFDERecoveryPasswordResponse_Password

Description

Properties

Name JsonSchemaType Description
index string Recovery password index as presented to user
recovery_password string Recovery password - a password, which can be used to unlock the FDE login.
workstation_id string Workstation ID associated with a given recovery password

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.NetworkMessage.ConsoleApi.Encryption.RpcGetFDERecoveryPasswordResponse

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Encryption.RpcGetFDERecoveryPasswordResponse_Password",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Encryption.RpcGetFDERecoveryPasswordResponse_Password"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Encryption.RpcGetFDERecoveryPasswordResponse_Password": {
            "$ref": "#/definitions/RpcGetFDERecoveryPasswordResponse_Password"
        }
    },
    "definitions": {
        "RpcGetFDERecoveryPasswordResponse_Password": {
            "additionalProperties": false,
            "required": [
                "index",
                "recovery_password",
                "workstation_id"
            ],
            "type": "object",
            "properties": {
                "index": {
                    "type": "string"
                },
                "recovery_password": {
                    "type": "string"
                },
                "workstation_id": {
                    "type": "string"
                }
            }
        }
    }
}