-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspec.json
57 lines (57 loc) · 1.12 KB
/
spec.json
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
48
49
50
51
52
53
54
55
56
57
{
"asyncapi": "2.0.0",
"defaultContentType": "application/json",
"info": {
"title": "Capacitydemand-V1",
"version": "1.0.0",
"description": "This API provides services to interact with capacitydemand.",
"contact": {
"name": "contactName",
"email": "[email protected]"
}
},
"channels": {
"myTopic": {
"publish": {
"message": {
"$ref": "#/components/messages/myMessage"
}
}
}
},
"components": {
"messages": {
"myMessage": {
"payload": {
"$ref": "#/components/schemas/mySchema"
}
}
},
"schemas": {
"mySchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"anyOf": [
{
"required": [
"myPropertyA"
]
},
{
"required": [
"myPropertyB"
]
}
],
"properties": {
"myPropertyA": {
"type": "string"
},
"myPropertyB": {
"type": "string"
}
}
}
}
}
}