A.16 RacsParameterProvisioning API
29.1223GPPRelease 18T8 reference point for Northbound APIsTS
openapi: 3.0.0
info:
title: 3gpp-racs-parameter-provisioning
version: 1.1.0
description: |
API for provisioning UE radio capability parameters.
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 29.122 V17.6.0 T8 reference point for Northbound APIs
url: ‘https://www.3gpp.org/ftp/Specs/archive/29_series/29.122/’
security:
– {}
– oAuth2ClientCredentials: []
servers:
– url: ‘{apiRoot}/3gpp-racs-pp/v1’
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause 5.2.4 of 3GPP TS 29.122.
paths:
/{scsAsId}/provisionings:
parameters:
– name: scsAsId
in: path
description: Identifier of the SCS/AS as defined in clause 5.2.4 of 3GPP TS 29.122.
required: true
schema:
type: string
get:
summary: Read all RACS parameter provisionings for a given AF.
operationId: FetchAllRACSParameterProvisionings
tags:
– RACS Parameter Provisionings
responses:
‘200’:
description: OK. The provisioning information related to the request URI is returned.
content:
application/json:
schema:
type: array
items:
$ref: ‘#/components/schemas/RacsProvisioningData’
minItems: 0
‘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’
post:
summary: Create a new RACS parameter provisioning.
operationId: CreateRACSParameterProvisioning
tags:
– RACS Parameter Provisionings
requestBody:
description: create new provisionings for a given SCS/AS.
required: true
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
responses:
‘201’:
description: Created. The provisioning was created successfully.
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
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’:
description: The RACS data for all RACS IDs were not provisioned successfully.
content:
application/json:
schema:
type: array
items:
$ref: ‘#/components/schemas/RacsFailureReport’
minItems: 1
application/problem+json:
schema:
$ref: ‘TS29122_CommonData.yaml#/components/schemas/ProblemDetails’
‘503’:
$ref: ‘TS29122_CommonData.yaml#/components/responses/503’
default:
$ref: ‘TS29122_CommonData.yaml#/components/responses/default’
/{scsAsId}/provisionings/{provisioningId}:
parameters:
– name: scsAsId
in: path
description: Identifier of the SCS/AS as defined in clause 5.2.4 of 3GPP TS 29.122.
required: true
schema:
type: string
– name: provisioningId
in: path
description: Provisioning ID
required: true
schema:
type: string
get:
summary: Read an existing RACS parameter provisioning.
operationId: FetchIndRACSParameterProvisioning
tags:
– Individual RACS Parameter Provisioning
responses:
‘200’:
description: OK. The provisioning information related to the request URI is returned.
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
‘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’
patch:
summary: Modify some properties in an existing RACS parameter provisioning.
operationId: ModifyIndRACSParameterProvisioning
tags:
– Individual RACS Parameter Provisioning
requestBody:
description: update an existing parameter provisioning.
required: true
content:
application/merge-patch+json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningDataPatch’
responses:
‘200’:
description: OK. The provisioning data was updated successfully. The SCEF shall return an updated provisioning information in the response.
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
‘204’:
description: The provisioning data was updated successfully, and no content is to be sent in the response message body.
‘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’:
description: The RACS data for all RACS IDs were not provisioned successfully.
content:
application/json:
schema:
type: array
items:
$ref: ‘#/components/schemas/RacsFailureReport’
minItems: 1
application/problem+json:
schema:
$ref: ‘TS29122_CommonData.yaml#/components/schemas/ProblemDetails’
‘503’:
$ref: ‘TS29122_CommonData.yaml#/components/responses/503’
default:
$ref: ‘TS29122_CommonData.yaml#/components/responses/default’
put:
summary: Modify all properties in an existing RACS parameter provisioning.
operationId: UpdateIndRACSParameterProvisioning
tags:
– Individual RACS Parameter Provisioning
requestBody:
description: update an existing parameter provisioning.
required: true
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
responses:
‘200’:
description: OK. The provisioning data was updated successfully. The SCEF shall return an updated provisioning information in the response.
content:
application/json:
schema:
$ref: ‘#/components/schemas/RacsProvisioningData’
‘204’:
description: The provisioning data was updated successfully, and no content is to be sent in the response message body.
‘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’:
description: The RACS data for all RACS IDs were not provisioned successfully.
content:
application/json:
schema:
type: array
items:
$ref: ‘#/components/schemas/RacsFailureReport’
minItems: 1
application/problem+json:
schema:
$ref: ‘TS29122_CommonData.yaml#/components/schemas/ProblemDetails’
‘503’:
$ref: ‘TS29122_CommonData.yaml#/components/responses/503’
default:
$ref: ‘TS29122_CommonData.yaml#/components/responses/default’
delete:
summary: Delete a RACS parameter provisioning.
operationId: DeleteIndRACSParameterProvisioning
tags:
– Individual RACS Parameter Provisioning
responses:
‘204’:
description: No Content. The provisioning was terminated successfully. The payload body shall be empty.
‘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:
RacsProvisioningData:
description: Represents a UE’s radio capability data.
type: object
properties:
self:
$ref: ‘TS29122_CommonData.yaml#/components/schemas/Link’
supportedFeatures:
$ref: ‘TS29571_CommonData.yaml#/components/schemas/SupportedFeatures’
racsConfigs:
type: object
additionalProperties:
$ref: ‘#/components/schemas/RacsConfiguration’
minProperties: 1
description: Identifies the configuration related to manufacturer specific UE radio capability. Each element uniquely identifies an RACS configuration for an RACS ID and is identified in the map via the RACS ID as key. The response shall include successfully provisioned RACS data.
racsReports:
type: object
additionalProperties:
$ref: ‘#/components/schemas/RacsFailureReport’
minProperties: 1
description: Supplied by the SCEF. Contains the RACS IDs for which the RACS data are not provisioned successfully. Any string value can be used as a key of the map.
readOnly: true
required:
– racsConfigs
RacsFailureReport:
description: Represents a radio capability data provisioning failure report.
type: object
properties:
racsIds:
type: array
items:
type: string
minItems: 1
description: Identifies the RACS ID(s) for which the RACS data are not provisioned successfully.
failureCode:
$ref: ‘#/components/schemas/RacsFailureCode’
required:
– racsIds
– failureCode
RacsConfiguration:
description: Represents a single UE radio capability configuration data.
type: object
properties:
racsId:
type: string
description: The UE radio capability ID provided by the SCS/AS to identify the UE radio capability data. See 3GPP TS 23.003 for the encoding.
racsParamEps:
type: string
description: The UE radio capability data in EPS.
racsParam5Gs:
type: string
description: The UE radio capability data in 5GS.
imeiTacs:
type: array
items:
$ref: ‘TS29571_CommonData.yaml#/components/schemas/TypeAllocationCode’
minItems: 1
description: Related UE model’s IMEI-TAC values.
anyOf:
– required: [racsParamEps]
– required: [racsParam5Gs]
required:
– racsId
– imeiTacs
RacsProvisioningDataPatch:
description: Represents parameters to request the modification of a UE’s radio capability data.
type: object
properties:
racsConfigs:
type: object
additionalProperties:
$ref: ‘#/components/schemas/RacsConfigurationRm’
minProperties: 1
description: Identifies the configuration related to manufactuer specific UE radio capability. Each element uniquely identifies an RACS configuration for an RACS ID and is identified in the map via the RACS ID as key.
RacsConfigurationRm:
description: Represents the same as the RacsConfiguration data type but with the nullable:true property.
type: object
properties:
racsParamEps:
type: string
description: The UE radio capability data in EPS.
nullable: true
racsParam5Gs:
type: string
description: The UE radio capability data in 5GS.
nullable: true
imeiTacs:
type: array
items:
$ref: ‘TS29571_CommonData.yaml#/components/schemas/TypeAllocationCode’
minItems: 1
description: Related UE model’s IMEI-TAC values.
nullable: true
RacsFailureCode:
anyOf:
– type: string
enum:
– MALFUNCTION
– RESOURCE_LIMITATION
– RACS_ID_DUPLICATED
– OTHER_REASON
– 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: >
Possible values are
– MALFUNCTION: This value indicates that something functions wrongly in RACS provisioning or the RACS provisioning does not function at all.
– RESOURCE_LIMITATION: This value indicates there is resource limitation for RACS data storage.
– RACS_ID_DUPLICATED: The received RACS identifier(s) are already provisioned.
– OTHER_REASON: Other reason unspecified.
Annex B (informative):
Change history
|
Change history |
|||||||
|
Date |
Meeting |
TDoc. |
CR |
Rev |
Cat |
Subject/Comment |
New |
|
2017-04 |
CT3#89 |
TS skeleton of T8 reference point stage 3. Inclusion of C3-172217, C3-172242, C3-172249 and editorial change from Rapporteur. |
0.0.0 |
||||
|
2017-05 |
CT3#90 |
Inclusion of C3-173256, C3-173257, C3-173306, C3-173318, C3-173323, C3-173329 and editorial change from Rapporteur. |
0.1.0 |
||||
|
2017-09 |
CT3#91 |
Inclusion of C3-174368, C3-174279, C3-174079, C3-174352, C3-174328, C3-174329, C3-174374, C3-174375, C3-174243, C3-174333, C3-174334, C3-174376, C3-174281, C3-174377, C3-174356, C3-174280, C3-174358, C3-174359, C3-174379, C3-174337, C3-174361, C3-174294, C3-174362, C3-174385, C3-174299 and editorial change from Rapporteur. |
0.2.0 |
||||
|
2017-10 |
CT3#92 |
Inclusion of C3-175068, C3-175365, C3-175370, C3-175301, C3-175227, C3-175228, C3-175359, C3-175230, C3-175231, C3-175337, C3-175247, C3-175290, C3-175360 and editorial changes from Rapporteur. |
0.3.0 |
||||
|
2017-12 |
CT3#93 |
Inclusion of C3-176329, C3-176218, C3-176356, C3-176375, C3-176357, C3-176334, C3-176378, C3-176067, C3-176335, C3-176073, C3-176337, C3-176380, C3-176390, C3-176362, C3-176339, C3-176340, C3-176233, C3-176089, C3-176267, C3-176383, C3-176365, C3-176366, C3-176272, C3-176273, C3-176274, C3-176391, C3-176368, C3-176369, C3-176385, C3-176279 and editorial changes from Rapporteur. |
0.4.0 |
||||
|
2018-01 |
CT3#94 |
Inclusion of C3-180349, C3-180329, C3-180222, C3-180078, C3-180285, C3-180081, C3-180330, C3-180331, C3-180084, C3-180332, C3-180333, C3-180290, C3-180291, C3-180089, C3-180234, C3-180334, C3-180294, C3-180237, C3-180295, C3-180296, C3-180297, C3-180337, C3-180357, C3-180136, C3-180298 and editorial changes from Rapporteur. |
0.5.0 |
||||
|
2018-02 |
CT3#95 |
Inclusion of C3-181271, C3-181324, C3-181340, C3-181273, C3-181333, C3-181334, C3-181276, C3-181325 and editorial changes from Rapporteur. |
0.6.0 |
||||
|
2018-03 |
CT#79 |
CP-181053 |
TS sent to plenary for information |
1.0.0 |
|||
|
2018-04 |
CT3#96 |
Inclusion of C3-182464, C3-182017, C3-182444, C3-182019, C3-182486, C3-182487, C3-182344, C3-182074, C3-182373, C3-182446, C3-182291, C3-182292, C3-182488, C3-182508, C3-182345, C3-182094, C3-182295, C3-182346, C3-182096, C3-182347, C3-182348, C3-182026, C3-182349, C3-182098, C3-182350, C3-182099, C3-182100, C3-182209, C3-182210, C3-182101, C3-182102, C3-182455, C3-182506, C3-182353, C3-182491, C3-182355, C3-182447, C3-182507, C3-182359, C3-182106, C3-182107, C3-182108, C3-182492, C3-182109, C3-182110, C3-182480, C3-182362, C3-182448, C3-182449, C3-182450, C3-182425, C3-182365, C3-182112, C3-182113, C3-182035, C3-182367, C3-182115, C3-182368, C3-182493, C3-182494, C3-182509, C3-182372 and editorial changes from Rapporteur. |
1.1.0 |
||||
|
2018-05 |
CT3#97 |
Inclusion of C3-183028, C3-183029, C3-183030, C3-183474, C3-183051, C3-183475, C3-183476, C3-183054, C3-183055, C3-183056, C3-183478, C3-183479, C3-183336, C3-183337, C3-183832, C3-183340, C3-183609, C3-183611, C3-183612, C3-183833, C3-183614, C3-183834, C3-183883, C3-183616, C3-183343, C3-183088, C3-183617, C3-183618, C3-183741, C3-183625, C3-183626, C3-183122, C3-183123, C3-183124, C3-183635, C3-183792, C3-183634, C3-183619, C3-183786, C3-183082, C3-183083, C3-183084, C3-183622, C3-183835, C3-183624, C3-183627, C3-183075, C3-183737, C3-183836, C3-183419, C3-183630, C3-183066, C3-183347, C3-183861, C3-183788, C3-183862, C3-183789, C3-183637, C3-183837, C3-183863, C3-183639, C3-183864, C3-183067, C3-183068, C3-183069, C3-183641, C3-183059, C3-183071, C3-183606, C3-183779 and editorial changes from Rapporteur. |
1.2.0 |
||||
|
2018-06 |
CT#80 |
CP-181038 |
TS sent to plenary for approval |
2.0.0 |
|||
|
2018-06 |
CT#80 |
CP-181038 |
TS approved by plenary |
15.0.0 |
|||
|
2018-09 |
CT#81 |
CP-182022 |
0001 |
2 |
F |
MonitoringEvent API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0002 |
2 |
F |
ChargeableParty API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0003 |
2 |
F |
GMDviaMBMSbyMB2 API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0004 |
2 |
F |
GMDviaMBMSbyxMB API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0005 |
2 |
F |
ReportingNetworkStatus API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0006 |
2 |
F |
ECRControl API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0007 |
2 |
F |
NpConfiguration API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0008 |
2 |
F |
AsSessionWithQoS API OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0009 |
|
F |
Update the Error Handling |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0010 |
2 |
F |
CpProvisioning OpenAPI schema |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0011 |
2 |
F |
Remove the monitoring configuration for a group |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0012 |
1 |
F |
Resource description in Procedure subclauses |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0013 |
1 |
F |
Monitoring event API Update |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0014 |
2 |
F |
BDT API Update |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0015 |
|
F |
Network Parameter Configuration API Update |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0016 |
1 |
F |
Complete the common openAPI definition |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0017 |
2 |
F |
Complete the openAPI definition for BDT API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0018 |
|
F |
NIDD API cleanup |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0019 |
2 |
F |
Complete the openAPI definition for NIDD API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0020 |
1 |
F |
One-time monitoring |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182178 |
0021 |
3 |
F |
PATCH data type in ChargeableParty API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0022 |
1 |
F |
Procedure correction of PFD management error handling |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0023 |
2 |
F |
Complete the openAPI definition for PFD API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0024 |
1 |
F |
Essential Corrections on TS 29.122 |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0025 |
2 |
F |
Allignment of error codes with TS 29.500 |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0026 |
2 |
F |
OpenAPI updates for Device Triggering |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0027 |
1 |
F |
OpenAPI updates for MSISDN-less Mobile Originated SMS |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0028 |
2 |
F |
Monitoring event report |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0030 |
|
F |
Add cause in ProblemDetails data type |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0031 |
1 |
F |
Remove format keyword for 3GPP defined data type |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0032 |
|
F |
Correct supported features |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0033 |
|
F |
Correct ConfigResult data type for Monitoring API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0034 |
|
F |
Correct reachability type in monitoring API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0035 |
|
F |
Add HSS interaction for NIDD configuration |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0036 |
|
F |
Correct NiddConfigurationPatch data type |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182179 |
0037 |
2 |
F |
Removable attribute definition for NIDD configuration |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182180 |
0038 |
2 |
F |
Correct MT NIDD procedure |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0039 |
1 |
F |
Correct group NIDD procedure |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0040 |
|
F |
Device Trigger cleanup |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0041 |
|
F |
Removable attribute definition for PFD management |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182181 |
0042 |
2 |
F |
Correct PFD error code |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0043 |
|
F |
Removable attribute definition for NP configuration |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0044 |
|
F |
Correct ConfigResult data type for NP Provisioning API |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0045 |
|
F |
Removable attribute definition for AS required QoS |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0047 |
|
F |
Version numbering update |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182022 |
0048 |
1 |
F |
Removal of external docs field |
15.1.0 |
|
2018-09 |
CT#81 |
CP-182203 |
0049 |
F |
paths property in A.2 |
15.1.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0050 |
F |
File naming for Common data type |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0051 |
F |
UE corrections |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0052 |
2 |
F |
ExternalDocs field |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0053 |
7 |
F |
Enhancement of LocationArea |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0054 |
F |
Data type for Individual TMGI Allocation PATCH operation |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183127 |
0055 |
2 |
F |
Correction on Accuracy level |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0056 |
2 |
F |
Correction on type ConfigResult |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183128 |
0057 |
5 |
F |
Monitoring Event Report |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0059 |
F |
Correct server definition |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0060 |
F |
Correct data type for roamingStatus |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0061 |
F |
Correct external identifier and msisdn |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0062 |
F |
Correct common data definition |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0063 |
3 |
F |
Additional data type clarification in openAPI |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0064 |
F |
Correct Chargeable Party |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0065 |
2 |
F |
Correct GMD via MB2 |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0066 |
3 |
F |
Correct GMD via xMB |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0067 |
5 |
F |
Correct MT NIDD |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0068 |
F |
Correct monitoring API |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0069 |
F |
Correct CP provisioning |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0070 |
F |
Correct Device trigger |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0071 |
F |
Correct PFD management |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0072 |
F |
Correct report network status |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0073 |
F |
Correct NP provisioning |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0074 |
F |
Correct MO SMS |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0075 |
F |
Correct AS session with QoS |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0076 |
3 |
F |
Error handling |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0077 |
1 |
F |
Content type |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0078 |
2 |
F |
Supporting Ethernet UE in Chargeable Party and AF session with QoS |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0079 |
2 |
F |
Security adaptation for T8 APIs with CAPIF |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0080 |
1 |
F |
Remove empty array or map for applicable attributes |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0081 |
3 |
F |
Presence conditions in yaml file |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0082 |
F |
Remove format keyword for TimeOfDay data type |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0083 |
2 |
F |
Additional external group ID for number of UE in an area |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0084 |
F |
Correct eDRX cycle length |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0086 |
F |
Correct PLMN ID in monitoring API |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0088 |
F |
Missing ECRData in ECR configuration response |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0089 |
F |
Correct GMD via MBMS |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0090 |
F |
Missing UE ID in GMD acknowledgement |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0091 |
1 |
F |
RDS indication in MT NIDD acknowledgement |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0092 |
1 |
F |
Correct pfdDatas cardinality in PFD management |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0093 |
1 |
F |
Correct NP configuration yaml definition |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0094 |
6 |
F |
Different results in CP parameter sets provisioning |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0095 |
F |
Correct server URI in Device Trigger |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0096 |
F |
Implementation of Binary data |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0097 |
F |
Missed GET for resource GMD via MBMS by xMB |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0098 |
1 |
F |
Notification URI Consistency_ChargableParty |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0099 |
1 |
F |
Notification URI for GMDviaMBMSbyMB2 API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0100 |
1 |
F |
Notification URI for GMDviaMBMSbyxMB API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0101 |
F |
Resource usage and Notification URI for NIDD API |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0102 |
2 |
F |
Security field |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0103 |
1 |
F |
Status code support for AsSessionWithQoS API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0104 |
1 |
F |
Status code support for ChargeableParty API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0105 |
2 |
F |
Status code support for CpProvisioning API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0106 |
1 |
F |
Status code support for DeviceTriggering API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0107 |
1 |
F |
Status code support for ECRControl API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0108 |
1 |
F |
Status code support for GMDviaMBMSbyMB2 API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0109 |
2 |
F |
Status code support for GMDviaMBMSbyxMB API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0110 |
3 |
F |
Status code support for MonitoringEvent API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0111 |
1 |
F |
Status code support for MsisdnLessMoSms API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0112 |
2 |
F |
Status code support for NIDD API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0113 |
1 |
F |
Status code support for NpConfiguration API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0114 |
1 |
F |
Status code support for PfdManagement API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0115 |
1 |
F |
Status code support for ReportingNetworkStatus API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0116 |
1 |
F |
Status code support for ResourceManagementOfBdt API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0117 |
1 |
F |
Location header |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0118 |
2 |
F |
API Version Update |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0119 |
1 |
F |
Link of the created resources for AsSessionWithQoS API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0120 |
1 |
F |
Link of the created resources for ChargeableParty API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0121 |
1 |
F |
Link of the created resources for CpProvisioning API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0122 |
1 |
F |
Link of the created resourcesfor DeviceTriggering API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0123 |
1 |
F |
Link of the created resources for GMDviaMBMSbyMB2 API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0124 |
1 |
F |
Link of the created resources for GMDviaMBMSbyxMB API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0125 |
1 |
F |
Link of the created resources for MonitoringEvent API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0126 |
1 |
F |
Link of the created resources for NIDD API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0127 |
1 |
F |
Link of the created resources for NpConfiguration API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0128 |
1 |
F |
Link of the created resources for PfdManagement API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0129 |
1 |
F |
Link of the created resources for ReportingNetworkStatus API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0130 |
1 |
F |
Link of the created resources for ResourceManagementOfBdt API |
15.2.0 |
|
2018-12 |
CT#82 |
CP-183116 |
0132 |
F |
API version for MonitoringEvent API |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183116 |
0133 |
F |
Successful code corrections for group message delivery APIs |
15.2.0 |
|
|
2018-12 |
CT#82 |
CP-183117 |
0087 |
2 |
B |
PDN connectivity status monitoring |
16.0.0 |
|
2019-03 |
CT#83 |
CP-190109 |
0138 |
4 |
F |
PFD extension |
16.1.0 |
|
2019-03 |
CT#83 |
CP-190125 |
0140 |
F |
Remove SHORT_DELAY_STORED |
16.1.0 |
|
|
2019-03 |
CT#83 |
CP-190125 |
0142 |
3 |
F |
Renew TMGI expiration |
16.1.0 |
|
2019-03 |
CT#83 |
CP-190125 |
0144 |
2 |
F |
Corrections related to mandatory features and and MonitoringEvent API errors |
16.1.0 |
|
2019-03 |
CT#83 |
CP-190125 |
0146 |
1 |
F |
Correction on MacAddr48 data type reference in the OpenAPI file |
16.1.0 |
|
2019-03 |
CT#83 |
CP-190159 |
0148 |
2 |
F |
API Version Update |
16.1.0 |
|
2019-03 |
CT#83 |
CP-190129 |
0149 |
2 |
F |
Moving xMB stage 2 to TS 26.348 |
16.1.0 |
|
2019-06 |
CT#84 |
CP-191073 |
0151 |
1 |
A |
Correction on 5G location area |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191092 |
0153 |
1 |
A |
Failure case when feature required by the monitoring type unsupported |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191073 |
0155 |
1 |
A |
5G feature for Number of UEs in an area notification |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191210 |
0156 |
4 |
B |
Notification of Downlink data delivery status and availability after DDN failure notification for multiple Afs |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191090 |
0157 |
1 |
B |
Add External Group Id |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191092 |
0160 |
1 |
A |
Add openAPI definition for 200 OK in MonitoringEvent API |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191100 |
0163 |
B |
Feature applicability for PDN connectivity status |
16.2.0 |
|
|
2019-06 |
CT#84 |
CP-191099 |
0165 |
1 |
A |
Support of MTC Provider Id |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191070 |
0166 |
1 |
B |
Network parameter provisioning support |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191092 |
0168 |
A |
Add openAPI definition for PUT in BDT API |
16.2.0 |
|
|
2019-06 |
CT#84 |
CP-191103 |
0171 |
1 |
B |
PFD management notification |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191100 |
0173 |
1 |
F |
Clarify number of UE in an area |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191070 |
0174 |
F |
Update reference to TS 24.250 |
16.2.0 |
|
|
2019-06 |
CT#84 |
CP-191105 |
0175 |
2 |
B |
BDT Warning Notification Support |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191092 |
0177 |
1 |
A |
Precedence and storage of T8 OpenAPI files |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191092 |
0179 |
2 |
A |
Copyright Note in YAML file |
16.2.0 |
|
2019-06 |
CT#84 |
CP-191101 |
0181 |
2 |
F |
API version Update |
16.2.0 |
|
2019-09 |
CT#85 |
CP-192139 |
0183 |
1 |
A |
Correct presence condition in PFD definition |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0184 |
2 |
B |
Enhancement of Monitoring and Network Parameter Configuration |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192156 |
0185 |
1 |
B |
Support a set of MAC addresses in traffic filter |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192165 |
0187 |
2 |
B |
Support parameter provisioning in RACS |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192200 |
0188 |
3 |
B |
Accurate UE moving trajectory definition |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192157 |
0189 |
1 |
B |
Removal of a BDT warning notification request |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0190 |
1 |
F |
Correction on MSISDN |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0191 |
1 |
F |
Battery Indication and Traffic Profile for CpProvisioning API |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0192 |
2 |
F |
Northbound API registration and discovery |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0193 |
1 |
F |
Corrections on monitoring type |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192158 |
0194 |
1 |
F |
Notification of resource allocation failure |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192197 |
0196 |
3 |
B |
PFD management partial failure |
16.3.0 |
|
2019-09 |
CT#85 |
CP-192163 |
0199 |
F |
Correction on MSISDN |
16.3.0 |
|
|
2019-09 |
CT#85 |
CP-192173 |
0200 |
F |
OpenAPI version update for TS 29.122 Rel-16 |
16.3.0 |
|
|
2019-12 |
CT#86 |
CP-193216 |
0158 |
9 |
B |
Update to NIDD APIs for RDS Dynamic Port Management |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193179 |
0202 |
1 |
B |
Nnef_APISupportCapability Service |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193179 |
0203 |
1 |
B |
Scheduled communication type |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193198 |
0204 |
F |
Correct UMT location area |
16.4.0 |
|
|
2019-12 |
CT#86 |
CP-193199 |
0205 |
2 |
B |
RDS port mismatch in NIDD |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193199 |
0206 |
F |
Reference update: RFC 8259 |
16.4.0 |
|
|
2019-12 |
CT#86 |
CP-193206 |
0208 |
4 |
A |
Correct SCEF aggregation |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193209 |
0209 |
3 |
B |
Complete RACS details |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193199 |
0210 |
1 |
B |
BatteryIndication data type |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193220 |
0212 |
3 |
B |
PFD partial failure notification |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193206 |
0215 |
1 |
A |
Correct application port |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193179 |
0216 |
1 |
B |
Support API capability change based on API filter |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193198 |
0217 |
1 |
F |
openAPI correction for ExNotification |
16.4.0 |
|
2019-12 |
CT#86 |
CP-193212 |
0218 |
1 |
F |
Update of API version and TS version in OpenAPI file |
16.4.0 |
|
2020-03 |
CT#87e |
CP-200198 |
0220 |
1 |
B |
Update of the DDD status event and availability of DDN failure event |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200202 |
0222 |
1 |
B |
QoS Monitoring Report |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200198 |
0223 |
F |
Clarify empty array for API capability change |
16.5.0 |
|
|
2020-03 |
CT#87e |
CP-200144 |
0224 |
1 |
B |
Support PDU session status |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200208 |
0225 |
1 |
B |
Support BDT policy candidates in notification |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200212 |
0226 |
1 |
B |
Add alternative QoS requirements |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200219 |
0227 |
1 |
B |
Adding data type for the BDT Reference ID with "nullable: true" property |
16.5.0 |
|
2020-03 |
CT#87e |
CP-200209 |
0231 |
F |
Enumeration PdnEstablishmentOptionsRm and "nullable" keyword |
16.5.0 |
|
|
2020-03 |
CT#87e |
CP-200216 |
0232 |
F |
Update of OpenAPI version and TS version in externalDocs field |
16.5.0 |
|
|
2020-06 |
CT#88e |
CP-201194 |
0228 |
7 |
B |
Supporting the Location Services via NEF |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201243 |
0233 |
1 |
F |
Addition of IMEI/TAC values for RACS operations |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201243 |
0234 |
3 |
F |
Corrections to UE radio capability configuration data |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201243 |
0235 |
1 |
F |
Missing bullet in introduction |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201241 |
0237 |
1 |
A |
Event of Usage Threshold |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201235 |
0239 |
3 |
F |
Periodic reporting by Nnef |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201210 |
0241 |
1 |
F |
Correction to the DDD status event |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201241 |
0243 |
A |
Correct GMDviaMBMSbyxMB openAPI error |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201292 |
0245 |
2 |
A |
Correct NIDD API |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201213 |
0246 |
F |
Correct data type used in QoS monitoring |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201235 |
0247 |
F |
Storage of YAML files |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201276 |
0248 |
2 |
F |
Traffic descriptor for xBDT |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201256 |
0249 |
1 |
F |
URI of the SCEF northbound APIs |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201213 |
0250 |
1 |
F |
Correction to QoS monitoring |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201243 |
0252 |
F |
Avoid using the same data type for PUT and PATCH |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201250 |
0253 |
1 |
B |
Complete and fix RDS Port Management |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201246 |
0254 |
1 |
F |
Move 5G specific procedure to TS 29.522 |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201210 |
0255 |
1 |
B |
Support of Enhanced Coverage Mode control |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201234 |
0256 |
F |
Removal of open issue on external Group Id for ResourceManagementOfBdt API |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201235 |
0257 |
1 |
F |
Optionality of ProblemDetails |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201241 |
0259 |
1 |
A |
Correction on PfdManagement for PfdManagement API |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201241 |
0261 |
1 |
A |
Corrections on APP_ID_DUPLICATED error for PfdManagement API |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201241 |
0263 |
1 |
A |
Corrections on SET_ID_DUPLICATED error for CpProvisioning API |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201235 |
0264 |
F |
required field in OpenAPI file |
16.6.0 |
|
|
2020-06 |
CT#88e |
CP-201235 |
0265 |
1 |
F |
Supported headers, Resource Data type and Operation Name |
16.6.0 |
|
2020-06 |
CT#88e |
CP-201255 |
0267 |
F |
Update of OpenAPI version and TS version in externalDocs field |
16.6.0 |
|
|
2020-09 |
CT#89e |
CP-202070 |
0271 |
A |
Failure response for AsSessionWithQoS API |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202070 |
0273 |
A |
Same IPv4 address for different PDU sessions |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202077 |
0274 |
1 |
F |
Remove 5G procedures to TS 29.522 |
16.7.0 |
|
2020-09 |
CT#89e |
CP-202072 |
0275 |
1 |
F |
Unique RACS Id |
16.7.0 |
|
2020-09 |
CT#89e |
CP-202072 |
0276 |
F |
Failure response |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202048 |
0277 |
1 |
F |
Initial report for multiple PDN connections |
16.7.0 |
|
2020-09 |
CT#89e |
CP-202070 |
0281 |
A |
Use correct code for deleting individual ChargeableParty transaction |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202021 |
0283 |
2 |
A |
Removal of an established AS session |
16.7.0 |
|
2020-09 |
CT#89e |
CP-202072 |
0284 |
F |
Usage of PUT and PATCH |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202070 |
0286 |
A |
Corrections to mtcProviderId |
16.7.0 |
|
|
2020-09 |
CT#89e |
CP-202086 |
0287 |
1 |
F |
Updates NpConfiguration with mtcProviderId |
16.7.0 |
|
2020-09 |
CT#89e |
CP-202084 |
0289 |
F |
Update of OpenAPI version and TS version in externalDocs field |
16.7.0 |
|
|
2020-12 |
CT#90e |
CP-203139 |
0291 |
1 |
F |
TS 29.122 Essential Corrections and alignments |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203079 |
0294 |
2 |
F |
Essential Corrections to eLCS related monitoring events |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203132 |
0295 |
1 |
F |
Correction to Alternative QoS Parameter |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203139 |
0296 |
F |
Storage of YAML files in 3GPP Forge |
16.8.0 |
|
|
2020-12 |
CT#90e |
CP-203108 |
0299 |
1 |
F |
Corrections to MonitoringEventReport |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203111 |
0300 |
1 |
F |
Incorrect definition of QosMonitoringInformation |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203139 |
0301 |
1 |
F |
Callback URI correction |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203133 |
0305 |
A |
Successful response code for Event Notification |
16.8.0 |
|
|
2020-12 |
CT#90e |
CP-203133 |
0307 |
1 |
A |
Failure response for SCEF northbound APIs |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203109 |
0308 |
F |
Correction on Location Service via NEF |
16.8.0 |
|
|
2020-12 |
CT#90e |
CP-203131 |
0310 |
1 |
F |
Protocol or application errors |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203133 |
0312 |
1 |
A |
Solve IP address overlapping for Chargeable Party |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203100 |
0314 |
2 |
A |
Correction to NIDD configuration cancellation procedure |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203133 |
0316 |
1 |
A |
Correction to device triggering recall procedure |
16.8.0 |
|
2020-12 |
CT#90e |
CP-203152 |
0322 |
F |
Update of OpenAPI version and TS version in externalDocs field |
16.8.0 |
|
|
2020-12 |
CT#90e |
CP-203140 |
0290 |
F |
DateTime Enhancement |
17.0.0 |
|
|
2020-12 |
CT#90e |
CP-203137 |
0293 |
1 |
B |
Adding Support for Indicating Serialization Format in RDS |
17.0.0 |
|
2020-12 |
CT#90e |
CP-203153 |
0323 |
F |
Update of OpenAPI version and TS version in externalDocs field |
17.0.0 |
|
|
2020-12 |
CT#90e |
CP-203149 |
0324 |
F |
Faliure authorization result of BDT reference Id for ChargeableParty API request |
17.0.0 |
|
|
2021-03 |
CT#91e |
CP-210224 |
0325 |
F |
Clarification of eLCS feature applicability only to 5G |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210210 |
0327 |
A |
Correct applied QoS reference for QoS not guaranteed |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210210 |
0331 |
2 |
A |
Disable UE notifications at changes related to Alternative QoS Profiles |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0333 |
2 |
A |
Last known location report |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0335 |
A |
Default value of accuary |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210207 |
0337 |
3 |
A |
Support Redirection for MonitoringEvent API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210219 |
0338 |
1 |
F |
OpenAPI "description" fields in data type definitions |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210218 |
0339 |
F |
Update of "description" field for map data types |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210218 |
0340 |
F |
OpenAPI reference |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210189 |
0344 |
A |
Correction to AF ID in ECRControl API |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210189 |
0346 |
A |
Correction to mtcProviderId in ECRControl API |
17.1.0 |
|
|
2021-03 |
CT#91e |
CP-210221 |
0352 |
1 |
F |
Removal of invalid tabulations is some attributes description in the MonitoringEvent API OpenAPI file |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210234 |
0353 |
1 |
D |
Text style correction |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210231 |
0355 |
1 |
B |
Supported features within ProblemDetails |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210221 |
0356 |
1 |
B |
Supported features within ProblemDetails |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210234 |
0359 |
1 |
F |
Notification URI Correction for AsSessionWithQoS API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0361 |
1 |
A |
Support Redirection for NIDD API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0363 |
1 |
A |
Support Redirection for ChargeableParty API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0365 |
1 |
A |
Support Redirection for CpProvisioning API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210207 |
0367 |
1 |
A |
Support Redirection for DeviceTriggering API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0369 |
1 |
A |
Support Redirection for AsSessionWithQoS API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0371 |
1 |
A |
Support Redirection for ECRControl API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0373 |
1 |
A |
Support Redirection for MsisdnLessMoSms API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0375 |
1 |
A |
Support Redirection for NpConfiguration API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0377 |
1 |
A |
Support Redirection for PfdManagement API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0379 |
1 |
A |
Support Redirection for RacsParameterProvisioning API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210208 |
0381 |
1 |
A |
Support Redirection for ResourceManagementOfBdt API |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210209 |
0383 |
1 |
A |
Usage threshold update |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210248 |
0385 |
2 |
A |
Updates to Location Failure Cause |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210212 |
0387 |
1 |
A |
Resource allocation status |
17.1.0 |
|
2021-03 |
CT#91e |
CP-210240 |
0389 |
F |
Update of OpenAPI version and TS version in externalDocs field |
17.1.0 |
|
|
2021-06 |
CT#92e |
CP-211271 |
0341 |
3 |
B |
Updates to AF Application Identifier in ChargeableParty API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211271 |
0342 |
3 |
B |
Updates to AF Application Identifier in AsSessionWithQoS API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211282 |
0347 |
5 |
B |
Update DNN and S-NSSAI in ChargeableParty API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211282 |
0348 |
5 |
B |
Update DNN and S-NSSAI in AsSessionWithQoS API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0390 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the CommonData API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0392 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the ResourceManagementOfBdt API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0393 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the ChargeableParty API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0394 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the NIDD API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0395 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the DeviceTriggering API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0396 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the GMDViaMBMS APIs |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0397 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the ReportingNetworkStatus API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0398 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the CpProvisioning API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0399 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the PfdManagement API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0400 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the ECRControl API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0401 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the NpConfiguration API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0402 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the AsSessionWithQoS API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0403 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the MsisdnLessMoSms API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0404 |
1 |
F |
Adding some missing description fields to data type definitions in OpenAPI specification files of the RacsParameterProvisioning API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211238 |
0405 |
1 |
F |
Removal of invalid unbreakable spaces is some attributes description in the GMDViaMBMS and ReportingNetworkStatus APIs |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211241 |
0406 |
F |
Support redirection for pure 4G SCEF northbound APIs |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211241 |
0407 |
1 |
F |
MonitoringEvent API: TAB and missing "description" fields |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211178 |
0408 |
3 |
B |
Support Time Sensitive Communication |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211232 |
0410 |
1 |
A |
Clarification on Manufacturer Assigned URC |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211199 |
0412 |
1 |
A |
Correction to LDR geographic area |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211227 |
0415 |
A |
Resource corrections for SCEF Northbound APIs |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211228 |
0418 |
1 |
A |
TWAN level accuracy applicability |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211119 |
0422 |
1 |
F |
New Network slice status reporting events for the MonitoringEvent API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211241 |
0426 |
1 |
F |
Respecting 3GPP Forge executing rules |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0427 |
1 |
B |
Support of 204 No content response code for PFDs update(NBI17) |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211218 |
0428 |
1 |
B |
Support of Network Exposure to EAS via Local NEF |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211239 |
0429 |
|
F |
Adding notificationDestination in NpConfigurationPatch data type |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0430 |
1 |
F |
Supporting 204 No Content during configuration procedure on NpConfiguration API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0431 |
1 |
F |
204 No Content during modification procedure on MonitoringEvent API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0432 |
F |
204 No Content during modification procedure on AsSessionWithQoS API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211185 |
0433 |
F |
204 No Content during modification procedure on ChargeableParty API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211240 |
0434 |
1 |
F |
Update of notification destination for ResourceManagementOfBdt API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0435 |
F |
Update of notification destination for ChargeableParty API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211240 |
0436 |
F |
Update of notification destination for AsSessionWithQoS API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211248 |
0437 |
B |
eCAPIF support |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211269 |
0438 |
1 |
B |
Update procedures to support HSS initiated GEM partial cancellation |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211269 |
0439 |
1 |
B |
Updates to support notification of GEM partial cancellation |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0440 |
1 |
F |
Updates 204 No Content in NIDD API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211240 |
0441 |
1 |
F |
Updates 204 No Content in RacsParameterProvisioning API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211241 |
0444 |
1 |
B |
Updates notification destination via PATCH operation in NIDD API |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211228 |
0447 |
1 |
A |
Format of location information |
17.2.0 |
|
2021-06 |
CT#92e |
CP-211227 |
0450 |
A |
Corrections on PATCH operation for ChargeableParty API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211227 |
0453 |
A |
Essential corrections to 204 in PATCH in NIDD API |
17.2.0 |
|
|
2021-06 |
CT#92e |
CP-211265 |
0454 |
A |
Update of OpenAPI version and TS version in externalDocs field |
17.2.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0455 |
1 |
F |
Resource URI corrections for PfdManagement and NpConfiguration APIs |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212224 |
0456 |
1 |
B |
Clarification to type FlowInfo |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212214 |
0457 |
F |
Correction to Resource URI of ResourceManagementOfBdt API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212210 |
0458 |
1 |
B |
UAV Presence Monitoring |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212215 |
0459 |
1 |
B |
Resource allocation status for Chargeable Party |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212224 |
0460 |
F |
Fix AppId feature description |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0463 |
1 |
F |
Supporting 204 No Content during configuration procedure on DeviceTriggering API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212215 |
0464 |
1 |
F |
Supporting 204 No Content during configuration procedure on ReportingNetworkStatus API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212186 |
0466 |
1 |
A |
Accuracy attribute correction |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212213 |
0469 |
A |
Correction on Configuration data |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212204 |
0471 |
A |
Correction on User Plane Notification data |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0472 |
F |
Corrections on resource root structure and resource URI on MonitoringEvent API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0473 |
1 |
F |
Rel-17 Resource URI corrections on AsSessionWithQoS API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212214 |
0474 |
F |
Resource URI corrections on ChargeableParty API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0475 |
F |
Resource URI correction on DeviceTriggering API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0476 |
F |
Resource URI correction on ReportingNetworkStatus API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0477 |
1 |
F |
Add list of data types table to the CommonData API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212214 |
0478 |
F |
Correction of some remaining invalid characters in OpenAPI specification files |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0479 |
F |
Miscellaneous corrections |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0480 |
1 |
F |
Resource URI correction in the GMD via MBMS APIs |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212214 |
0481 |
F |
Correction to MAC address in MonitoringEvent API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0482 |
F |
Updates 204 No Content in GMDviaMBMSbyMB2 API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0483 |
F |
Updates 204 No Content in GMDviaMBMSbyxMB API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0484 |
F |
Updates notification destination via PATCH operation in GMDviaMBMSbyMB2 API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212214 |
0485 |
F |
Updates notification destination via PATCH operation in GMDviaMBMSbyxMB API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212215 |
0486 |
1 |
F |
Correct resource URI in NIDD API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212215 |
0487 |
1 |
F |
Correct resource URI in RacsParameterProvisioning API |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212224 |
0488 |
B |
Update DNN and S-NSSAI in MonitoringEvent API |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212226 |
0489 |
1 |
B |
Update procedures to support SCSAS initiated GEM partial cancellation |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212237 |
0490 |
1 |
B |
Updates to support GEM partial cancellation |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212187 |
0491 |
1 |
B |
Support for Multiple QoS Class in deferred location request |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212215 |
0492 |
2 |
B |
Supporting Load and Overload Control for northbound APIs |
17.3.0 |
|
2021-09 |
CT#93e |
CP-212211 |
0494 |
B |
Update of TscQosRequirement and TscQosRequirementRm |
17.3.0 |
|
|
2021-09 |
CT#93e |
CP-212223 |
0495 |
F |
Update of OpenAPI version and TS version in externalDocs field |
17.3.0 |
|
|
2021-12 |
CT#94e |
CP-213233 |
0496 |
2 |
B |
Enhance MonitoringEvent API to support UAV list |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213247 |
0497 |
1 |
F |
Correcting "JSON Patch" encoding of changes |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0498 |
1 |
B |
Updates GET Query in AsSessionWithQoS API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0499 |
1 |
B |
Updates GET Query in ChargeableParty API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213234 |
0500 |
1 |
B |
Adding alternative QoS related parameters to AsSessionWithQoS |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213260 |
0502 |
2 |
B |
Update the data type definition for MonitoringEvent API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0503 |
1 |
F |
Removal of errors from MonitoringEvent OpenAPI file |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0504 |
F |
ResourceManagementOfBdt: adding summary, operationId and tags fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0505 |
F |
ChargeableParty: adding operationId fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0506 |
1 |
F |
NIDD: adding summary, operationId and tags fields |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0507 |
1 |
F |
DeviceTriggering: adding operationId fields |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0508 |
F |
GMDviaMBMSbyMB2: adding operationId fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0509 |
F |
GMDviaMBMSbyxMB: adding operationId fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0510 |
F |
ReportingNetworkStatus: adding operationId and tags fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0511 |
1 |
F |
CpProvisioning: adding summary, operationId and tags fields |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0512 |
F |
PfdManagement: adding summary, operationId and tags fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0513 |
F |
NpConfiguration: adding operationId fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0514 |
F |
AsSessionWithQoS: adding operationId fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213235 |
0515 |
1 |
F |
MsisdnLessMoSms: adding summary, operationId and tags fields |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0516 |
F |
RacsParameterProvisioning: adding summary, operationId and tags fields |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213247 |
0517 |
1 |
B |
Update error handling procedures for GEM partial cancellation |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213212 |
0518 |
1 |
F |
Resolve editor note for Multiple QoS Class |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213230 |
0519 |
F |
Resolving the subscription to NSAC events related ENs |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213230 |
0520 |
1 |
F |
Resolving the reporting type related ENs for NSAC event subscriptions |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213268 |
0521 |
2 |
B |
Supporting explicit subscription to user plane events for the AsSessionWithQoS API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0522 |
1 |
B |
Updating the support of explicit subscription to bearer events for the ChargeableParty API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213235 |
0523 |
1 |
F |
Supporting 204 No Content during configuration procedure on ResourceManagementOfBdt API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0524 |
F |
Correction to Resource URI of CpProvisioning API |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213236 |
0525 |
1 |
B |
Support of 204 No Content during modification procedure on CpProvisioning API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213220 |
0526 |
B |
Alignment with SA3 supported TLS profiles |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213223 |
0527 |
B |
Clarification of direct notification |
17.4.0 |
|
|
2021-12 |
CT#94e |
CP-213230 |
0528 |
1 |
B |
Supporting network slice status retrieval |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0532 |
1 |
B |
Updates GET Query in MonitoringEvent API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0533 |
1 |
F |
Adding a list of APIs table |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213267 |
0534 |
2 |
B |
Supporting multiple events per subscription on MonitoringEvent API |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0536 |
1 |
F |
Adding the MonitoringEvent API specific data types tables |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0537 |
1 |
F |
Adding the DeviceTriggering API specific data types tables |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0538 |
1 |
F |
Adding the ReportingNetworkStatus API specific data types tables |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0539 |
1 |
F |
Adding the ECRControl API specific data types tables |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213236 |
0540 |
1 |
F |
Adding the NpConfiguration API specific data types tables |
17.4.0 |
|
2021-12 |
CT#94e |
CP-213246 |
0541 |
1 |
F |
Update of OpenAPI version and TS version in externalDocs field |
17.4.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0542 |
|
F |
Correction of mbmsLocArea attribute for GMDViaMBMS APIs |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0543 |
|
F |
Adding the ChargeableParty API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0544 |
|
F |
Adding the PfdManagement API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0545 |
1 |
F |
Adding the ResourceManagementOfBdt API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0546 |
1 |
F |
Updating the AsSessionWithQoS API data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220204 |
0547 |
2 |
B |
Add the support for PATCH method for the update of a NIDD DL Data transfer resource |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220204 |
0548 |
3 |
B |
Add the support of PATCH for the update of a Device Triggering Transaction resource |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0549 |
1 |
F |
Adding the NIDD API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0550 |
|
F |
Adding the GMDViaMBMS APIs specific data types tables |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0551 |
|
F |
Adding the CpProvisioning API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0552 |
|
F |
Adding the MsisdnLessMoSms API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0553 |
|
F |
Adding the RacsParameterProvisioning API specific data types table |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220181 |
0554 |
1 |
B |
Add the support of the civic address type of accuracy |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220187 |
0555 |
1 |
B |
Defining the reporting format for NSAC |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0556 |
1 |
B |
Description of JSON body with "JSON Patch" encoding of changes |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0557 |
|
F |
Updates to GET query supporting in collection level |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0558 |
|
B |
Updates GET query in PfdManagement API |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220183 |
0559 |
1 |
B |
Adding alternative QoS related parameter sets to AsSessionWithQoS |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220203 |
0560 |
|
F |
Correction of the encoding of complex query parameters |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220199 |
0561 |
1 |
B |
Support GEM partial addition |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220185 |
0562 |
|
F |
Feature support handling for Edge Computing |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220187 |
0564 |
1 |
F |
One-time reporting |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220169 |
0567 |
|
A |
Incorrect resource name and attribute name |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220181 |
0568 |
1 |
B |
Support AF specific UE ID retrieval in MonitoringEvent API |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220181 |
0569 |
1 |
B |
Support AF specific UE ID retrieval in CpProvisioning API |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220181 |
0570 |
1 |
B |
Support AF specific UE ID retrieval in NpConfiguration API |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220204 |
0571 |
1 |
B |
Support PATCH for the update of a PFD Management Transaction resource |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220204 |
0572 |
1 |
B |
Support PATCH for the update of Network Status Reporting Subscription resource |
17.5.0 |
|
2022-03 |
CT#95e |
CP-220194 |
0573 |
|
F |
Update of info and externalDocs fields |
17.5.0 |
|
2022-06 |
CT#96 |
CP-221145 |
0575 |
1 |
B |
Mutual exclusivity of QoS reference and individual QoS parameters |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221139 |
0576 |
1 |
F |
Corrections to the AF provided inputs for NSAC |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221147 |
0577 |
1 |
F |
Aligning the naming conventions for resource URI components and enumerations with 5GC APIs |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221147 |
0578 |
1 |
F |
Resolving the naming convention issues |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221144 |
0580 |
1 |
F |
Support of QoS notification control for requested alternative QoS parameters |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0581 |
|
F |
Adding Link data type with "nullable: true" property |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0583 |
|
B |
Missing application errors in the Monitoring API |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0584 |
|
F |
Correction to TscQosRequirement and TscQosRequirementRm |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0585 |
|
B |
Supporting user consent revocation for EDGEAPP on the Nnef_EventExposure API |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0588 |
|
A |
Correcting the DateTime data type name |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0589 |
|
F |
Removing the MonitoringEventSubscriptionPatch data type |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0590 |
|
F |
Defining the default logical relationship between query parameters |
17.6.0 |
|
2022-06 |
CT#96 |
CP-221159 |
0591 |
|
F |
Update of info and externalDocs fields |
17.6.0 |
|
2022-09 |
CT#97e |
CP-222097 |
0592 |
1 |
F |
Updates error handling for AF specific UE Id retrieval in MonitoringEvent API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222097 |
0593 |
1 |
F |
Updates error handling for AF specific UE Id retrieval in CpProvisioning API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222097 |
0594 |
1 |
F |
Updates error handling for AF specific UE Id retrieval in NpConfiguration API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222118 |
0595 |
1 |
F |
The events subscribed by the NEF |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222113 |
0596 |
– |
F |
Fixing TSC related reused data types in AsSessionWithQoS |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222118 |
0597 |
1 |
F |
Application errors handling for the NpConfiguration API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0598 |
– |
F |
Application errors handling for the RacsParameterProvisioning API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0599 |
1 |
F |
Usage of the "tags" field and URI structure |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0600 |
– |
F |
Application errors handling for the NIDD API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0601 |
1 |
F |
Application errors handling for the ReportingNetworkStatus API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0602 |
– |
F |
Application errors handling for the ECRControl API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0603 |
1 |
F |
"Error handling" clause: alignment with other NBI and 5GS APIs |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222125 |
0605 |
1 |
F |
Correction of User Plane Event Report |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222125 |
0607 |
1 |
F |
Reporting condition for QoS Monitoring Information |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222090 |
0609 |
1 |
A |
Corrections on location reporting |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0612 |
1 |
F |
Boolean types in partial modification |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0613 |
1 |
F |
Updates on PATCH in MonitoringEvent API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222118 |
0614 |
1 |
F |
Missing description field for enumeration data type in MonitoringEvent API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222097 |
0615 |
– |
F |
Correcting the name of the application errors related to user consent revocation support |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222117 |
0616 |
– |
F |
Application errors handling for the MontoringEvent API |
17.7.0 |
|
2022-09 |
CT#97e |
CP-222121 |
0620 |
– |
F |
Update of info and externalDocs fields |
17.7.0 |
|
2022-12 |
CT#98e |
CP-223184 |
0623 |
1 |
F |
Corrections on PLMN_CHG event |
17.8.0 |
|
2022-12 |
CT#98e |
CP-223184 |
0624 |
1 |
F |
Corrections on ACCESS_TYPE_CHANGE event |
17.8.0 |
|
2022-12 |
CT#98e |
CP-223188 |
0626 |
– |
F |
Update of info and externalDocs fields |
17.8.0 |
|
2022-12 |
CT#98e |
CP-223185 |
0622 |
1 |
F |
ResultReason enumeration definition in the OpenAPI file |
18.0.0 |
|
2022-12 |
CT#98e |
CP-223189 |
0625 |
– |
F |
Update of info and externalDocs fields |
18.0.0 |