1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
openapi: 3.1.0
info:
title: Callbacks API
version: "1.0.0"
paths:
/subscribe:
post:
operationId: subscribe
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
properties:
callbackUrl:
type: string
responses:
"201":
description: Subscription created
content:
application/json:
schema:
type: object
required:
properties:
id:
type: integer
minimum: 1
callbacks:
onEvent:
'{$request.body#/callbackUrl}/notify':
post:
requestBody:
content:
application/json:
schema:
type: object
required:
properties:
event:
type: string
minLength: 1
responses:
"200":
description: Callback acknowledged