{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "additionalProperties": false,
    "description": "Version 7",
    "properties": {
        "application_id": {
            "type": "string",
            "minLength": 1
        },
        "application_signature": {
            "type": "string",
            "minLength": 1
        },
        "domain": {
            "$ref": "/resources/schema/user/v7/AccountDomain.json"
        },
        "credential_key": {
            "$ref": "/resources/schema/user/v7/CredentialsKey.json"
        },
        "credential_secret": {
            "type": "string"
        },
        "device_info": {
            "$ref": "/resources/schema/user/v7/DeviceInfo.json"
        }
    },
    "required": [
        "application_id",
        "application_signature",
        "domain",
        "credential_key",
        "credential_secret",
        "device_info"
    ],
    "title": "LoginRequest",
    "type": "object"
}