A.2 Nadrf_DataManagement API

29.5753GPP5G SystemAnalytics Data Repository ServicesRelease 18Stage 3TS

openapi: 3.0.0

info:

version: 1.1.0-alpha.1

title: Nadrf_DataManagement

description: |

ADRF Data Management Service.

© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).

All rights reserved.

externalDocs:

description: 3GPP TS 29.575 V18.0.0; 5G System; Analytics Data Repository Services; Stage 3.

url: ‘https://www.3gpp.org/ftp/Specs/archive/29_series/29.575/’

#

servers:

– url: ‘{apiRoot}/nadrf-datamanagement/v1’

variables:

apiRoot:

default: https://example.com

description: apiRoot as defined in clause 4.4 of 3GPP TS 29.501.

#

security:

– oAuth2ClientCredentials:

– nadrf-datamanagement

– {}

#

paths:

/data-store-records:

post:

summary: Creates a new Individual Data Store Record resource.

operationId: CreateADRFDataStoreRecord

tags:

– ADRF Data Store Records (Collection)

requestBody:

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreRecord’

required: true

description: ADRF data store record to be stored.

responses:

‘201’:

description: Successful creation of new Individual ADRF Data Store Record resource.

headers:

Location:

description: >

Contains the URI of the newly created resource, according to the structure

{apiRoot}/nadrf-datamanagement/<apiVersion>/data-store-records/{storeTransId}

required: true

schema:

type: string

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreRecord’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

get:

summary: Retrieves existing Individual ADRF Data Store Records.

operationId: GetAdrfDataStoreRecords

tags:

– ADRF Data Store Records (Collection)

parameters:

– name: store-trans-id

description: A storage transaction identifier of a data store record in ADRF.

in: query

required: false

schema:

type: string

– name: fetch-correlation-ids

description: Fetch correlation identifiers received as part of fetch instruction.

in: query

required: false

style: form

explode: false

schema:

type: array

items:

type: string

minItems: 1

responses:

‘200’:

description: Data store records are returned.

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreRecord’

‘204’:

description: No matching ADRF data were found.

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘406’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/406’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/data-store-records/{storeTransId}:

delete:

summary: Delete an existing Individual ADRF Data Store Record.

operationId: DeleteADRFDataStoreRecord

tags:

– Individual ADRF Data Store Record (Document)

parameters:

– name: storeTransId

in: path

description: String identifying a Data Store Record in ADRF.

required: true

schema:

type: string

responses:

‘204’:

description: >

No Content. The Individual ADRF Data Store Record resource matching the

storeTransId was deleted.

‘307’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/307’

‘308’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/308’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/data-retrieval-subscriptions:

post:

summary: Creates a new Individual ADRF Data Retrieval Subscription resource.

operationId: CreateADRFDataRetrievalSubscription

tags:

– ADRF Data Retrieval Subscriptions (Collection)

requestBody:

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataRetrievalSubscription’

required: true

description: Individual ADRF Data Retrieval Subscription resource to be created.

responses:

‘201’:

description: Created a new Individual ADRF Data Retrieval Subscription resource.

headers:

Location:

description: >

Contains the URI of the newly created resource, according to the structure

{apiRoot}/nadrf-datamanagement/<apiVersion>/data-retrieval-subscriptions/{subscriptionId}

required: true

schema:

type: string

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataRetrievalSubscription’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

callbacks:

adrfDataRetrievalNotification:

‘{$request.body#/notificationURI}’:

post:

requestBody:

required: true

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataRetrievalNotification’

responses:

‘204’:

description: The receipt of the Notification is acknowledged.

‘307’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/307’

‘308’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/308’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/data-retrieval-subscriptions/{subscriptionId}:

delete:

summary: Delete an existing Individual ADRF Data Retrieval Subscription resource.

operationId: DeleteADRFDataRetrievalSubscription

tags:

– Individual ADRF Data Retrieval Subscription (Document)

parameters:

– name: subscriptionId

in: path

description: >

String identifying a data retrieval subscription to the Nadrf_DataManagement

Service.

required: true

schema:

type: string

responses:

‘204’:

description: >

No Content. The Individual ADRF Data Retrieval Subscription resource matching

the subscriptionId was deleted.

‘307’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/307’

‘308’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/308’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/request-storage-sub:

post:

summary: Triggers the creation of a new ADRF Storage Subscription.

operationId: CreateADRFStorageSubscription

tags:

– ADRF Storage Subscriptions

requestBody:

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreSubscription’

required: true

responses:

‘200’:

description: >

Successful response with reference used to identify the subscription at the ADRF.

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreSubscriptionRef’

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/request-storage-sub-removal:

post:

summary: Triggers the removal of ADRF storage subscription.

operationId: DeleteADRFStorageSubscription

tags:

– ADRF Storage Subscriptions

requestBody:

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfDataStoreSubscriptionRef’

required: true

responses:

‘204’:

description: >

No Content. The ADRF Storage Subscription matching the provided reference was deleted.

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

/remove-stored-data-analytics:

post:

summary: Remove ADRF data based on data or analytics specification.

operationId: DeleteADRFData

tags:

– ADRF Stored Data

requestBody:

content:

application/json:

schema:

$ref: ‘#/components/schemas/NadrfStoredDataSpec’

required: true

responses:

‘204’:

description: No Content. The ADRF data matching the provided specification is deleted.

‘400’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/400’

‘401’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/401’

‘403’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/403’

‘404’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/404’

‘411’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/411’

‘413’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/413’

‘415’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/415’

‘429’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/429’

‘500’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/500’

‘502’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/502’

‘503’:

$ref: ‘TS29571_CommonData.yaml#/components/responses/503’

default:

$ref: ‘TS29571_CommonData.yaml#/components/responses/default’

#

components:

securitySchemes:

oAuth2ClientCredentials:

type: oauth2

flows:

clientCredentials:

tokenUrl: ‘{nrfApiRoot}/oauth2/token’

scopes:

nadrf-datamanagement: Access to the nadrf-datamanagement API

#

schemas:

#

NadrfDataStoreRecord:

description: Represents an Individual ADRF Data Store Record.

type: object

oneOf:

– allOf:

– required: [anaSub]

– required: [anaNotifications]

– allOf:

– required: [dataSub]

– required: [dataNotif]

properties:

dataNotif:

$ref: ‘#/components/schemas/DataNotification’

anaNotifications:

type: array

items:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscriptionNotification’

minItems: 1

description: List of analytics subscription notifications.

anaSub:

type: array

items:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscription’

minItems: 1

description: >

Represents the subscription information of the corresponding analytics notification.

dataSub:

type: array

items:

$ref: ‘#/components/schemas/DataSubscription’

minItems: 1

description: >

Represents the subscription information of the corresponding data notification.

#

NadrfDataStoreSubscription:

description: >

Contains information to be used by the ADRF to create a Data or Analytics subscription.

type: object

allOf:

– oneOf:

– required: [anaSub]

– required: [dataSub]

– oneOf:

– required: [targetNfId]

– required: [targetNfSetId]

properties:

anaSub:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscription’

dataSub:

$ref: ‘#/components/schemas/DataSubscription’

targetNfId:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/NfInstanceId’

targetNfSetId:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/NfSetId’

formatInstruct:

$ref: ‘TS29574_Ndccf_DataManagement.yaml#/components/schemas/FormattingInstruction’

procInstruct:

$ref: ‘TS29574_Ndccf_DataManagement.yaml#/components/schemas/ProcessingInstruction’

multiProcInstructs:

type: array

items:

$ref: ‘TS29574_Ndccf_DataManagement.yaml#/components/schemas/ProcessingInstruction’

minItems: 1

description: Processing instructions to be used for sending event notifications.

suppFeat:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/SupportedFeatures’

#

NadrfDataRetrievalSubscription:

description: Represents an Individual ADRF Data Retrieval Subscription.

type: object

required:

– notifCorrId

– notificationURI

– timePeriod

oneOf:

– required: [anaSub]

– required: [dataSub]

properties:

anaSub:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscription’

dataSub:

$ref: ‘#/components/schemas/DataSubscription’

notificationURI:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/Uri’

timePeriod:

$ref: ‘TS29122_CommonData.yaml#/components/schemas/TimeWindow’

notifCorrId:

type: string

description: Notification correlation identifier.

consTrigNotif:

type: boolean

description: >

It indicates that notifications shall be buffered (sending only fetch instructions

to the NF service consumer) until the NF service consumer requests their delivery

using Nadrf_DataManagement Service.

#

NadrfDataRetrievalNotification:

description: >

Represents a notification that corresponds with an Individual ADRF Data

Retrieval Subscription.

type: object

required:

– notifCorrId

– timeStamp

oneOf:

– required: [anaNotifications]

– required: [dataNotif]

– required: [fetchInstruct]

properties:

notifCorrId:

type: string

description: Notification correlation identifier.

anaNotifications:

type: array

items:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscriptionNotification’

minItems: 1

description: List of analytics subscription notifications.

dataNotif:

$ref: ‘#/components/schemas/DataNotification’

fetchInstruct:

$ref: ‘TS29576_Nmfaf_3caDataManagement.yaml#/components/schemas/FetchInstruction’#

terminationReq:

type: boolean

description: >

It indicates the termination of the data management subscription that requested by the

ADRF.

timeStamp:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/DateTime’

#

NadrfDataStoreSubscriptionRef:

description: Contains a reference to a request for a Data or Analytics subscription.

type: object

required:

– transRefId

properties:

transRefId:

type: string

description: Transaction reference identifier.

#

NadrfStoredDataSpec:

description: Contains information about Data or Analytics specification.

type: object

required:

– timePeriod

oneOf:

– required: [dataSpec]

– required: [anaSpec]

properties:

dataSpec:

$ref: ‘#/components/schemas/DataSubscription’

anaSpec:

$ref: ‘TS29520_Nnwdaf_EventsSubscription.yaml#/components/schemas/NnwdafEventsSubscription’

timePeriod:

$ref: ‘TS29122_CommonData.yaml#/components/schemas/TimeWindow’

#

DataSubscription:

description: Contains a data specification.

type: object

oneOf:

– required: [amfDataSub]

– required: [smfDataSub]

– required: [udmDataSub]

– required: [nefDataSub]

– required: [afDataSub]

– required: [nrfDataSub]

– required: [nsacfDataSub]

properties:

amfDataSub:

$ref: ‘TS29518_Namf_EventExposure.yaml#/components/schemas/AmfEventSubscription’

smfDataSub:

$ref: ‘TS29508_Nsmf_EventExposure.yaml#/components/schemas/NsmfEventExposure’

udmDataSub:

$ref: ‘TS29503_Nudm_EE.yaml#/components/schemas/EeSubscription’

afDataSub:

$ref: ‘TS29517_Naf_EventExposure.yaml#/components/schemas/AfEventExposureSubsc’

nefDataSub:

$ref: ‘TS29591_Nnef_EventExposure.yaml#/components/schemas/NefEventExposureSubsc’

nrfDataSub:

$ref: ‘TS29510_Nnrf_NFManagement.yaml#/components/schemas/SubscriptionData’

nsacfDataSub:

$ref: ‘TS29536_Nnsacf_SliceEventExposure.yaml#/components/schemas/SACEventSubscription’

#

DataNotification:

description: Represents a Data Subscription Notification.

type: object

oneOf:

– required: [amfEventNotifs]

– required: [smfEventNotifs]

– required: [udmEventNotifs]

– required: [nefEventNotifs]

– required: [afEventNotifs]

– required: [nrfEventNotifs]

– required: [nsacfEventNotifs]

properties:

amfEventNotifs:

type: array

items:

$ref: ‘TS29518_Namf_EventExposure.yaml#/components/schemas/AmfEventNotification’

minItems: 1

description: List of notifications of AMF events.

smfEventNotifs:

type: array

items:

$ref: ‘TS29508_Nsmf_EventExposure.yaml#/components/schemas/NsmfEventExposureNotification’

minItems: 1

description: List of notifications of SMF events.

udmEventNotifs:

type: array

items:

$ref: ‘TS29503_Nudm_EE.yaml#/components/schemas/MonitoringReport’

minItems: 1

description: List of notifications of UDM events.

nefEventNotifs:

type: array

items:

$ref: ‘TS29591_Nnef_EventExposure.yaml#/components/schemas/NefEventExposureNotif’

minItems: 1

description: List of notifications of NEF events.

afEventNotifs:

type: array

items:

$ref: ‘TS29517_Naf_EventExposure.yaml#/components/schemas/AfEventExposureNotif’

minItems: 1

description: List of notifications of AF events.

nrfEventNotifs:

type: array

items:

$ref: ‘TS29510_Nnrf_NFManagement.yaml#/components/schemas/NotificationData’

minItems: 1

description: List of notifications of NRF events.

nsacfEventNotifs:

type: array

items:

$ref: ‘TS29536_Nnsacf_SliceEventExposure.yaml#/components/schemas/SACEventReport’

minItems: 1

description: List of notifications of NSACF events.

timeStamp:

$ref: ‘TS29571_CommonData.yaml#/components/schemas/DateTime’

#

Annex B (informative):
Change history

Change history

Date

Meeting

TDoc

CR

Rev

Cat

Subject/Comment

New version

2021-06

CT3#116e

TS skeleton of Analytics Data Repository Services specification

0.0.0

2021-06

CT3#116e

C3-213501

Inclusion of documents agreed in CT3#116e C3-213537.

0.1.0

2021-08

CT3#117e

C3-214579

Inclusion of documents agreed in CT3#117e C3-214478.

0.2.0

2021-11

CT3#119e

C3-216521

Inclusion of documents agreed in CT3#119e C3-216443,
C3-216455, C3-216456, C3-216457, C3-216458, C3-216459,
C3-216460, C3-216462, C3-216469, C3-216591, C3-216592,
C3-216593.

0.3.0

2022-01

CT3#119bis-e

C3-220454

Inclusion of documents agreed in CT3#119bis-e C3-220500,
C3-220512, C3-220513, C3-220440, C3-220441, C3-220369.

0.4.0

2022-02

CT3#120

C3-221516

Inclusion of documents agreed in CT3#120-e C3-221091,
C3-221288, C3-221620, C3-221621.

0.5.0

2022-03

CT#95e

CP-220160

Presentation to TSG CT for approval

1.0.0

2022-03

CT#95e

CP-220160

Approved by TSG CT

17.0.0

2022-06

CT#96

CP-221132

0001

1

F

Adding 3XX response handling support for ADRF services

17.1.0

2022-06

CT#96

CP-221136

0002

3

B

Cleanup of Nadrf_DataManagement data model

17.1.0

2022-06

CT#96

CP-221132

0003

1

F

Corrections in the Nadrf_DataManagement data model

17.1.0

2022-06

CT#96

CP-221129

0004

F

Correct the Cardinality of some attributes

17.1.0

2022-06

CT#96

CP-221134

0005

3

B

Support removal of stored analytics and data from ADRF according to Analytics and Data Specification

17.1.0

2022-06

CT#96

CP-221132

0006

1

B

Support carrying Fetch Instructions in Nadrf_DataManagement_RetrievalNotify service operation

17.1.0

2022-06

CT#96

CP-221133

0008

2

F

Formatting of description fields

17.1.0

2022-06

CT#96

CP-221130

0009

F

Responses on DELETE method

17.1.0

2022-06

CT#96

CP-221133

0011

2

F

Clarification on duplicated data or analytics storage

17.1.0

2022-06

CT#96

CP-221131

0012

1

F

Correction on Nadrf_DataManagement_StorageRequest service operation

17.1.0

2022-06

CT#96

CP-221133

0014

F

Removal of repetitive description in HTTP error response

17.1.0

2022-06

CT#96

CP-221135

0016

1

F

Update inputs of Nadrf_DataManagement_RetrievalNotify service

17.1.0

2022-06

CT#96

CP-221134

0017

F

corrections to Abbreviations and Introduction

17.1.0

2022-06

CT#96

CP-221134

0018

F

correction to time period

17.1.0

2022-06

CT#96

CP-221155

0019

1

F

Update the apiVersion placeholder

17.1.0

2022-06

CT#96

CP-221152

0020

F

Update of info and externalDocs fields

17.1.0

2022-09

CT#97e

CP-222104

0021

1

F

Update inputs of Nadrf_DataManagement_RetrievalNotify service

17.2.0

2022-09

CT#97e

CP-222103

0022

1

F

Corrections in descriptions of the Nadrf_DataManagement_RetrievalRequest operation

17.2.0

2022-09

CT#97e

CP-222103

0023

1

F

ADRF data retrieval notification data model updates

17.2.0

2022-09

CT#97e

CP-222103

0024

1

F

Adding NRF and NSACF as data sources

17.2.0

2022-09

CT#97e

CP-222121

0027

F

Update of info and externalDocs fields

17.2.0

2022-12

CT#98e

CP-223173

0028

1

F

ADRF Retrieval Request inputs

17.3.0

2022-12

CT#98e

CP-223172

0029

F

ADRF Storage Subscription Request handling inconsistencies

17.3.0

2022-12

CT#98e

CP-223173

0035

1

F

The time stamp of data notification

17.3.0

2022-12

CT#98e

CP-223173

0036

1

F

Miscellaneous corrections

17.3.0

2022-12

CT#98e

CP-223192

0038

1

F

Update the apiVersion in the specification

17.3.0

2022-12

CT#98e

CP-223188

0043

F

Update of info and externalDocs fields

17.3.0

2022-12

CT#98e

CP-223191

0031

F

Adding the mandatory error code 502 Bad Gateway

18.0.0

2022-12

CT#98e

CP-223176

0032

1

F

Removal of non-sense statement for notificationURI

18.0.0

2022-12

CT#98e

CP-223176

0033

1

F

adding Consumer triggered Notification indication for Nadrf_DataManagement_RetrievalSubscribe

18.0.0

2022-12

CT#98e

CP-223176

0034

1

F

Correction of data type of procInstruct

18.0.0

2022-12

CT#98e

CP-223190

0044

F

Update of info and externalDocs fields

18.0.0