{
    "$schema":"http://json-schema.org/draft-04/schema#",
    "additionalProperties":true,
    "description":"Version v6",
    "properties":{
        "application_id":{
            "type":"string"
        },
        "application_signature":{
            "type":"string"
        },
        "credential_type":{
            "$ref":"/resources/schema/user/v6/UserCredentialsType.json"
        },
        "credential_key":{
            "type":"string"
        },
        "expiry_utc_timestamp":{
            "type":"integer"
        },
        "verification_code_length":{
            "type":"integer"
        },
        "product_name":{
            "type":"string"
        },
		"locale":{
			"$ref":"/resources/schema/user/v6/Locale.json"
		}
    },
    "required":[
        "application_id",
        "credential_type",
        "credential_key"
    ],
    "title":"ApplyVerificationCodeRequest",
    "type":"object"
}