3M · Schema

ShippingAddress

Shipping address for an order

IndustrialManufacturingSupply ChainFortune 100

Properties

Name Type Description
street string Street address
city string City name
state string State or province code
zip string Postal/ZIP code
country string Country code (ISO 3166-1 alpha-2)
View JSON Schema on GitHub

JSON Schema

3m-partner-supplier-api-shipping-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/3m/refs/heads/main/json-schema/3m-partner-supplier-api-shipping-address-schema.json",
  "title": "ShippingAddress",
  "description": "Shipping address for an order",
  "type": "object",
  "properties": {
    "street": {
      "type": "string",
      "description": "Street address",
      "example": "3M Center"
    },
    "city": {
      "type": "string",
      "description": "City name",
      "example": "St. Paul"
    },
    "state": {
      "type": "string",
      "description": "State or province code",
      "example": "MN"
    },
    "zip": {
      "type": "string",
      "description": "Postal/ZIP code",
      "example": "55144"
    },
    "country": {
      "type": "string",
      "description": "Country code (ISO 3166-1 alpha-2)",
      "example": "US"
    }
  }
}