Skip to content

Commit 75878c4

Browse files
committed
Rel-18 Mar'24
1 parent 045f2ab commit 75878c4

File tree

181 files changed

+18612
-2425
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+18612
-2425
lines changed

TS24558_Eecs_ServiceProvisioning.yaml

+59-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ openapi: 3.0.0
22

33
info:
44
title: Eecs_ServiceProvisioning
5-
version: "1.1.0-alpha.4"
5+
version: "1.1.0-alpha.5"
66
description: |
77
API for ECS Service Provisioning.
88
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
99
All rights reserved.
1010
1111
externalDocs:
12-
description: 3GPP TS 24.558 V18.3.0 Enabling Edge Applications; Protocol specification.
12+
description: 3GPP TS 24.558 V18.4.0 Enabling Edge Applications; Protocol specification.
1313
url: https://www.3gpp.org/ftp/Specs/archive/24_series/24.558/
1414

1515
security:
@@ -334,6 +334,8 @@ components:
334334
items:
335335
$ref: 'TS24558_Eees_EECRegistration.yaml#/components/schemas/ACProfile'
336336
description: Information about services the EEC wants to connect to.
337+
appGroupProfile:
338+
$ref: '#/components/schemas/AppGroupProfile'
337339
eecSvcContSupp:
338340
type: array
339341
items:
@@ -369,6 +371,12 @@ components:
369371
$ref: '#/components/schemas/EDNConfigInfo'
370372
minItems: 1
371373
description: List of EDN configuration information.
374+
redirectedECS:
375+
type: array
376+
items:
377+
$ref: '#/components/schemas/ECSRedirectInfo'
378+
minItems: 1
379+
description: List of redirected ECS information.
372380
required:
373381
- ednCnfgInfo
374382

@@ -440,6 +448,12 @@ components:
440448
$ref: '#/components/schemas/EDNConfigInfo'
441449
minItems: 1
442450
description: List of EDN configuration information.
451+
redirectedECS:
452+
type: array
453+
items:
454+
$ref: '#/components/schemas/ECSRedirectInfo'
455+
minItems: 1
456+
description: List of redirected ECS information.
443457
required:
444458
- subId
445459
- ednCnfgInfo
@@ -454,6 +468,23 @@ components:
454468
type: string
455469
description: Identifies the SSID of the access point to which the UE is attached.
456470

471+
AppGroupProfile:
472+
description: Represents the application group profile for common EAS.
473+
type: object
474+
properties:
475+
appGrpId:
476+
type: string
477+
description: Represents the application group that uniquely identifies
478+
the group of UEs using the same application.
479+
easId:
480+
type: string
481+
description: Represents the application identifier of the EAS.
482+
expectedSvcArea:
483+
$ref: 'TS29122_CommonData.yaml#/components/schemas/LocationArea5G'
484+
required:
485+
- appGrpId
486+
- easId
487+
457488
EDNConfigInfo:
458489
description: Represents the EDN configuration information.
459490
type: object
@@ -472,6 +503,21 @@ components:
472503
- ednConInfo
473504
- eess
474505

506+
ECSRedirectInfo:
507+
description: >
508+
Represents ECS information where the EEC shall redirect the ECS Service
509+
Provisioning request.
510+
type: object
511+
properties:
512+
ecsEndPt:
513+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
514+
dnn:
515+
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnn'
516+
snssai:
517+
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
518+
required:
519+
- ecsEndPt
520+
475521
EDNConInfo:
476522
description: Represents an EDN connection information.
477523
type: object
@@ -499,6 +545,11 @@ components:
499545
description: >
500546
Application identities of the Edge Application Servers registered
501547
with the EES.
548+
appGroupIdList:
549+
type: array
550+
items:
551+
type: string
552+
description: List of Application Group IDs associated with EAS.
502553
ecspInfo:
503554
type: string
504555
description: Represents an ECSP Information.
@@ -536,8 +587,12 @@ components:
536587
minItems: 1
537588
description: >
538589
Indicates the authentication methods supported by the EES.
539-
easBundleInfo:
540-
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
590+
easBundleInfos:
591+
type: array
592+
items:
593+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
594+
minItems: 1
595+
description: List of EAS bundles to which the EAS belongs.
541596
required:
542597
- eesId
543598
- eecRegConf
@@ -587,4 +642,3 @@ components:
587642
items:
588643
$ref: '#/components/schemas/ConnectivityInfo'
589644
description: List of connectivity information for the UE.
590-

TS24558_Eees_ACREvents.yaml

+13-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ openapi: 3.0.0
22

33
info:
44
title: Eees_ACREvents
5-
version: "1.1.0-alpha.2"
5+
version: "1.1.0-alpha.3"
66
description: |
77
API for ACR events subscription and notification.
88
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
99
All rights reserved.
1010
1111
externalDocs:
1212
description: >
13-
3GPP TS 24.558 V18.3.0 Enabling Edge Applications; Protocol specification.
13+
3GPP TS 24.558 V18.4.0 Enabling Edge Applications; Protocol specification.
1414
url: 'https://www.3gpp.org/ftp/Specs/archive/24_series/24.558/'
1515

1616
security:
@@ -342,6 +342,17 @@ components:
342342
$ref: '#/components/schemas/ACRCompleteEventInfo'
343343
eecCtxtReloc:
344344
$ref: '#/components/schemas/EecCtxtRelocStatus'
345+
acrScenarioList:
346+
type: array
347+
items:
348+
$ref: 'TS29558_Eecs_EESRegistration.yaml#/components/schemas/ACRScenario'
349+
easBundleInfo:
350+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
351+
tEasEndPointBundleList:
352+
type: array
353+
items:
354+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
355+
minItems: 1
345356
required:
346357
- subId
347358
- easId
@@ -412,5 +423,3 @@ components:
412423
required:
413424
- acrRes
414425
- tEasEndpoint
415-
416-

TS24558_Eees_AppContextRelocation.yaml

+40-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
openapi: 3.0.0
22
info:
33
title: Eees Application Context Relocation Service
4-
version: "1.1.0-alpha.3"
4+
version: "1.1.0-alpha.4"
55
description: |
66
Eees Application Context Relocation Service.
77
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
88
All rights reserved.
99
1010
externalDocs:
1111
description: >
12-
3GPP TS 24.558 V18.3.0; Enabling Edge Applications; Protocol specification; Stage 3.
12+
3GPP TS 24.558 V18.4.0; Enabling Edge Applications; Protocol specification; Stage 3.
1313
url: 'https://www.3gpp.org/ftp/Specs/archive/29_series/24.558/'
1414

1515
servers:
@@ -213,10 +213,19 @@ components:
213213
default: false
214214
eecCtxtReloc:
215215
$ref: '#/components/schemas/EecCtxtReloc'
216-
predictExpTime:
217-
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
218216
expectedLocArea:
219217
$ref: '#/components/schemas/ExpectedLocationArea'
218+
acrParams:
219+
$ref: '#/components/schemas/AcrParameters'
220+
acrModificationParams:
221+
$ref: '#/components/schemas/AcrModificationParams'
222+
easBundleInfo:
223+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
224+
tEasEndPointBundleList:
225+
type: array
226+
items:
227+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
228+
minItems: 1
220229
required:
221230
- requestorId
222231
- tEasEndpoint
@@ -238,6 +247,13 @@ components:
238247
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
239248
expectedLocArea:
240249
$ref: '#/components/schemas/ExpectedLocationArea'
250+
easBundleInfo:
251+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASBundleInfo'
252+
tEasEndPointBundleList:
253+
type: array
254+
items:
255+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
256+
minItems: 1
241257
required:
242258
- ueId
243259
- tEasId
@@ -269,3 +285,23 @@ components:
269285
$ref: 'TS29122_MonitoringEvent.yaml#/components/schemas/LocationInfo'
270286
svcArea:
271287
$ref: 'TS29122_CommonData.yaml#/components/schemas/LocationArea5G'
288+
289+
AcrParameters:
290+
description: >
291+
Represents ACR parameters specific to ACR request initiated for Service continuity planning.
292+
type: object
293+
properties:
294+
predictExpTime:
295+
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
296+
297+
AcrModificationParams:
298+
description: >
299+
Represents ACR parameters specific to ACR modification request.
300+
type: object
301+
properties:
302+
sEasEndpoint:
303+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
304+
tEasEndpoint:
305+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
306+
acrParams:
307+
$ref: '#/components/schemas/AcrParameters'

TS24558_Eees_EASDiscovery.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ info:
66
API for EAS Discovery.
77
© 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
88
All rights reserved.
9-
version: "1.1.0-alpha.4"
9+
version: "1.1.0-alpha.5"
1010

1111
externalDocs:
1212
description: >
13-
3GPP TS 24.558 V18.3.0 Enabling Edge Applications; Protocol specification.
13+
3GPP TS 24.558 V18.4.0 Enabling Edge Applications; Protocol specification.
1414
url: https://www.3gpp.org/ftp/Specs/archive/24_series/24.558/
1515

1616
security:
@@ -510,6 +510,8 @@ components:
510510
$ref: '#/components/schemas/ACCharacteristics'
511511
minItems: 1
512512
description: AC description for which an EAS is needed.
513+
appGroupProfile:
514+
$ref: 'TS24558_Eecs_ServiceProvisioning.yaml#/components/schemas/AppGroupProfile'
513515
easChars:
514516
type: array
515517
items:
@@ -573,6 +575,8 @@ components:
573575
properties:
574576
eas:
575577
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EASProfile'
578+
eesEndPt:
579+
$ref: 'TS29558_Eees_EASRegistration.yaml#/components/schemas/EndPoint'
576580
lifeTime:
577581
$ref: 'TS29122_CommonData.yaml#/components/schemas/DateTime'
578582
required:
@@ -732,4 +736,3 @@ components:
732736
properties:
733737
numRecPerf:
734738
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
735-

0 commit comments

Comments
 (0)