{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BestSellingProductResponse", "title": "BestSellingProductResponse", "type": "object", "properties": { "merchandisedProducts": { "type": "array", "description": "An array of containers for the products.", "items": { "$ref": "#/components/schemas/MerchandisedProduct" } }, "warnings": { "type": "array", "description": "The container with all the warnings for the input request.", "items": { "$ref": "#/components/schemas/Error" } } }, "description": "The type that defines the fields for the best selling product information." }