-
Notifications
You must be signed in to change notification settings - Fork 255
/
TS26517_MBSUserServiceAnnouncement.yaml
313 lines (294 loc) · 9.38 KB
/
TS26517_MBSUserServiceAnnouncement.yaml
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
openapi: 3.0.0
info:
title: 'MBS User Service Announcement'
version: 1.2.0
description: |
MBS User Service Announcement Element units.
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 26.517 V17.4.0; 5G Multicast-Broadcast User Services; Protocols and Formats
url: http://www.3gpp.org/ftp/Specs/archive/26_series/26.517/
paths:
/user-service-descriptions:
get:
operationId: discoverUserServiceDescriptions
summary: 'Discover User Service Descriptions'
description: 'Discover User Service Descriptions that match the supplied query filter(s). At least one filter query parameter must be included in the request URL.'
parameters:
- in: query
name: service-class
schema:
type: string
required: true
description: 'Filter for User Service Descriptions tagged with the supplied service class term identifier expressed as a fully-qualified URI string from a controlled vocabulary'
responses:
'200':
# OK
description: "Success"
content:
application/json:
schema:
$ref: '#/components/schemas/UserServiceDescriptions'
'204':
# No Content (no matching User Service Descriptions)
description: "No Matches Found"
'500':
# Internal Server Error
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
# Service Unavailable
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
/user-service-descriptions/{externalServiceId}:
get:
operationId: retrieveUserServiceDescription
summary: 'Retrieve User Service Description'
description: 'Retrieve the User Service Description of a single service by supplying its external service identifier.'
parameters:
- name: externalServiceId
in: path
required: true
schema:
type: string
description: 'The external service identifier of a User Service provisioned in the MBSF.'
responses:
'200':
# OK
description: "Success"
content:
application/json:
schema:
$ref: '#/components/schemas/UserServiceDescription'
'404':
# Not Found
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'500':
# Internal Server Error
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
# Service Unavailable
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
components:
schemas:
UserServiceDescriptions:
type: array
items:
$ref: '#/components/schemas/UserServiceDescription'
minItems: 1
UserServiceDescription:
type: object
properties:
name:
type: array
items:
type: string
serviceLanguage:
type: array
items:
type: string
serviceId:
type: string
distributionSessionDescription:
$ref: '#/components/schemas/DistributionSessionDescription'
appServiceDescription:
$ref: '#/components/schemas/AppServiceDescription'
scheduleDescription:
$ref: '#/components/schemas/ScheduleDescription'
availabilityInfo:
$ref: '#/components/schemas/AvailabilityInformation'
required:
- serviceId
DistributionSessionDescription:
type: object
properties:
distributionMethod:
$ref: '#/components/schemas/DistributionMethod'
conformanceProfile:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
sessionDescriptionLocator:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
objectRepairParameters:
$ref: '#/components/schemas/AssociatedProcedureDescription'
dataNetworkName:
type: string
mbsAppService:
type: array
items:
$ref: '#/components/schemas/ApplicationService'
unicastAppServices:
type: array
items:
type: object
properties:
unicastAppService:
type: array
items:
$ref: '#/components/schemas/ApplicationService'
required:
- distributionMethod
- sessionDescriptionLocator
DistributionMethod:
anyOf:
- type: string
enum: [OBJECT, PACKET]
- type: string
description: >
This string provides forward-compatibility with future
extensions to the enumeration but is not used to encode
content defined in the present version of this API.
AppServiceDescription:
type: object
properties:
mediaEntryPointLocator:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
mimeType:
type: string
identicalContents:
type: array
items:
type: object
properties:
unicastAppService:
type: array
items:
$ref: '#/components/schemas/ApplicationService'
minItems: 2
alternativeContents:
type: array
items:
type: array
items:
$ref: '#/components/schemas/ApplicationService'
ApplicationService:
type: object
properties:
basePattern:
type: string
required:
- basePattern
AvailabilityInformation:
type: array
items:
$ref: '#/components/schemas/AvailabilityInformationBinding'
AvailabilityInformationBinding:
type: object
properties:
mbsServiceArea:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/MbsServiceArea'
mbsFSAId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/MbsFsaId'
radioFrequency:
type: array
items:
type: integer
minimum: 0
AssociatedProcedureDescription:
type: object
properties:
postObjectRepair:
$ref: '#/components/schemas/PostObjectRepair'
mbsObjectRepair:
$ref: '#/components/schemas/MbsObjectRepair'
PostObjectRepair:
type: object
properties:
serviceLocators:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
offsetTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec'
randomTimePeriod:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec'
MbsObjectRepair:
type: object
properties:
sessionDescriptionURI:
type: string
ScheduleDescription:
type: array
items:
$ref: '#/components/schemas/ServiceSchedule'
ServiceSchedule:
type: object
properties:
sessionSchedule:
$ref: '#/components/schemas/SessionSchedule'
sessionScheduleOverride:
$ref: '#/components/schemas/SessionScheduleOverride'
objectSchedule:
$ref: '#/components/schemas/ObjectSchedule'
serviceId:
type: string
serviceClass:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
required:
- sessionSchedule
- serviceId
- serviceClass
SessionSchedule:
type: array
items:
type: object
properties:
start:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
stop:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
reoccurencePattern:
type: string
numberOfTimes:
type: integer
minimum: 1
reoccurenceStopTime:
type: string
index:
type: integer
fDTInstanceLocator:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
required:
- start
- stop
SessionScheduleOverride:
type: array
items:
type: object
properties:
start:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
stop:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
index:
type: integer
cancelled:
type: boolean
sessionDescriptionLocator:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
ObjectSchedule:
type: array
items:
type: object
properties:
objectLocator:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
sessionId:
type: string
objectEtag:
type: string
unicastOnly:
type: boolean
deliveryInfo:
type: array
items:
type: object
properties:
start:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
stop:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'