{ "$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" ] } } }