Amdocs · JSON Structure

Amdocs Customer Structure

JSON Schema for an Amdocs BSS telecom customer account.

Type: object Properties: 14 Required: 3
TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

Amdocs Customer is a JSON Structure definition published by Amdocs, describing 14 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

customerId customerType status accountNumber firstName lastName companyName email phone address billingAddress subscriptions createdAt updatedAt

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/amdocs-customer-structure.json",
  "name": "Amdocs Customer",
  "description": "JSON Schema for an Amdocs BSS telecom customer account.",
  "type": "object",
  "properties": {
    "customerId": {
      "type": "string",
      "description": "Unique customer identifier"
    },
    "customerType": {
      "type": "string",
      "enum": [
        "Individual",
        "Business",
        "Government"
      ],
      "description": "Classification of the customer"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Inactive",
        "Suspended",
        "Terminated"
      ]
    },
    "accountNumber": {
      "type": "string",
      "description": "Customer-facing account number"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "companyName": {
      "type": "string",
      "description": "Company name for Business/Government customers"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone": {
      "type": "string"
    },
    "address": {
      "$ref": "#/$defs/Address"
    },
    "billingAddress": {
      "$ref": "#/$defs/Address"
    },
    "subscriptions": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Subscription"
      }
    },
    "createdAt": {
      "type": "datetime"
    },
    "updatedAt": {
      "type": "datetime"
    }
  },
  "required": [
    "customerId",
    "customerType",
    "status"
  ]
}