CustomerUpdate schema from Amdocs API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-schema/connectx-customer-update-schema.json", "title": "CustomerUpdate", "description": "CustomerUpdate schema from Amdocs API", "type": "object", "properties": { "status": { "type": "string", "enum": [ "Active", "Inactive", "Suspended" ] }, "email": { "type": "string", "format": "email" }, "phone": { "type": "string" }, "address": { "$ref": "#/components/schemas/Address" } } }