Amberflo · Schema

Address

Tax address for a customer

Usage-Based BillingMeteringFinOpsAI Cost ManagementBillingMonetization

Properties

Name Type Description
verified boolean Whether the address has been verified
line1 string Address line 1
state string State or province
city string City
postalCode string Postal or ZIP code
country string ISO country code
View JSON Schema on GitHub

JSON Schema

billing-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amberflo/refs/heads/main/json-schema/billing-address-schema.json",
  "title": "Address",
  "description": "Tax address for a customer",
  "type": "object",
  "properties": {
    "verified": {
      "type": "boolean",
      "description": "Whether the address has been verified"
    },
    "line1": {
      "type": "string",
      "description": "Address line 1",
      "example": "123 Main Street"
    },
    "state": {
      "type": "string",
      "description": "State or province",
      "example": "CA"
    },
    "city": {
      "type": "string",
      "description": "City",
      "example": "San Francisco"
    },
    "postalCode": {
      "type": "string",
      "description": "Postal or ZIP code",
      "example": "94105"
    },
    "country": {
      "type": "string",
      "description": "ISO country code",
      "example": "US"
    }
  },
  "required": [
    "line1",
    "city",
    "country"
  ]
}