Telefónica · Schema

LocationVerificationRequest

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Properties

Name Type Description
device object
area object
maxAge integer Maximum age of location data in seconds.
View JSON Schema on GitHub

JSON Schema

telefonica-locationverificationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationVerificationRequest",
  "title": "LocationVerificationRequest",
  "type": "object",
  "required": [
    "device",
    "area"
  ],
  "properties": {
    "device": {
      "$ref": "#/components/schemas/Device"
    },
    "area": {
      "$ref": "#/components/schemas/Area"
    },
    "maxAge": {
      "type": "integer",
      "description": "Maximum age of location data in seconds.",
      "minimum": 60
    }
  }
}