AT&T · Schema

PortabilityOrder

PortabilityOrder schema from AT&T API

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
id string Unique port order identifier
href string
state string Port order state
requestedCompletionDate string Requested completion date for the port
View JSON Schema on GitHub

JSON Schema

mvnx-api-portability-order-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-schema.json",
  "title": "PortabilityOrder",
  "description": "PortabilityOrder schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique port order identifier",
      "example": "port-500123"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "example": "https://devex-web.att.com/portabilityOrder/port-500123"
    },
    "state": {
      "type": "string",
      "description": "Port order state",
      "enum": [
        "inProgress",
        "completed",
        "cancelled",
        "failed"
      ],
      "example": "inProgress"
    },
    "requestedCompletionDate": {
      "type": "string",
      "format": "date-time",
      "description": "Requested completion date for the port",
      "example": "2026-04-25T00:00:00Z"
    }
  }
}