{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FixedPrice", "title": "FixedPrice", "required": [ "tradePolicyId", "value", "listPrice", "minQuantity" ], "type": "object", "description": "Fixed price request body information.", "properties": { "tradePolicyId": { "type": "string", "description": "Trade Policy ID." }, "value": { "type": "number", "description": "Trade Policy Fixed Price Value." }, "listPrice": { "type": "number", "description": "Trade Policy List Price Value.", "nullable": true }, "minQuantity": { "type": "integer", "format": "int32", "description": "Trade Policy Fixed Price Minimum Item Quantity." }, "dateRange": { "$ref": "#/components/schemas/DateRange" } } }