Properties
| Name | Type | Description |
|---|---|---|
| first_name | string | The first name of the customer address. |
| last_name | string | The last name of the customer address. |
| company | string | The company of the customer address. |
| address1 | string | The address 1 line. |
| address2 | string | The address 2 line. |
| city | string | The city of the customer address. |
| state_or_province | string | The state or province name spelled out in full. It is required for countries that need a state/province to complete an address. State or province codes not accepted. |
| postal_code | string | The postal code of the customer address. It is required for countries that need postal codes to complete an address. |
| country_code | string | The country code of the customer address. |
| phone | string | The phone number of the customer address. |
| address_type | string | The address type. Residential or Commercial. |
| customer_id | integer | The customer ID. |
| form_fields | array | The address custom form field values |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/address_Post",
"title": "address_Post",
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "The first name of the customer address.",
"minLength": 1,
"maxLength": 255,
"example": "John"
},
"last_name": {
"type": "string",
"description": "The last name of the customer address.",
"minLength": 1,
"maxLength": 255,
"example": "Doe"
},
"company": {
"type": "string",
"description": "The company of the customer address.",
"minLength": 0,
"maxLength": 255,
"example": "BigCommerce"
},
"address1": {
"type": "string",
"description": "The address 1 line.",
"example": "123 Example Street"
},
"address2": {
"type": "string",
"description": "The address 2 line.",
"example": "Building 4"
},
"city": {
"type": "string",
"description": "The city of the customer address.",
"minLength": 0,
"maxLength": 100,
"example": "Austin"
},
"state_or_province": {
"type": "string",
"description": "The state or province name spelled out in full. It is required for countries that need a state/province to complete an address. State or province codes not accepted.",
"example": "Texas",
"minLength": 0,
"maxLength": 100
},
"postal_code": {
"type": "string",
"description": "The postal code of the customer address. It is required for countries that need postal codes to complete an address.",
"minLength": 0,
"maxLength": 30,
"example": "78759"
},
"country_code": {
"type": "string",
"description": "The country code of the customer address.",
"example": "US",
"minLength": 2,
"maxLength": 2
},
"phone": {
"type": "string",
"description": "The phone number of the customer address.",
"minLength": 0,
"maxLength": 50,
"example": "15551234567"
},
"address_type": {
"title": "Address Type",
"description": "The address type. Residential or Commercial.",
"example": "residential",
"type": "string",
"enum": [
"residential",
"commercial"
]
},
"customer_id": {
"description": "The customer ID.",
"type": "integer",
"format": "int32",
"example": 1
},
"form_fields": {
"type": "array",
"description": "The address custom form field values\n",
"items": {
"$ref": "#/components/schemas/formFieldValue"
}
}
},
"required": [
"first_name",
"last_name",
"address1",
"city",
"country_code",
"customer_id"
],
"x-examples": {
"Example": {
"value": {
"first_name": "John",
"last_name": "Doe",
"company": "BigCommerce",
"address1": "123 Example Street",
"address2": "Building 4",
"city": "Austin",
"state_or_province": "Texas",
"postal_code": "78759",
"country_code": "US",
"phone": "15551234567",
"address_type": "residential",
"customer_id": 1
}
}
},
"x-internal": false
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/bigcommerce-address-post"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.