Offer schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/target-api-offer-schema.json", "title": "Offer", "description": "Offer schema", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "type": { "type": "string", "enum": [ "content", "redirect", "dynamic" ] }, "content": { "type": "string" }, "modifiedAt": { "type": "string", "format": "date-time" } } }