AT&T · Schema

ResourceReservation

ResourceReservation schema from AT&T API

Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

Properties

Name Type Description
id string Unique reservation identifier
href string
reservationState string Reservation state
reservedResource array
View JSON Schema on GitHub

JSON Schema

mvnx-api-resource-reservation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-schema/mvnx-api-resource-reservation-schema.json",
  "title": "ResourceReservation",
  "description": "ResourceReservation schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique reservation identifier",
      "example": "reservation-500123"
    },
    "href": {
      "type": "string",
      "format": "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"
          }
        }
      }
    }
  }
}