Amdocs · Schema
Product
Product schema from Amdocs API
TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS
Properties
| Name | Type | Description |
|---|---|---|
| productId | string | |
| productName | string | |
| productType | string | |
| description | string | |
| monthlyPrice | number | |
| currency | string | |
| features | array | |
| status | string |
JSON Schema
{
"$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"
]
}
}
}