AT&T · Schema

PortabilityOrderCancellation

PortabilityOrderCancellation schema from AT&T API

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
id string Cancellation record ID
state string Cancellation state
portabilityOrder object
View JSON Schema on GitHub

JSON Schema

mvnx-api-portability-order-cancellation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/att/refs/heads/main/json-schema/mvnx-api-portability-order-cancellation-schema.json",
  "title": "PortabilityOrderCancellation",
  "description": "PortabilityOrderCancellation schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Cancellation record ID",
      "example": "cancel-500123"
    },
    "state": {
      "type": "string",
      "description": "Cancellation state",
      "example": "completed"
    },
    "portabilityOrder": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "example": "port-500123"
        }
      }
    }
  }
}