{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DateRange", "title": "DateRange", "description": "Trade Policy Fixed Price Validity Period Object.", "required": [ "from", "to" ], "type": "object", "properties": { "from": { "type": "string", "description": "Indicates the date and time when the fixed price will start to be valid." }, "to": { "type": "string", "description": "Indicates the date and time from which the fixed price will no longer be valid." } } }