Telesign · Schema

VerificationStatus

AuthenticationCommunicationsFraud PreventionPhone IntelligenceSMSVerification

Properties

Name Type Description
code integer Status code for the verification state.
description string Human-readable status description.
updated_on string Timestamp of the last status update.
View JSON Schema on GitHub

JSON Schema

telesign-verificationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerificationStatus",
  "title": "VerificationStatus",
  "type": "object",
  "properties": {
    "code": {
      "type": "integer",
      "description": "Status code for the verification state."
    },
    "description": {
      "type": "string",
      "description": "Human-readable status description."
    },
    "updated_on": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the last status update."
    }
  }
}