Urban Outfitters · JSON Structure

Marketplace Api Inventory Update Structure

Inventory update request

Type: object Properties: 1 Required: 1
RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

InventoryUpdate is a JSON Structure definition published by Urban Outfitters, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

updates

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/urban-outfitters/refs/heads/main/json-structure/marketplace-api-inventory-update-structure.json",
  "name": "InventoryUpdate",
  "description": "Inventory update request",
  "type": "object",
  "properties": {
    "updates": {
      "type": "array",
      "description": "List of SKU inventory updates",
      "items": {
        "type": "object",
        "properties": {
          "sku": {
            "type": "string",
            "example": "UO-BRAND-TEE-001"
          },
          "quantity": {
            "type": "int32",
            "example": 300
          }
        }
      }
    }
  },
  "required": [
    "updates"
  ]
}