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