Urban Outfitters · JSON Structure

Marketplace Api Seller Product Create Structure

Request body for creating a product listing

Type: object Properties: 6 Required: 4
RetailFashionApparelEcommerceAffiliateMarketplaceFortune 1000

SellerProductCreate is a JSON Structure definition published by Urban Outfitters, describing 6 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sku name description price currency category

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-seller-product-create-structure.json",
  "name": "SellerProductCreate",
  "description": "Request body for creating a product listing",
  "type": "object",
  "properties": {
    "sku": {
      "type": "string",
      "example": "BRAND-NEW-ITEM-001"
    },
    "name": {
      "type": "string",
      "example": "New Product Name"
    },
    "description": {
      "type": "string",
      "example": "Product description"
    },
    "price": {
      "type": "double",
      "example": 55.0
    },
    "currency": {
      "type": "string",
      "example": "USD"
    },
    "category": {
      "type": "string",
      "example": "womens"
    }
  },
  "required": [
    "sku",
    "name",
    "price",
    "currency"
  ]
}