{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Offer", "title": "Offer", "type": "object", "properties": { "offerId": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "bonusPoints": { "type": "integer" }, "validFrom": { "type": "string", "format": "date-time" }, "validTo": { "type": "string", "format": "date-time" }, "conditions": { "type": "string" } } }