Telefónica · Schema

LocationVerificationResponse

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Properties

Name Type Description
verificationResult string Location verification result.
matchRate integer Confidence percentage (0-100) when result is PARTIAL.
lastLocationTime string Timestamp of the most recent location data used.
View JSON Schema on GitHub

JSON Schema

telefonica-locationverificationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationVerificationResponse",
  "title": "LocationVerificationResponse",
  "type": "object",
  "properties": {
    "verificationResult": {
      "type": "string",
      "description": "Location verification result.",
      "enum": [
        "TRUE",
        "FALSE",
        "UNKNOWN",
        "PARTIAL"
      ]
    },
    "matchRate": {
      "type": "integer",
      "description": "Confidence percentage (0-100) when result is PARTIAL.",
      "minimum": 0,
      "maximum": 100
    },
    "lastLocationTime": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the most recent location data used."
    }
  }
}