{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/marketing-promotion-details-structure.json", "name": "PromotionDetails", "description": "Promotion", "type": "object", "properties": { "PromotionId": { "description": "Promotion Id", "type": "int32", "example": 500123 }, "Name": { "description": "The name of the promotion", "type": "string", "example": "Example Name" }, "PromotionAwards": { "description": "The items that this promotion will award", "type": "array", "items": { "$ref": "#/components/schemas/PromotionAward" }, "example": [] } } }