WooCommerce · Schema

ShippingZone

A shipping zone defining geographic regions with specific shipping methods.

eCommerceOpen SourceOrdersProductsWordPress

Properties

Name Type Description
id integer Shipping zone unique identifier.
name string Shipping zone display name.
order integer Shipping zone display order.
View JSON Schema on GitHub

JSON Schema

woocommerce-rest-api-shipping-zone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/woocommerce/refs/heads/main/json-schema/woocommerce-rest-api-shipping-zone-schema.json",
  "title": "ShippingZone",
  "description": "A shipping zone defining geographic regions with specific shipping methods.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Shipping zone unique identifier.",
      "example": 1
    },
    "name": {
      "type": "string",
      "description": "Shipping zone display name.",
      "example": "Example Name"
    },
    "order": {
      "type": "integer",
      "description": "Shipping zone display order.",
      "example": 1
    }
  }
}