Telefónica · Schema

SessionInfo

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Properties

Name Type Description
sessionId string Unique session identifier.
device object
qosProfile string Assigned QoS profile.
qosStatus string Current QoS session status.
startedAt string
expiresAt string
duration integer
View JSON Schema on GitHub

JSON Schema

telefonica-sessioninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SessionInfo",
  "title": "SessionInfo",
  "type": "object",
  "properties": {
    "sessionId": {
      "type": "string",
      "format": "uuid",
      "description": "Unique session identifier."
    },
    "device": {
      "$ref": "#/components/schemas/Device"
    },
    "qosProfile": {
      "type": "string",
      "description": "Assigned QoS profile."
    },
    "qosStatus": {
      "type": "string",
      "description": "Current QoS session status.",
      "enum": [
        "REQUESTED",
        "AVAILABLE",
        "UNAVAILABLE"
      ]
    },
    "startedAt": {
      "type": "string",
      "format": "date-time"
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    },
    "duration": {
      "type": "integer"
    }
  }
}