UNPKG

@appsemble/lang-sdk

Version:

Language SDK for Appsemble

17 lines 623 B
export const WebhookDefinition = { type: 'object', required: ['schema', 'action'], description: 'A webhook definition defines app specific callable endpoints that Appsemble can handle.', additionalProperties: false, properties: { schema: { $ref: '#/components/schemas/JSONSchemaRoot', description: 'JSON schema definition of the payload.', }, action: { description: 'The action to run when the webhook is triggered.', $ref: '#/components/schemas/ActionDefinition', }, }, }; //# sourceMappingURL=WebhookDefinition.js.map