{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TriggerSubscription", "title": "TriggerSubscription", "type": "object", "properties": { "id": { "type": "string", "description": "Subscription identifier." }, "userId": { "type": "string" }, "trigger": { "type": "string" }, "integration": { "type": "string" }, "parameters": { "type": "object", "additionalProperties": true }, "deliveryUrl": { "type": "string", "format": "uri" }, "createdAt": { "type": "string", "format": "date-time" } } }