AT&T · JSON Structure

Mvnx Api Resource Reservation Structure

ResourceReservation schema from AT&T API

Type: object Properties: 4
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

ResourceReservation is a JSON Structure definition published by AT&T, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id href reservationState reservedResource

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-structure/mvnx-api-resource-reservation-structure.json",
  "description": "ResourceReservation schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique reservation identifier",
      "example": "reservation-500123"
    },
    "href": {
      "type": "uri",
      "example": "https://devex-web.att.com/resourceReservation/reservation-500123"
    },
    "reservationState": {
      "type": "string",
      "description": "Reservation state",
      "enum": [
        "completed",
        "cancelled",
        "inProgress"
      ],
      "example": "completed"
    },
    "reservedResource": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "Reserved phone number",
            "example": "+12125559999"
          }
        }
      }
    }
  },
  "name": "ResourceReservation"
}