Telesign · Schema

ScoreResponse

AuthenticationCommunicationsFraud PreventionPhone IntelligenceSMSVerification

Properties

Name Type Description
reference_id string Unique 32-digit hex identifier for this transaction.
status object
risk object
phone_type object
View JSON Schema on GitHub

JSON Schema

telesign-scoreresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScoreResponse",
  "title": "ScoreResponse",
  "type": "object",
  "properties": {
    "reference_id": {
      "type": "string",
      "description": "Unique 32-digit hex identifier for this transaction."
    },
    "status": {
      "$ref": "#/components/schemas/TransactionStatus"
    },
    "risk": {
      "$ref": "#/components/schemas/RiskScore"
    },
    "phone_type": {
      "type": "object",
      "properties": {
        "code": {
          "type": "string"
        },
        "description": {
          "type": "string"
        }
      }
    }
  }
}