{ "$schema": "http://json-schema.org/draft-04/schema#", "items": { "additionalProperties": false, "properties": { "brand": { "description": "Brand", "type": "string" }, "category": { "items": { "description": "Descriptive categorization right, e.g. gents, tops ,t-shirts]", "type": "string" }, "type": "array" }, "color": { "description": "Color, written out", "type": "string" }, "currency": { "description": "ISO 4217 Currency Codes, e.g. EUR, USD", "type": "string" }, "desc": { "description": "Description", "type": "string" }, "ean": { "description": "EAN, International Article Number", "type": "integer" }, "features": { "description": "Additional feature like material if not indicated in description", "type": "string" }, "gender": { "description": "Gender", "enum": [ "unisex", "female", "male", "boy", "girl", "infant", "unknown" ] }, "images_url": { "items": { "description": "URLs to product images", "type": "string" }, "type": "array" }, "internal_id": { "description": "Internal Order Number.", "type": "string" }, "msrp": { "description": "Manufacturer's suggested retail price", "type": "number" }, "name": { "description": "Name", "type": "string" }, "price": { "description": "Price", "type": "number" }, "product_url": { "description": "Product deep link", "type": "string" }, "sizes": { "items": { "description": "List of sizes, e.g. S, M, L or 34, 38, 40", "type": "string" }, "type": "array" } }, "required": [ "category", "name", "internal_id", "gender", "price", "product_url", "images_url", "desc", "brand" ], "type": "object" }, "type": "array" }