Telesign · Schema

RiskScore

AuthenticationCommunicationsFraud PreventionPhone IntelligenceSMSVerification

Properties

Name Type Description
level string Risk level classification.
score integer Numeric risk score from 0 (lowest risk) to 1000 (highest risk).
recommendation string Recommended action based on the risk score.
View JSON Schema on GitHub

JSON Schema

telesign-riskscore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RiskScore",
  "title": "RiskScore",
  "type": "object",
  "properties": {
    "level": {
      "type": "string",
      "description": "Risk level classification.",
      "enum": [
        "low",
        "medium",
        "high",
        "block"
      ]
    },
    "score": {
      "type": "integer",
      "description": "Numeric risk score from 0 (lowest risk) to 1000 (highest risk).",
      "minimum": 0,
      "maximum": 1000
    },
    "recommendation": {
      "type": "string",
      "description": "Recommended action based on the risk score.",
      "enum": [
        "allow",
        "flag",
        "block"
      ]
    }
  }
}