Amdocs · JSON Structure

Connectx Customer Update Structure

CustomerUpdate schema from Amdocs API

Type: object Properties: 4
TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

CustomerUpdate is a JSON Structure definition published by Amdocs, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status email phone address

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-structure/connectx-customer-update-structure.json",
  "name": "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"
    }
  }
}