-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_asyncapi.yml
86 lines (86 loc) · 2.3 KB
/
test_asyncapi.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
asyncapi: 2.0.0
info:
title: boats
version: 1.0.1
description: >-
Beautiful Open / Async Template System - Write less yaml with BOATS and
Nunjucks.
license:
name: Apache 2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0'
defaultContentType: application/json
channels:
/ms-auth/cache-connection:
description: >-
When a new connection change occurs the new cache values are emitted in
the payload
publish:
operationId: msAuthCacheConnection
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheConnection'
subscribe:
operationId: msAuthCacheConnection
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheConnection'
/ms-image/cache-user:
description: >-
When a new connection change occurs the new cache values are emitted in
the payload
publish:
operationId: msImageCacheUser
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheUser'
subscribe:
operationId: msImageCacheUser
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheUser'
/ms-item/delete-user:
description: >-
When a new connection change occurs the new cache values are emitted in
the payload
publish:
operationId: msItemDeleteUser
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheUser'
subscribe:
operationId: msItemDeleteUser
message:
contentType: application/json
payload:
$ref: '#/components/schemas/MsAuthCacheUser'
components:
schemas:
MsAuthCacheConnection:
type: object
properties:
username:
type: string
connections:
type: array
items:
type: object
properties:
updated:
type: string
format: date
state:
type: string
username:
type: string
MsAuthCacheUser:
type: object
properties:
username:
type: string
email:
type: string