WooCommerce · JSON Structure

Woocommerce Rest Api Meta Data Structure

Custom metadata key-value entry.

Type: object Properties: 3
eCommerceOpen SourceOrdersProductsWordPress

MetaData is a JSON Structure definition published by WooCommerce, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id key value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/woocommerce/refs/heads/main/json-structure/woocommerce-rest-api-meta-data-structure.json",
  "name": "MetaData",
  "description": "Custom metadata key-value entry.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Metadata unique identifier.",
      "example": 1
    },
    "key": {
      "type": "string",
      "description": "Metadata key.",
      "example": "string-value"
    },
    "value": {
      "type": "string",
      "description": "Metadata value.",
      "example": "string-value"
    }
  }
}