{ "$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" ] }