{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-create-promotion-schema.json", "title": "CreatePromotion", "description": "Create Promotion", "type": "object", "properties": { "Name": { "description": "Promotion Name", "type": "string", "example": "Example Name" }, "MenuItemPublicIds": { "description": "Promotion Menu Item Awards", "type": "array", "items": { "format": "uuid", "type": "string", "example": "00000000-0000-0000-0000-000000000000" }, "example": [ "00000000-0000-0000-0000-000000000000" ] } } }