-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathTS29558_Eees_EASRegistration.yaml
637 lines (612 loc) · 22.2 KB
/
TS29558_Eees_EASRegistration.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
openapi: 3.0.0
info:
title: EES EAS Registration_API
description: |
API for EAS Registration.
© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
version: 1.1.0-alpha.6
externalDocs:
description: >
3GPP TS 29.558 V18.5.0 Enabling Edge Applications;
Application Programming Interface (API) specification; Stage 3
url: https://www.3gpp.org/ftp/Specs/archive/29_series/29.558/
servers:
- url: '{apiRoot}/eees-easregistration/v1'
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause 7.5 of 3GPP TS 29.558.
security:
- {}
- oAuth2ClientCredentials: []
paths:
/registrations:
post:
summary: Creates a new Individual EAS Registration resource
operationId: CreateEASRegistration
tags:
- EAS Registrations (Collection)
description: Registers a new EAS at an EES.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
responses:
'201':
description: EAS information is registered successfully at EES.
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
headers:
Location:
description: 'Contains the URI of the newly created resource'
required: true
schema:
type: string
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
/registrations/{registrationId}:
get:
summary: Read an Individual EAS Registration resource
operationId: ReadIndEASRegistration
tags:
- Individual EAS Registration (Document)
description: Retrieve an Individual EAS registration resource.
parameters:
- name: registrationId
in: path
description: Registration Id.
required: true
schema:
type: string
responses:
'200':
description: OK (The EAS registration information at the EES).
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'406':
$ref: 'TS29122_CommonData.yaml#/components/responses/406'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
put:
summary: Update an Individual EAS Registration resource
operationId: UpdateIndEASRegistration
tags:
- Individual EAS Registration (Document)
description: Fully replace an existing EAS Registration resource.
parameters:
- name: registrationId
in: path
description: EAS registration Id.
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
responses:
'200':
description: OK (The EAS registration information is updated successfully).
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
'204':
description: >
No Content. The individual EAS registration information is updated successfully.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
patch:
summary: Modify an Individual EAS Registration resource
operationId: ModifyIndEASRegistration
tags:
- Individual EAS Registration (Document)
description: Partially update an existing EAS Registration resource.
parameters:
- name: registrationId
in: path
description: EAS registration Id.
required: true
schema:
type: string
requestBody:
description: Partial update of an existing EAS registration resource.
required: true
content:
application/merge-patch+json:
schema:
$ref: '#/components/schemas/EASRegistrationPatch'
responses:
'200':
description: >
The Individual EAS registration is successfully modified and the updated
registration information is returned in the response.
content:
application/json:
schema:
$ref: '#/components/schemas/EASRegistration'
'204':
description: >
No Content. The individual EAS registration information is updated successfully.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29122_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29122_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29122_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
delete:
summary: Delete an Individual EAS Registration resource
operationId: DeleteIndEASRegistration
tags:
- Individual EAS Registration (Document)
description: Delete an existing EAS registration at EES.
parameters:
- name: registrationId
in: path
description: EAS registration Id.
required: true
schema:
type: string
responses:
'204':
description: The individual EAS registration is deleted.
'307':
$ref: 'TS29122_CommonData.yaml#/components/responses/307'
'308':
$ref: 'TS29122_CommonData.yaml#/components/responses/308'
'400':
$ref: 'TS29122_CommonData.yaml#/components/responses/400'
'401':
$ref: 'TS29122_CommonData.yaml#/components/responses/401'
'403':
$ref: 'TS29122_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29122_CommonData.yaml#/components/responses/404'
'429':
$ref: 'TS29122_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29122_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29122_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29122_CommonData.yaml#/components/responses/default'
components:
securitySchemes:
oAuth2ClientCredentials:
type: oauth2
flows:
clientCredentials:
tokenUrl: '{tokenUrl}'
scopes: {}
schemas:
EASRegistration:
type: object
description: Represents an EAS registration information.
properties:
easProf:
$ref: '#/components/schemas/EASProfile'
expTime:
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
suppFeat:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- easProf
EASProfile:
type: object
description: Represents the EAS profile information.
properties:
easId:
type: string
description: Identifier of the EAS.
endPt:
$ref: '#/components/schemas/EndPoint'
allowedPlmnId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PlmnIdNid'
easBdlInfos:
type: array
items:
$ref: '#/components/schemas/EASBundleInfo'
minItems: 1
acIds:
type: array
items:
type: string
minItems: 1
description: Identities of application clients that are served by the EAS.
provId:
type: string
description: Identifier of the ASP that provides the EAS.
type:
$ref: '#/components/schemas/EASCategory'
flexEasType:
type: string
description: The EAS type with flexible value set.
scheds:
type: array
items:
$ref: 'TS29122_CpProvisioning.yaml#/components/schemas/ScheduledCommunicationTime'
minItems: 1
description: The availability schedule of the EAS.
svcArea:
$ref: 'TS29558_Eecs_EESRegistration.yaml#/components/schemas/ServiceArea'
svcKpi:
$ref: '#/components/schemas/EASServiceKPI'
permLvl:
type: array
items:
$ref: '#/components/schemas/PermissionLevel'
minItems: 1
description: level of service permissions supported by the EAS.
easFeats:
type: array
items:
type: string
minItems: 1
description: Service specific features supported by EAS.
appLocs:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RouteToLocation'
minItems: 1
description: List of DNAI(s) and the N6 traffic information associated with the EAS.
svcContSupp:
type: array
items:
$ref: 'TS29558_Eecs_EESRegistration.yaml#/components/schemas/ACRScenario'
minItems: 1
description: The ACR scenarios supported by the EAS for service continuity.
svcContSuppExt1:
type: array
items:
$ref: '#/components/schemas/EASBundleInfo'
minItems: 1
description: >
Represents the information related to the EAS ability to handle bundled EAS ACRs.
This attribute may be present only when the "svcContSupp" attribute is also present.
When this attribute is present, it indicates that the EAS (identified by the "easId"
attribute) is able to handle bundled EAS ACRs and contains the information of the EAS
bundle(s) for which the EAS is able to handle bundled EAS ACRs.
transContSupp:
$ref: '#/components/schemas/TransContSuppDetails'
avlRep:
$ref: 'TS29122_CommonData.yaml#/components/schemas/DurationSec'
status:
type: string
description: EAS status information.
genCtxDur:
$ref: 'TS29122_CommonData.yaml#/components/schemas/DurationSec'
easSyncSupp:
type: boolean
default: false
description: >
Set to true to indicate that content synchronization between EASs is supported.
Set to false to indicate that content synchronization between EASs is not supported.
The default value when this attribute is omitted is false.
required:
- easId
- endPt
not:
required: [ type, flexEasType ]
EASRegistrationPatch:
type: object
description: Represents partial update request of individual EAS registration information.
properties:
easProf:
$ref: '#/components/schemas/EASProfile'
expTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTimeRm'
EASServiceKPI:
type: object
description: Represents the EAS service KPI information.
properties:
maxReqRate:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
maxRespTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
avail:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
avlComp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
avlGraComp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
avlMem:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
avlStrg:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
connBand:
$ref: 'TS29571_CommonData.yaml#/components/schemas/BitRate'
EASBundleInfo:
type: object
description: Represents the EAS bundle information.
properties:
bdlType:
$ref: '#/components/schemas/BdlType'
bdlId:
type: string
description: Indicates a bundle ID.
easIdsList:
type: array
items:
type: string
minItems: 1
easBdlReqs:
$ref: '#/components/schemas/EASBdlReqs'
mainEasId:
type: string
required:
- bdlType
anyOf:
- required: [bdlId]
- required: [easIdsList]
EASBdlReqs:
type: object
description: Represents the EAS bundle requirements.
properties:
coordinatedEasDisc:
type: boolean
default: false
description: >
Set to true to indicate that coordianted EAS discovery is required.
Set to false to indicate that coordianted EAS discovery is not required.
The default value when this attribute is omitted is false.
coordinatedAcr:
$ref: '#/components/schemas/CoordinatedAcrReqs'
affinity:
$ref: '#/components/schemas/Affinity'
CoordinatedAcrReqs:
type: object
description: Represents the coordinated ACR related requirements for an EAS bundle.
properties:
coordinatedAcrInd:
type: boolean
default: false
description: >
Set to true to indicate that coordianted ACR is required.
Set to false to indicate that coordianted ACR is not required.
The default value when this attribute is omitted is false.
failureAction:
$ref: '#/components/schemas/FailureAction'
required:
- coordinatedAcrInd
EndPoint:
type: object
description: The end point information to reach EAS.
properties:
fqdn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Fqdn'
ipv4Addrs:
type: array
items:
$ref: 'TS29122_CommonData.yaml#/components/schemas/Ipv4Addr'
minItems: 1
description: IPv4 addresses of the edge server.
ipv6Addrs:
type: array
items:
$ref: 'TS29122_CommonData.yaml#/components/schemas/Ipv6Addr'
minItems: 1
description: IPv6 addresses of the edge server.
uri:
$ref: 'TS29122_CommonData.yaml#/components/schemas/Uri'
oneOf:
- required: [uri]
- required: [fqdn]
- required: [ipv4Addrs]
- required: [ipv6Addrs]
PermissionLevel:
anyOf:
- type: string
enum:
- TRIAL
- GOLD
- SILVER
- OTHER
- 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.
description: |
Indicates the level of service permissions supported by the EAS.
Possible values are:
- TRIAL: Level of service permission supported is TRIAL.
- GOLD: Level of service permission supported is GOLD.
- SILVER: Level of service permission supported is SILVER.
- OTHER: Any other level of service permissions supported.
EASCategory:
anyOf:
- type: string
enum:
- UAS
- V2X
- SEAL_SEALDD_SERVERS
- OTHER
- 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.
description: |
Indicates the category or type of the EAS.
Possible values are:
- UAS: Indicates that the EAS category is for UAS services.
- V2X: Category of EAS is for V2X Services.
- SEALDD: Indicates that the EAS category is SEALDD Server for SEALDD services.
- OTHER: Any other type of EAS category.
TransContSuppDetails:
type: object
description: >
Represents the detailed information about the EAS (e.g. SEALDD Server) capability for
seamless transport layer service continuity.
properties:
transProtocs:
type: array
items:
$ref: '#/components/schemas/TransportProtocol'
minItems: 1
description: >
Indicates the transport layer protocols supported for EAS context transfer using
the seamless transport layer service continuity capability.
required:
- transProtocs
TransportProtocol:
anyOf:
- type: string
enum:
- QUIC
- TCP
- TCP_TLS
- type: string
description: >
This string provides forward-compatibility with future extensions to the enumeration
and is not used to encode content defined in the present version of this API.
description: |
Indicates the transport layer protocol.
Possible values are:
- QUIC: Indicates the QUIC protocol.
- TCP: Indicates the Transmission Control (TCP) Protocol.
- TCP_TLS: Indicates the Transmission Control Protocol (TCP) with Transport Layer Security
(TLS) protocol.
BdlType:
anyOf:
- type: string
enum:
- DIRECT
- PROXY
- type: string
description: >
This string provides forward-compatibility with future extensions to the enumeration and
is not used to encode content defined in the present version of this API.
description: |
Represents the EAS Bundle type.
Possible values are:
- DIRECT: Indicates that the EAS Bundle type is direct bundle.
- PROXY: Indicates that the EAS Bundle type is proxy bundle.
Affinity:
anyOf:
- type: string
enum:
- STRONG
- PREFERRED
- WEAK
- type: string
description: >
This string provides forward-compatibility with future extensions to the enumeration and
is not used to encode content defined in the present version of this API.
description: |
Represents the affinity requirements of an EAS bundle.
Possible values are:
- STRONG: Indicates that the affinity is strong, i.e., all the EASs of the bundle shall be
in the same EDN.
- PREFERRED: Indicates that the affinity is preferred, i.e., it is nice to have all the EASs
of the bundle in the same EDN, but it is not essential.
- WEAK: Indicates that the affinity is weak, i.e., it is not essential to have all the EASs
of the bundle in the same EDN.
FailureAction:
anyOf:
- type: string
enum:
- CANCEL
- PROCEED
- type: string
description: >
This string provides forward-compatibility with future extensions to the enumeration and
is not used to encode content defined in the present version of this API.
description: |
Represents the EAS bundle related failure action during ACR.
Possible values are:
- CANCEL: Indicates that ACR shall be cancelled for the other EAS(s) of the bundle for which
ACR is not failed.
- PROCEED: Indicates that ACR shall proceed for the other EAS(s) of the bundle for which
ACR is not failed.