Amdocs · Schema

Address

Address schema from Amdocs API

TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

Properties

Name Type Description
street string
city string
state string
postalCode string
country string
View JSON Schema on GitHub

JSON Schema

connectx-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-schema/connectx-address-schema.json",
  "title": "Address",
  "description": "Address schema from Amdocs API",
  "type": "object",
  "properties": {
    "street": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    }
  }
}