{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "OrderDeliveredPayload", "description": "OrderDeliveredPayload schema from Etsy Open API v3 Webhooks", "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/webhooks-order-delivered-payload-schema.json", "allOf": [ { "$ref": "#/components/schemas/WebhookEnvelope" }, { "type": "object", "properties": { "event_type": { "type": "string", "enum": [ "order.delivered" ] } } } ] }