Amdocs · Schema

Product

Product schema from Amdocs API

TelecomBSSOSSBillingCustomer ManagementMVNO5GSoftware-as-a-Service

Properties

Name Type Description
productId string
productName string
productType string
description string
monthlyPrice number
currency string
features array
status string
View JSON Schema on GitHub

JSON Schema

connectx-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-schema/connectx-product-schema.json",
  "title": "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": "number"
    },
    "currency": {
      "type": "string"
    },
    "features": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Discontinued"
      ]
    }
  }
}