Amdocs · JSON Structure

Connectx Product Structure

Product schema from Amdocs API

Type: object Properties: 8
TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

Product is a JSON Structure definition published by Amdocs, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

productId productName productType description monthlyPrice currency features status

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/amdocs/refs/heads/main/json-structure/connectx-product-structure.json",
  "name": "Product",
  "description": "Product schema from Amdocs API",
  "type": "object",
  "properties": {
    "productId": {
      "type": "string"
    },
    "productName": {
      "type": "string"
    },
    "productType": {
      "type": "string",
      "enum": [
        "Mobile",
        "Broadband",
        "TV",
        "Bundle",
        "Addon"
      ]
    },
    "description": {
      "type": "string"
    },
    "monthlyPrice": {
      "type": "double"
    },
    "currency": {
      "type": "string"
    },
    "features": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Discontinued"
      ]
    }
  }
}