Newer
Older
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
openapi: 3.0.0
info:
title: ETSI GS MEC 028 - WLAN Access Information API
version: 2.1.1
description: The ETSI MEC ISG MEC028 WLAN Access Information API described using OpenAPI
license:
name: BSD-3-Clause
url: 'https://forge.etsi.org/legal-matters'
externalDocs:
description: ETSI MEC028 V2.1.1 WLAN Information API
url: 'http://www.etsi.org/deliver/etsi_gs/MEC/001_099/028/02.01.01_60/gs_mec028v020101p.pdf'
servers:
- url: 'https://{apiRoot}/wai/v2'
paths:
/queries/ap/ap_information:
get:
tags:
- ''
summary: 'Retrieve information on existing Access Points'
description: 'Queries information about existing WLAN Access Points'
operationId: apInfoGET
parameters:
- $ref: '#/components/parameters/Query.Filter'
- $ref: '#/components/parameters/Query.AllFields'
- $ref: '#/components/parameters/Query.Fields'
- $ref: '#/components/parameters/Query.ExcludeFields'
- $ref: '#/components/parameters/Query.ExcludeDefault'
responses:
'200':
description: Successful response to ap_info request
content:
application/json:
schema:
type: object
properties:
apInfo:
type: array
items:
$ref: '#/components/schemas/ApInfo'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
$ref: '#/components/responses/406'
'429':
$ref: '#/components/responses/429'
/queries/sta/sta_information:
get:
tags:
- ''
summary: 'Retrieve information on existing Stations'
description: 'Queries information about existing WLAN stations'
operationId: staInfoGET
parameters:
- $ref: '#/components/parameters/Query.Filter'
- $ref: '#/components/parameters/Query.AllFields'
- $ref: '#/components/parameters/Query.Fields'
- $ref: '#/components/parameters/Query.ExcludeFields'
- $ref: '#/components/parameters/Query.ExcludeDefault'
responses:
'200':
description: Successful response to sta_info request
content:
application/json:
schema:
type: object
properties:
staInfo:
type: array
items:
$ref: '#/components/schemas/StaInfo'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
$ref: '#/components/responses/406'
'429':
$ref: '#/components/responses/429'
/subscriptions/:
get:
tags:
- ''
summary: 'Retrieve information on subscriptions for notifications'
description: 'Queries information on subscriptions for notifications'
operationId: subscriptionLinkList_subscriptionsGET
parameters:
- $ref: '#/components/parameters/Query.SubscriptionType'
responses:
'200':
description: 'Response body contains the list of links to requestors subscriptions.'
content:
application/json:
schema:
type: object
required:
- subscriptionLinkList
properties:
subscriptionLinkList:
$ref: '#/components/schemas/SubscriptionLinkList'
example:
subscriptionLinkList:
_links:
self:
href: 'http://meAppServer.example.com/wai/v2/subscriptions'
subscription:
- _links:
self:
href: 'http://meAppServer.example.com/wai/v2/subscriptions/sub123'
callbackReference: 'http://my.callback.com/wai/assocStaSubscription/some-id'
subscriptionType: AssocStaSubscription
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
$ref: '#/components/responses/406'
'429':
$ref: '#/components/responses/429'
post:
tags:
- ''
summary: 'Create a new subscription'
description: 'Creates a new subscription to WLAN Access Information notifications'
operationId: subscriptionsPOST
requestBody:
description: Subscription to be created
required: true
content:
application/json:
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/AssocStaSubscription'
- $ref: '#/components/schemas/StaDataRateSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: AssocStaSubscription
callbackReference: 'http://meAppClient.example.com/wai/v2/notifications/1'
expiryDeadline:
seconds: 1977836800
nanoSeconds: 0
apId:
macId: 005C0A0A0A0A
ssid: 'myNetworkSsid'
ipAddress: 10.10.100.1
responses:
'201':
description: Successful subscription response
content:
application/json:
schema:
type: object
properties:
notificationSubscription:
oneOf:
- $ref: '#/components/schemas/AssocStaSubscription'
- $ref: '#/components/schemas/StaDataRateSubscription'
discriminator:
propertyName: subscriptionType
example:
notificationSubscription:
subscriptionType: AssocStaSubscription
callbackReference: 'http://meAppClient.example.com/wai/v2/notifications/1'
_links:
self:
href: 'http://meAppServer.example.com/wai/v2/subscriptions/sub123'
expiryDeadline:
seconds: 1977836800
nanoSeconds: 0
apId:
macId: 005C0A0A0A0A
ssid: 'myNetworkSsid'
ipAddress: 10.10.100.1
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'404':
$ref: '#/components/responses/404'
'406':
Loading full blame...