Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncCredentials

Description

Properties

Name JsonSchemaType Description
entity_uuid reference to Era.Common.DataDefinition.Common.Uuid
operation enum of Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncOperationType
password string

Dual message (request/response)

No dual message.

Referenced in messages

Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncRetrieveTestingDataResponse

JsonSchema

{
    "title": "Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncCredentials",
    "type": "object",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "required": [
        "Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncCredentials"
    ],
    "properties": {
        "Era.Common.NetworkMessage.ConsoleApi.Authentication.RPCSyncCredentials": {
            "$ref": "#/definitions/RPCSyncCredentials"
        }
    },
    "definitions": {
        "RPCSyncCredentials": {
            "additionalProperties": false,
            "required": [
                "entity_uuid",
                "operation",
                "password"
            ],
            "type": "object",
            "properties": {
                "entity_uuid": {
                    "$ref": "Era.Common.DataDefinition.Common.Uuid#/definitions/Uuid"
                },
                "operation": {
                    "enum": [
                        1,
                        2,
                        3
                    ]
                },
                "password": {
                    "type": "string"
                }
            }
        }
    }
}