Amdocs · JSON Structure

Connectx Subscription Structure

Subscription schema from Amdocs API

Type: object Properties: 10
TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

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

Properties

subscriptionId customerId productId productName status startDate endDate monthlyCharge currency addons

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-subscription-structure.json",
  "name": "Subscription",
  "description": "Subscription schema from Amdocs API",
  "type": "object",
  "properties": {
    "subscriptionId": {
      "type": "string"
    },
    "customerId": {
      "type": "string"
    },
    "productId": {
      "type": "string"
    },
    "productName": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Suspended",
        "Cancelled",
        "Pending"
      ]
    },
    "startDate": {
      "type": "date"
    },
    "endDate": {
      "type": "date"
    },
    "monthlyCharge": {
      "type": "double"
    },
    "currency": {
      "type": "string",
      "default": "USD"
    },
    "addons": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "addonId": {
            "type": "string"
          },
          "addonName": {
            "type": "string"
          },
          "charge": {
            "type": "double"
          }
        }
      }
    }
  }
}