Urban Outfitters · Schema

ProductSearchResponse

Paginated product search results

RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

Properties

Name Type Description
total integer Total matching products
offset integer Current offset
limit integer Items per page
products array List of products
View JSON Schema on GitHub

JSON Schema

affiliate-api-product-search-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/urban-outfitters/refs/heads/main/json-schema/affiliate-api-product-search-response-schema.json",
  "title": "ProductSearchResponse",
  "description": "Paginated product search results",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total matching products",
      "example": 450
    },
    "offset": {
      "type": "integer",
      "description": "Current offset",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "description": "Items per page",
      "example": 20
    },
    "products": {
      "type": "array",
      "description": "List of products",
      "items": {
        "$ref": "#/components/schemas/Product"
      }
    }
  }
}