AT&T · Schema

PortabilityOrderCreate

PortabilityOrderCreate schema from AT&T API

Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

Properties

Name Type Description
portabilityOrderItem array
View JSON Schema on GitHub

JSON Schema

mvnx-api-portability-order-create-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-portability-order-create-schema.json",
  "title": "PortabilityOrderCreate",
  "description": "PortabilityOrderCreate schema from AT&T API",
  "type": "object",
  "properties": {
    "portabilityOrderItem": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "msisdn": {
            "type": "string",
            "description": "Phone number to port",
            "example": "+12125551234"
          },
          "portingType": {
            "type": "string",
            "enum": [
              "FULL",
              "PARTIAL"
            ],
            "example": "FULL"
          },
          "currentCarrier": {
            "type": "string",
            "description": "Current carrier name",
            "example": "Verizon"
          }
        }
      }
    }
  }
}