AT&T · JSON Structure

Mvnx Api Product Structure

Product schema from AT&T API

Type: object Properties: 4
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

Product 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 status productOffering

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-product-structure.json",
  "description": "Product schema from AT&T API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique product/subscriber identifier",
      "example": "sub-a1b2c3d4"
    },
    "href": {
      "type": "uri",
      "example": "https://devex-web.att.com/product/sub-a1b2c3d4"
    },
    "status": {
      "type": "string",
      "description": "Product status",
      "enum": [
        "active",
        "suspended",
        "terminated"
      ],
      "example": "active"
    },
    "productOffering": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "example": "offer-unlimited-basic"
        },
        "name": {
          "type": "string",
          "example": "Unlimited Basic Plan"
        }
      }
    }
  },
  "name": "Product"
}