github.com/free5gc/openapi@v1.0.8/Namf_EventExposure/api/openapi.yaml (about)

     1  openapi: 3.0.0
     2  info:
     3    description: AMF Event Exposure Service
     4    title: Namf_EventExposure
     5    version: 1.0.0
     6  externalDocs:
     7    description: 3GPP TS 29.518 V15.2.0; 5G System; Access and Mobility Management Services
     8    url: http://www.3gpp.org/ftp/Specs/archive/29_series/29.518/
     9  servers:
    10  - url: '{apiRoot}/namf-evts/v1'
    11    variables:
    12      apiRoot:
    13        default: https://example.com
    14        description: apiRoot as defined in subclause subclause 4.4 of 3GPP TS 29.501
    15  security:
    16  - {}
    17  - oAuth2Clientcredentials:
    18    - namf-evts
    19  paths:
    20    /subscriptions:
    21      post:
    22        callbacks:
    23          onEventReport:
    24            '{$request.body#/subscription/eventNotifyUri}':
    25              post:
    26                operationId: onEventReport_Post
    27                requestBody:
    28                  content:
    29                    application/json:
    30                      schema:
    31                        $ref: '#/components/schemas/AmfEventNotification'
    32                  required: true
    33                responses:
    34                  204:
    35                    description: Successful acknowledgement
    36                  400:
    37                    content:
    38                      application/problem+json:
    39                        schema:
    40                          $ref: '#/components/schemas/ProblemDetails'
    41                    description: Bad request
    42                  411:
    43                    content:
    44                      application/problem+json:
    45                        schema:
    46                          $ref: '#/components/schemas/ProblemDetails'
    47                    description: Length Required
    48                  413:
    49                    content:
    50                      application/problem+json:
    51                        schema:
    52                          $ref: '#/components/schemas/ProblemDetails'
    53                    description: Payload Too Large
    54                  415:
    55                    content:
    56                      application/problem+json:
    57                        schema:
    58                          $ref: '#/components/schemas/ProblemDetails'
    59                    description: Unsupported Media Type
    60                  429:
    61                    content:
    62                      application/problem+json:
    63                        schema:
    64                          $ref: '#/components/schemas/ProblemDetails'
    65                    description: Too Many Requests
    66                  500:
    67                    content:
    68                      application/problem+json:
    69                        schema:
    70                          $ref: '#/components/schemas/ProblemDetails'
    71                    description: Internal Server Error
    72                  503:
    73                    content:
    74                      application/problem+json:
    75                        schema:
    76                          $ref: '#/components/schemas/ProblemDetails'
    77                    description: Service Unavailable
    78                  default:
    79                    description: Unexpected error
    80                summary: Event Notificaiton Delivery
    81                x-callback-request: true
    82          onSubscriptionIdChangeEvtReport:
    83            '{$request.body#/subscription/subsChangeNotifyUri}':
    84              post:
    85                operationId: onSubscriptionIdChangeEvtReport_Post
    86                requestBody:
    87                  content:
    88                    application/json:
    89                      schema:
    90                        $ref: '#/components/schemas/AmfEventNotification'
    91                  required: true
    92                responses:
    93                  204:
    94                    description: Successful acknowledgement
    95                  400:
    96                    content:
    97                      application/problem+json:
    98                        schema:
    99                          $ref: '#/components/schemas/ProblemDetails'
   100                    description: Bad request
   101                  411:
   102                    content:
   103                      application/problem+json:
   104                        schema:
   105                          $ref: '#/components/schemas/ProblemDetails'
   106                    description: Length Required
   107                  413:
   108                    content:
   109                      application/problem+json:
   110                        schema:
   111                          $ref: '#/components/schemas/ProblemDetails'
   112                    description: Payload Too Large
   113                  415:
   114                    content:
   115                      application/problem+json:
   116                        schema:
   117                          $ref: '#/components/schemas/ProblemDetails'
   118                    description: Unsupported Media Type
   119                  429:
   120                    content:
   121                      application/problem+json:
   122                        schema:
   123                          $ref: '#/components/schemas/ProblemDetails'
   124                    description: Too Many Requests
   125                  500:
   126                    content:
   127                      application/problem+json:
   128                        schema:
   129                          $ref: '#/components/schemas/ProblemDetails'
   130                    description: Internal Server Error
   131                  503:
   132                    content:
   133                      application/problem+json:
   134                        schema:
   135                          $ref: '#/components/schemas/ProblemDetails'
   136                    description: Service Unavailable
   137                  default:
   138                    description: Unexpected error
   139                summary: Event Notificaiton Delivery For Subscription Id Change
   140                x-callback-request: true
   141        operationId: CreateSubscription
   142        requestBody:
   143          content:
   144            application/json:
   145              schema:
   146                $ref: '#/components/schemas/AmfCreateEventSubscription'
   147          required: true
   148        responses:
   149          201:
   150            content:
   151              application/json:
   152                schema:
   153                  $ref: '#/components/schemas/AmfCreatedEventSubscription'
   154            description: Subsription Created
   155            headers:
   156              Location:
   157                description: 'Contains the URI of the newly created resource, according
   158                  to the structure: {apiRoot}/namf-evts/v1/subscriptions/{subscriptionId}'
   159                explode: false
   160                required: true
   161                schema:
   162                  type: string
   163                style: simple
   164          400:
   165            content:
   166              application/problem+json:
   167                schema:
   168                  $ref: '#/components/schemas/ProblemDetails'
   169            description: Bad request
   170          403:
   171            content:
   172              application/problem+json:
   173                schema:
   174                  $ref: '#/components/schemas/ProblemDetails'
   175            description: Forbidden
   176          411:
   177            content:
   178              application/problem+json:
   179                schema:
   180                  $ref: '#/components/schemas/ProblemDetails'
   181            description: Length Required
   182          413:
   183            content:
   184              application/problem+json:
   185                schema:
   186                  $ref: '#/components/schemas/ProblemDetails'
   187            description: Payload Too Large
   188          415:
   189            content:
   190              application/problem+json:
   191                schema:
   192                  $ref: '#/components/schemas/ProblemDetails'
   193            description: Unsupported Media Type
   194          429:
   195            content:
   196              application/problem+json:
   197                schema:
   198                  $ref: '#/components/schemas/ProblemDetails'
   199            description: Too Many Requests
   200          500:
   201            content:
   202              application/problem+json:
   203                schema:
   204                  $ref: '#/components/schemas/ProblemDetails'
   205            description: Internal Server Error
   206          503:
   207            content:
   208              application/problem+json:
   209                schema:
   210                  $ref: '#/components/schemas/ProblemDetails'
   211            description: Service Unavailable
   212          default:
   213            description: Unexpected error
   214        summary: Namf_EventExposure Subscribe service Operation
   215        tags:
   216        - Subscriptions collection (Document)
   217    /subscriptions/{subscriptionId}:
   218      delete:
   219        operationId: DeleteSubscription
   220        parameters:
   221        - description: Unique ID of the subscription to be deleted
   222          explode: false
   223          in: path
   224          name: subscriptionId
   225          required: true
   226          schema:
   227            type: string
   228          style: simple
   229        responses:
   230          200:
   231            description: Subsription deleted successfully
   232          400:
   233            content:
   234              application/problem+json:
   235                schema:
   236                  $ref: '#/components/schemas/ProblemDetails'
   237            description: Bad request
   238          404:
   239            content:
   240              application/problem+json:
   241                schema:
   242                  $ref: '#/components/schemas/ProblemDetails'
   243            description: Not Found
   244          411:
   245            content:
   246              application/problem+json:
   247                schema:
   248                  $ref: '#/components/schemas/ProblemDetails'
   249            description: Length Required
   250          413:
   251            content:
   252              application/problem+json:
   253                schema:
   254                  $ref: '#/components/schemas/ProblemDetails'
   255            description: Payload Too Large
   256          415:
   257            content:
   258              application/problem+json:
   259                schema:
   260                  $ref: '#/components/schemas/ProblemDetails'
   261            description: Unsupported Media Type
   262          429:
   263            content:
   264              application/problem+json:
   265                schema:
   266                  $ref: '#/components/schemas/ProblemDetails'
   267            description: Too Many Requests
   268          500:
   269            content:
   270              application/problem+json:
   271                schema:
   272                  $ref: '#/components/schemas/ProblemDetails'
   273            description: Internal Server Error
   274          503:
   275            content:
   276              application/problem+json:
   277                schema:
   278                  $ref: '#/components/schemas/ProblemDetails'
   279            description: Service Unavailable
   280          default:
   281            description: Unexpected error
   282        summary: Namf_EventExposure Unsubscribe service Operation
   283        tags:
   284        - Individual subscription (Document)
   285      patch:
   286        operationId: ModifySubscription
   287        parameters:
   288        - description: Unique ID of the subscription to be modified
   289          explode: false
   290          in: path
   291          name: subscriptionId
   292          required: true
   293          schema:
   294            type: string
   295          style: simple
   296        requestBody:
   297          content:
   298            application/json-patch+json:
   299              schema:
   300                $ref: '#/components/schemas/ModifySubscription_request'
   301          required: true
   302        responses:
   303          200:
   304            content:
   305              application/json:
   306                schema:
   307                  $ref: '#/components/schemas/AmfUpdatedEventSubscription'
   308            description: Subsription modified successfully
   309          400:
   310            content:
   311              application/problem+json:
   312                schema:
   313                  $ref: '#/components/schemas/ProblemDetails'
   314            description: Bad request
   315          403:
   316            content:
   317              application/problem+json:
   318                schema:
   319                  $ref: '#/components/schemas/ProblemDetails'
   320            description: Forbidden
   321          404:
   322            content:
   323              application/problem+json:
   324                schema:
   325                  $ref: '#/components/schemas/ProblemDetails'
   326            description: Not Found
   327          411:
   328            content:
   329              application/problem+json:
   330                schema:
   331                  $ref: '#/components/schemas/ProblemDetails'
   332            description: Length Required
   333          413:
   334            content:
   335              application/problem+json:
   336                schema:
   337                  $ref: '#/components/schemas/ProblemDetails'
   338            description: Payload Too Large
   339          415:
   340            content:
   341              application/problem+json:
   342                schema:
   343                  $ref: '#/components/schemas/ProblemDetails'
   344            description: Unsupported Media Type
   345          429:
   346            content:
   347              application/problem+json:
   348                schema:
   349                  $ref: '#/components/schemas/ProblemDetails'
   350            description: Too Many Requests
   351          500:
   352            content:
   353              application/problem+json:
   354                schema:
   355                  $ref: '#/components/schemas/ProblemDetails'
   356            description: Internal Server Error
   357          503:
   358            content:
   359              application/problem+json:
   360                schema:
   361                  $ref: '#/components/schemas/ProblemDetails'
   362            description: Service Unavailable
   363          default:
   364            description: Unexpected error
   365        summary: Namf_EventExposure Subscribe Modify service Operation
   366        tags:
   367        - Individual subscription (Document)
   368  components:
   369    schemas:
   370      AmfEventSubscription:
   371        example:
   372          eventNotifyUri: eventNotifyUri
   373          nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
   374          eventList:
   375          - subscribedDataFilterList:
   376            - null
   377            - null
   378            areaList:
   379            - presenceInfo:
   380                ecgiList:
   381                - eutraCellId: eutraCellId
   382                  plmnId:
   383                    mnc: mnc
   384                    mcc: mcc
   385                - eutraCellId: eutraCellId
   386                  plmnId:
   387                    mnc: mnc
   388                    mcc: mcc
   389                globalRanNodeIdList:
   390                - gNbId:
   391                    bitLength: 22
   392                    gNBValue: gNBValue
   393                  plmnId:
   394                    mnc: mnc
   395                    mcc: mcc
   396                  n3IwfId: n3IwfId
   397                  ngeNbId: ngeNbId
   398                - gNbId:
   399                    bitLength: 22
   400                    gNBValue: gNBValue
   401                  plmnId:
   402                    mnc: mnc
   403                    mcc: mcc
   404                  n3IwfId: n3IwfId
   405                  ngeNbId: ngeNbId
   406                praId: praId
   407                trackingAreaList:
   408                - tac: tac
   409                  plmnId:
   410                    mnc: mnc
   411                    mcc: mcc
   412                - tac: tac
   413                  plmnId:
   414                    mnc: mnc
   415                    mcc: mcc
   416                ncgiList:
   417                - plmnId:
   418                    mnc: mnc
   419                    mcc: mcc
   420                  nrCellId: nrCellId
   421                - plmnId:
   422                    mnc: mnc
   423                    mcc: mcc
   424                  nrCellId: nrCellId
   425              ladnInfo:
   426                ladn: ladn
   427            - presenceInfo:
   428                ecgiList:
   429                - eutraCellId: eutraCellId
   430                  plmnId:
   431                    mnc: mnc
   432                    mcc: mcc
   433                - eutraCellId: eutraCellId
   434                  plmnId:
   435                    mnc: mnc
   436                    mcc: mcc
   437                globalRanNodeIdList:
   438                - gNbId:
   439                    bitLength: 22
   440                    gNBValue: gNBValue
   441                  plmnId:
   442                    mnc: mnc
   443                    mcc: mcc
   444                  n3IwfId: n3IwfId
   445                  ngeNbId: ngeNbId
   446                - gNbId:
   447                    bitLength: 22
   448                    gNBValue: gNBValue
   449                  plmnId:
   450                    mnc: mnc
   451                    mcc: mcc
   452                  n3IwfId: n3IwfId
   453                  ngeNbId: ngeNbId
   454                praId: praId
   455                trackingAreaList:
   456                - tac: tac
   457                  plmnId:
   458                    mnc: mnc
   459                    mcc: mcc
   460                - tac: tac
   461                  plmnId:
   462                    mnc: mnc
   463                    mcc: mcc
   464                ncgiList:
   465                - plmnId:
   466                    mnc: mnc
   467                    mcc: mcc
   468                  nrCellId: nrCellId
   469                - plmnId:
   470                    mnc: mnc
   471                    mcc: mcc
   472                  nrCellId: nrCellId
   473              ladnInfo:
   474                ladn: ladn
   475            locationFilterList:
   476            - null
   477            - null
   478            immediateFlag: true
   479          - subscribedDataFilterList:
   480            - null
   481            - null
   482            areaList:
   483            - presenceInfo:
   484                ecgiList:
   485                - eutraCellId: eutraCellId
   486                  plmnId:
   487                    mnc: mnc
   488                    mcc: mcc
   489                - eutraCellId: eutraCellId
   490                  plmnId:
   491                    mnc: mnc
   492                    mcc: mcc
   493                globalRanNodeIdList:
   494                - gNbId:
   495                    bitLength: 22
   496                    gNBValue: gNBValue
   497                  plmnId:
   498                    mnc: mnc
   499                    mcc: mcc
   500                  n3IwfId: n3IwfId
   501                  ngeNbId: ngeNbId
   502                - gNbId:
   503                    bitLength: 22
   504                    gNBValue: gNBValue
   505                  plmnId:
   506                    mnc: mnc
   507                    mcc: mcc
   508                  n3IwfId: n3IwfId
   509                  ngeNbId: ngeNbId
   510                praId: praId
   511                trackingAreaList:
   512                - tac: tac
   513                  plmnId:
   514                    mnc: mnc
   515                    mcc: mcc
   516                - tac: tac
   517                  plmnId:
   518                    mnc: mnc
   519                    mcc: mcc
   520                ncgiList:
   521                - plmnId:
   522                    mnc: mnc
   523                    mcc: mcc
   524                  nrCellId: nrCellId
   525                - plmnId:
   526                    mnc: mnc
   527                    mcc: mcc
   528                  nrCellId: nrCellId
   529              ladnInfo:
   530                ladn: ladn
   531            - presenceInfo:
   532                ecgiList:
   533                - eutraCellId: eutraCellId
   534                  plmnId:
   535                    mnc: mnc
   536                    mcc: mcc
   537                - eutraCellId: eutraCellId
   538                  plmnId:
   539                    mnc: mnc
   540                    mcc: mcc
   541                globalRanNodeIdList:
   542                - gNbId:
   543                    bitLength: 22
   544                    gNBValue: gNBValue
   545                  plmnId:
   546                    mnc: mnc
   547                    mcc: mcc
   548                  n3IwfId: n3IwfId
   549                  ngeNbId: ngeNbId
   550                - gNbId:
   551                    bitLength: 22
   552                    gNBValue: gNBValue
   553                  plmnId:
   554                    mnc: mnc
   555                    mcc: mcc
   556                  n3IwfId: n3IwfId
   557                  ngeNbId: ngeNbId
   558                praId: praId
   559                trackingAreaList:
   560                - tac: tac
   561                  plmnId:
   562                    mnc: mnc
   563                    mcc: mcc
   564                - tac: tac
   565                  plmnId:
   566                    mnc: mnc
   567                    mcc: mcc
   568                ncgiList:
   569                - plmnId:
   570                    mnc: mnc
   571                    mcc: mcc
   572                  nrCellId: nrCellId
   573                - plmnId:
   574                    mnc: mnc
   575                    mcc: mcc
   576                  nrCellId: nrCellId
   577              ladnInfo:
   578                ladn: ladn
   579            locationFilterList:
   580            - null
   581            - null
   582            immediateFlag: true
   583          subsChangeNotifyUri: subsChangeNotifyUri
   584          pei: pei
   585          anyUE: true
   586          groupId: groupId
   587          options:
   588            expiry: 2000-01-23T04:56:07.000+00:00
   589            maxReports: 6
   590          supi: supi
   591          notifyCorrelationId: notifyCorrelationId
   592          subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
   593          gpsi: gpsi
   594        properties:
   595          eventList:
   596            items:
   597              $ref: '#/components/schemas/AmfEvent'
   598            minItems: 1
   599            type: array
   600          eventNotifyUri:
   601            type: string
   602          notifyCorrelationId:
   603            type: string
   604          nfId:
   605            format: uuid
   606            type: string
   607          subsChangeNotifyUri:
   608            type: string
   609          subsChangeNotifyCorrelationId:
   610            type: string
   611          supi:
   612            pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
   613            type: string
   614          groupId:
   615            pattern: ^[A-Fa-f0-9]{8}-[0-9]{3}-[0-9]{2,3}-([A-Fa-f0-9][A-Fa-f0-9]){1,10}$
   616            type: string
   617          gpsi:
   618            pattern: ^(msisdn-[0-9]{5,15}|extid-[^@]+@[^@]+|.+)$
   619            type: string
   620          pei:
   621            pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   622            type: string
   623          anyUE:
   624            type: boolean
   625          options:
   626            $ref: '#/components/schemas/AmfEventMode'
   627        required:
   628        - eventNotifyUri
   629        - events
   630        - nfId
   631        - notifyCorrelationId
   632        type: object
   633      AmfEvent:
   634        example:
   635          subscribedDataFilterList:
   636          - null
   637          - null
   638          areaList:
   639          - presenceInfo:
   640              ecgiList:
   641              - eutraCellId: eutraCellId
   642                plmnId:
   643                  mnc: mnc
   644                  mcc: mcc
   645              - eutraCellId: eutraCellId
   646                plmnId:
   647                  mnc: mnc
   648                  mcc: mcc
   649              globalRanNodeIdList:
   650              - gNbId:
   651                  bitLength: 22
   652                  gNBValue: gNBValue
   653                plmnId:
   654                  mnc: mnc
   655                  mcc: mcc
   656                n3IwfId: n3IwfId
   657                ngeNbId: ngeNbId
   658              - gNbId:
   659                  bitLength: 22
   660                  gNBValue: gNBValue
   661                plmnId:
   662                  mnc: mnc
   663                  mcc: mcc
   664                n3IwfId: n3IwfId
   665                ngeNbId: ngeNbId
   666              praId: praId
   667              trackingAreaList:
   668              - tac: tac
   669                plmnId:
   670                  mnc: mnc
   671                  mcc: mcc
   672              - tac: tac
   673                plmnId:
   674                  mnc: mnc
   675                  mcc: mcc
   676              ncgiList:
   677              - plmnId:
   678                  mnc: mnc
   679                  mcc: mcc
   680                nrCellId: nrCellId
   681              - plmnId:
   682                  mnc: mnc
   683                  mcc: mcc
   684                nrCellId: nrCellId
   685            ladnInfo:
   686              ladn: ladn
   687          - presenceInfo:
   688              ecgiList:
   689              - eutraCellId: eutraCellId
   690                plmnId:
   691                  mnc: mnc
   692                  mcc: mcc
   693              - eutraCellId: eutraCellId
   694                plmnId:
   695                  mnc: mnc
   696                  mcc: mcc
   697              globalRanNodeIdList:
   698              - gNbId:
   699                  bitLength: 22
   700                  gNBValue: gNBValue
   701                plmnId:
   702                  mnc: mnc
   703                  mcc: mcc
   704                n3IwfId: n3IwfId
   705                ngeNbId: ngeNbId
   706              - gNbId:
   707                  bitLength: 22
   708                  gNBValue: gNBValue
   709                plmnId:
   710                  mnc: mnc
   711                  mcc: mcc
   712                n3IwfId: n3IwfId
   713                ngeNbId: ngeNbId
   714              praId: praId
   715              trackingAreaList:
   716              - tac: tac
   717                plmnId:
   718                  mnc: mnc
   719                  mcc: mcc
   720              - tac: tac
   721                plmnId:
   722                  mnc: mnc
   723                  mcc: mcc
   724              ncgiList:
   725              - plmnId:
   726                  mnc: mnc
   727                  mcc: mcc
   728                nrCellId: nrCellId
   729              - plmnId:
   730                  mnc: mnc
   731                  mcc: mcc
   732                nrCellId: nrCellId
   733            ladnInfo:
   734              ladn: ladn
   735          locationFilterList:
   736          - null
   737          - null
   738          immediateFlag: true
   739        properties:
   740          type:
   741            $ref: '#/components/schemas/AmfEventType'
   742          immediateFlag:
   743            type: boolean
   744          areaList:
   745            items:
   746              $ref: '#/components/schemas/AmfEventArea'
   747            minItems: 1
   748            type: array
   749          locationFilterList:
   750            items:
   751              $ref: '#/components/schemas/LocationFilter'
   752            minItems: 1
   753            type: array
   754          subscribedDataFilterList:
   755            items:
   756              $ref: '#/components/schemas/SubscribedDataFilter'
   757            minItems: 1
   758            type: array
   759        required:
   760        - type
   761        type: object
   762      AmfEventNotification:
   763        example:
   764          reportList:
   765          - timezone: timezone
   766            areaList:
   767            - presenceInfo:
   768                ecgiList:
   769                - eutraCellId: eutraCellId
   770                  plmnId:
   771                    mnc: mnc
   772                    mcc: mcc
   773                - eutraCellId: eutraCellId
   774                  plmnId:
   775                    mnc: mnc
   776                    mcc: mcc
   777                globalRanNodeIdList:
   778                - gNbId:
   779                    bitLength: 22
   780                    gNBValue: gNBValue
   781                  plmnId:
   782                    mnc: mnc
   783                    mcc: mcc
   784                  n3IwfId: n3IwfId
   785                  ngeNbId: ngeNbId
   786                - gNbId:
   787                    bitLength: 22
   788                    gNBValue: gNBValue
   789                  plmnId:
   790                    mnc: mnc
   791                    mcc: mcc
   792                  n3IwfId: n3IwfId
   793                  ngeNbId: ngeNbId
   794                praId: praId
   795                trackingAreaList:
   796                - tac: tac
   797                  plmnId:
   798                    mnc: mnc
   799                    mcc: mcc
   800                - tac: tac
   801                  plmnId:
   802                    mnc: mnc
   803                    mcc: mcc
   804                ncgiList:
   805                - plmnId:
   806                    mnc: mnc
   807                    mcc: mcc
   808                  nrCellId: nrCellId
   809                - plmnId:
   810                    mnc: mnc
   811                    mcc: mcc
   812                  nrCellId: nrCellId
   813              ladnInfo:
   814                ladn: ladn
   815            - presenceInfo:
   816                ecgiList:
   817                - eutraCellId: eutraCellId
   818                  plmnId:
   819                    mnc: mnc
   820                    mcc: mcc
   821                - eutraCellId: eutraCellId
   822                  plmnId:
   823                    mnc: mnc
   824                    mcc: mcc
   825                globalRanNodeIdList:
   826                - gNbId:
   827                    bitLength: 22
   828                    gNBValue: gNBValue
   829                  plmnId:
   830                    mnc: mnc
   831                    mcc: mcc
   832                  n3IwfId: n3IwfId
   833                  ngeNbId: ngeNbId
   834                - gNbId:
   835                    bitLength: 22
   836                    gNBValue: gNBValue
   837                  plmnId:
   838                    mnc: mnc
   839                    mcc: mcc
   840                  n3IwfId: n3IwfId
   841                  ngeNbId: ngeNbId
   842                praId: praId
   843                trackingAreaList:
   844                - tac: tac
   845                  plmnId:
   846                    mnc: mnc
   847                    mcc: mcc
   848                - tac: tac
   849                  plmnId:
   850                    mnc: mnc
   851                    mcc: mcc
   852                ncgiList:
   853                - plmnId:
   854                    mnc: mnc
   855                    mcc: mcc
   856                  nrCellId: nrCellId
   857                - plmnId:
   858                    mnc: mnc
   859                    mcc: mcc
   860                  nrCellId: nrCellId
   861              ladnInfo:
   862                ladn: ladn
   863            supi: supi
   864            cmInfoList:
   865            - {}
   866            - {}
   867            rmInfoList:
   868            - {}
   869            - {}
   870            gpsi: gpsi
   871            timeStamp: 2000-01-23T04:56:07.000+00:00
   872            numberOfUes: 4
   873            pei: pei
   874            anyUe: true
   875            accessTypeList:
   876            - null
   877            - null
   878            location:
   879              eutraLocation:
   880                geographicalInformation: geographicalInformation
   881                globalNgenbId:
   882                  gNbId:
   883                    bitLength: 22
   884                    gNBValue: gNBValue
   885                  plmnId:
   886                    mnc: mnc
   887                    mcc: mcc
   888                  n3IwfId: n3IwfId
   889                  ngeNbId: ngeNbId
   890                ageOfLocationInformation: 18471
   891                tai:
   892                  tac: tac
   893                  plmnId:
   894                    mnc: mnc
   895                    mcc: mcc
   896                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
   897                geodeticInformation: geodeticInformation
   898                ecgi:
   899                  eutraCellId: eutraCellId
   900                  plmnId:
   901                    mnc: mnc
   902                    mcc: mcc
   903              nrLocation:
   904                geographicalInformation: geographicalInformation
   905                globalGnbId:
   906                  gNbId:
   907                    bitLength: 22
   908                    gNBValue: gNBValue
   909                  plmnId:
   910                    mnc: mnc
   911                    mcc: mcc
   912                  n3IwfId: n3IwfId
   913                  ngeNbId: ngeNbId
   914                ageOfLocationInformation: 7543
   915                ncgi:
   916                  plmnId:
   917                    mnc: mnc
   918                    mcc: mcc
   919                  nrCellId: nrCellId
   920                tai:
   921                  tac: tac
   922                  plmnId:
   923                    mnc: mnc
   924                    mcc: mcc
   925                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
   926                geodeticInformation: geodeticInformation
   927              n3gaLocation:
   928                ueIpv4Addr: 198.51.100.1
   929                n3gppTai:
   930                  tac: tac
   931                  plmnId:
   932                    mnc: mnc
   933                    mcc: mcc
   934                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
   935                n3IwfId: n3IwfId
   936                portNumber: 0
   937            state:
   938              remainDuration: 5
   939              active: true
   940              remainReports: 1
   941            subscriptionId: subscriptionId
   942            subscribedData:
   943              sari: sari
   944              rfspIndex: 9
   945            commFailure:
   946              ranReleaseCode:
   947                value: 0
   948                group: 0
   949              nasReleaseCode: nasReleaseCode
   950          - timezone: timezone
   951            areaList:
   952            - presenceInfo:
   953                ecgiList:
   954                - eutraCellId: eutraCellId
   955                  plmnId:
   956                    mnc: mnc
   957                    mcc: mcc
   958                - eutraCellId: eutraCellId
   959                  plmnId:
   960                    mnc: mnc
   961                    mcc: mcc
   962                globalRanNodeIdList:
   963                - gNbId:
   964                    bitLength: 22
   965                    gNBValue: gNBValue
   966                  plmnId:
   967                    mnc: mnc
   968                    mcc: mcc
   969                  n3IwfId: n3IwfId
   970                  ngeNbId: ngeNbId
   971                - gNbId:
   972                    bitLength: 22
   973                    gNBValue: gNBValue
   974                  plmnId:
   975                    mnc: mnc
   976                    mcc: mcc
   977                  n3IwfId: n3IwfId
   978                  ngeNbId: ngeNbId
   979                praId: praId
   980                trackingAreaList:
   981                - tac: tac
   982                  plmnId:
   983                    mnc: mnc
   984                    mcc: mcc
   985                - tac: tac
   986                  plmnId:
   987                    mnc: mnc
   988                    mcc: mcc
   989                ncgiList:
   990                - plmnId:
   991                    mnc: mnc
   992                    mcc: mcc
   993                  nrCellId: nrCellId
   994                - plmnId:
   995                    mnc: mnc
   996                    mcc: mcc
   997                  nrCellId: nrCellId
   998              ladnInfo:
   999                ladn: ladn
  1000            - presenceInfo:
  1001                ecgiList:
  1002                - eutraCellId: eutraCellId
  1003                  plmnId:
  1004                    mnc: mnc
  1005                    mcc: mcc
  1006                - eutraCellId: eutraCellId
  1007                  plmnId:
  1008                    mnc: mnc
  1009                    mcc: mcc
  1010                globalRanNodeIdList:
  1011                - gNbId:
  1012                    bitLength: 22
  1013                    gNBValue: gNBValue
  1014                  plmnId:
  1015                    mnc: mnc
  1016                    mcc: mcc
  1017                  n3IwfId: n3IwfId
  1018                  ngeNbId: ngeNbId
  1019                - gNbId:
  1020                    bitLength: 22
  1021                    gNBValue: gNBValue
  1022                  plmnId:
  1023                    mnc: mnc
  1024                    mcc: mcc
  1025                  n3IwfId: n3IwfId
  1026                  ngeNbId: ngeNbId
  1027                praId: praId
  1028                trackingAreaList:
  1029                - tac: tac
  1030                  plmnId:
  1031                    mnc: mnc
  1032                    mcc: mcc
  1033                - tac: tac
  1034                  plmnId:
  1035                    mnc: mnc
  1036                    mcc: mcc
  1037                ncgiList:
  1038                - plmnId:
  1039                    mnc: mnc
  1040                    mcc: mcc
  1041                  nrCellId: nrCellId
  1042                - plmnId:
  1043                    mnc: mnc
  1044                    mcc: mcc
  1045                  nrCellId: nrCellId
  1046              ladnInfo:
  1047                ladn: ladn
  1048            supi: supi
  1049            cmInfoList:
  1050            - {}
  1051            - {}
  1052            rmInfoList:
  1053            - {}
  1054            - {}
  1055            gpsi: gpsi
  1056            timeStamp: 2000-01-23T04:56:07.000+00:00
  1057            numberOfUes: 4
  1058            pei: pei
  1059            anyUe: true
  1060            accessTypeList:
  1061            - null
  1062            - null
  1063            location:
  1064              eutraLocation:
  1065                geographicalInformation: geographicalInformation
  1066                globalNgenbId:
  1067                  gNbId:
  1068                    bitLength: 22
  1069                    gNBValue: gNBValue
  1070                  plmnId:
  1071                    mnc: mnc
  1072                    mcc: mcc
  1073                  n3IwfId: n3IwfId
  1074                  ngeNbId: ngeNbId
  1075                ageOfLocationInformation: 18471
  1076                tai:
  1077                  tac: tac
  1078                  plmnId:
  1079                    mnc: mnc
  1080                    mcc: mcc
  1081                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1082                geodeticInformation: geodeticInformation
  1083                ecgi:
  1084                  eutraCellId: eutraCellId
  1085                  plmnId:
  1086                    mnc: mnc
  1087                    mcc: mcc
  1088              nrLocation:
  1089                geographicalInformation: geographicalInformation
  1090                globalGnbId:
  1091                  gNbId:
  1092                    bitLength: 22
  1093                    gNBValue: gNBValue
  1094                  plmnId:
  1095                    mnc: mnc
  1096                    mcc: mcc
  1097                  n3IwfId: n3IwfId
  1098                  ngeNbId: ngeNbId
  1099                ageOfLocationInformation: 7543
  1100                ncgi:
  1101                  plmnId:
  1102                    mnc: mnc
  1103                    mcc: mcc
  1104                  nrCellId: nrCellId
  1105                tai:
  1106                  tac: tac
  1107                  plmnId:
  1108                    mnc: mnc
  1109                    mcc: mcc
  1110                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1111                geodeticInformation: geodeticInformation
  1112              n3gaLocation:
  1113                ueIpv4Addr: 198.51.100.1
  1114                n3gppTai:
  1115                  tac: tac
  1116                  plmnId:
  1117                    mnc: mnc
  1118                    mcc: mcc
  1119                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  1120                n3IwfId: n3IwfId
  1121                portNumber: 0
  1122            state:
  1123              remainDuration: 5
  1124              active: true
  1125              remainReports: 1
  1126            subscriptionId: subscriptionId
  1127            subscribedData:
  1128              sari: sari
  1129              rfspIndex: 9
  1130            commFailure:
  1131              ranReleaseCode:
  1132                value: 0
  1133                group: 0
  1134              nasReleaseCode: nasReleaseCode
  1135          notifyCorrelationId: notifyCorrelationId
  1136          subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  1137        properties:
  1138          notifyCorrelationId:
  1139            type: string
  1140          subsChangeNotifyCorrelationId:
  1141            type: string
  1142          reportList:
  1143            items:
  1144              $ref: '#/components/schemas/AmfEventReport'
  1145            minItems: 1
  1146            type: array
  1147        type: object
  1148      AmfEventReport:
  1149        example:
  1150          timezone: timezone
  1151          areaList:
  1152          - presenceInfo:
  1153              ecgiList:
  1154              - eutraCellId: eutraCellId
  1155                plmnId:
  1156                  mnc: mnc
  1157                  mcc: mcc
  1158              - eutraCellId: eutraCellId
  1159                plmnId:
  1160                  mnc: mnc
  1161                  mcc: mcc
  1162              globalRanNodeIdList:
  1163              - gNbId:
  1164                  bitLength: 22
  1165                  gNBValue: gNBValue
  1166                plmnId:
  1167                  mnc: mnc
  1168                  mcc: mcc
  1169                n3IwfId: n3IwfId
  1170                ngeNbId: ngeNbId
  1171              - gNbId:
  1172                  bitLength: 22
  1173                  gNBValue: gNBValue
  1174                plmnId:
  1175                  mnc: mnc
  1176                  mcc: mcc
  1177                n3IwfId: n3IwfId
  1178                ngeNbId: ngeNbId
  1179              praId: praId
  1180              trackingAreaList:
  1181              - tac: tac
  1182                plmnId:
  1183                  mnc: mnc
  1184                  mcc: mcc
  1185              - tac: tac
  1186                plmnId:
  1187                  mnc: mnc
  1188                  mcc: mcc
  1189              ncgiList:
  1190              - plmnId:
  1191                  mnc: mnc
  1192                  mcc: mcc
  1193                nrCellId: nrCellId
  1194              - plmnId:
  1195                  mnc: mnc
  1196                  mcc: mcc
  1197                nrCellId: nrCellId
  1198            ladnInfo:
  1199              ladn: ladn
  1200          - presenceInfo:
  1201              ecgiList:
  1202              - eutraCellId: eutraCellId
  1203                plmnId:
  1204                  mnc: mnc
  1205                  mcc: mcc
  1206              - eutraCellId: eutraCellId
  1207                plmnId:
  1208                  mnc: mnc
  1209                  mcc: mcc
  1210              globalRanNodeIdList:
  1211              - gNbId:
  1212                  bitLength: 22
  1213                  gNBValue: gNBValue
  1214                plmnId:
  1215                  mnc: mnc
  1216                  mcc: mcc
  1217                n3IwfId: n3IwfId
  1218                ngeNbId: ngeNbId
  1219              - gNbId:
  1220                  bitLength: 22
  1221                  gNBValue: gNBValue
  1222                plmnId:
  1223                  mnc: mnc
  1224                  mcc: mcc
  1225                n3IwfId: n3IwfId
  1226                ngeNbId: ngeNbId
  1227              praId: praId
  1228              trackingAreaList:
  1229              - tac: tac
  1230                plmnId:
  1231                  mnc: mnc
  1232                  mcc: mcc
  1233              - tac: tac
  1234                plmnId:
  1235                  mnc: mnc
  1236                  mcc: mcc
  1237              ncgiList:
  1238              - plmnId:
  1239                  mnc: mnc
  1240                  mcc: mcc
  1241                nrCellId: nrCellId
  1242              - plmnId:
  1243                  mnc: mnc
  1244                  mcc: mcc
  1245                nrCellId: nrCellId
  1246            ladnInfo:
  1247              ladn: ladn
  1248          supi: supi
  1249          cmInfoList:
  1250          - {}
  1251          - {}
  1252          rmInfoList:
  1253          - {}
  1254          - {}
  1255          gpsi: gpsi
  1256          timeStamp: 2000-01-23T04:56:07.000+00:00
  1257          numberOfUes: 4
  1258          pei: pei
  1259          anyUe: true
  1260          accessTypeList:
  1261          - null
  1262          - null
  1263          location:
  1264            eutraLocation:
  1265              geographicalInformation: geographicalInformation
  1266              globalNgenbId:
  1267                gNbId:
  1268                  bitLength: 22
  1269                  gNBValue: gNBValue
  1270                plmnId:
  1271                  mnc: mnc
  1272                  mcc: mcc
  1273                n3IwfId: n3IwfId
  1274                ngeNbId: ngeNbId
  1275              ageOfLocationInformation: 18471
  1276              tai:
  1277                tac: tac
  1278                plmnId:
  1279                  mnc: mnc
  1280                  mcc: mcc
  1281              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1282              geodeticInformation: geodeticInformation
  1283              ecgi:
  1284                eutraCellId: eutraCellId
  1285                plmnId:
  1286                  mnc: mnc
  1287                  mcc: mcc
  1288            nrLocation:
  1289              geographicalInformation: geographicalInformation
  1290              globalGnbId:
  1291                gNbId:
  1292                  bitLength: 22
  1293                  gNBValue: gNBValue
  1294                plmnId:
  1295                  mnc: mnc
  1296                  mcc: mcc
  1297                n3IwfId: n3IwfId
  1298                ngeNbId: ngeNbId
  1299              ageOfLocationInformation: 7543
  1300              ncgi:
  1301                plmnId:
  1302                  mnc: mnc
  1303                  mcc: mcc
  1304                nrCellId: nrCellId
  1305              tai:
  1306                tac: tac
  1307                plmnId:
  1308                  mnc: mnc
  1309                  mcc: mcc
  1310              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1311              geodeticInformation: geodeticInformation
  1312            n3gaLocation:
  1313              ueIpv4Addr: 198.51.100.1
  1314              n3gppTai:
  1315                tac: tac
  1316                plmnId:
  1317                  mnc: mnc
  1318                  mcc: mcc
  1319              ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  1320              n3IwfId: n3IwfId
  1321              portNumber: 0
  1322          state:
  1323            remainDuration: 5
  1324            active: true
  1325            remainReports: 1
  1326          subscriptionId: subscriptionId
  1327          subscribedData:
  1328            sari: sari
  1329            rfspIndex: 9
  1330          commFailure:
  1331            ranReleaseCode:
  1332              value: 0
  1333              group: 0
  1334            nasReleaseCode: nasReleaseCode
  1335        properties:
  1336          type:
  1337            $ref: '#/components/schemas/AmfEventType'
  1338          state:
  1339            $ref: '#/components/schemas/AmfEventState'
  1340          timeStamp:
  1341            format: date-time
  1342            type: string
  1343          subscriptionId:
  1344            type: string
  1345          anyUe:
  1346            type: boolean
  1347          supi:
  1348            pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  1349            type: string
  1350          areaList:
  1351            items:
  1352              $ref: '#/components/schemas/AmfEventArea'
  1353            minItems: 1
  1354            type: array
  1355          gpsi:
  1356            pattern: ^(msisdn-[0-9]{5,15}|extid-[^@]+@[^@]+|.+)$
  1357            type: string
  1358          pei:
  1359            pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
  1360            type: string
  1361          location:
  1362            $ref: '#/components/schemas/UserLocation'
  1363          timezone:
  1364            type: string
  1365          accessTypeList:
  1366            items:
  1367              $ref: '#/components/schemas/AccessType'
  1368            minItems: 1
  1369            type: array
  1370          rmInfoList:
  1371            items:
  1372              $ref: '#/components/schemas/RmInfo'
  1373            minItems: 1
  1374            type: array
  1375          cmInfoList:
  1376            items:
  1377              $ref: '#/components/schemas/CmInfo'
  1378            minItems: 1
  1379            type: array
  1380          reachability:
  1381            $ref: '#/components/schemas/UeReachability'
  1382          subscribedData:
  1383            $ref: '#/components/schemas/SubscribedData'
  1384          commFailure:
  1385            $ref: '#/components/schemas/CommunicationFailure'
  1386          numberOfUes:
  1387            format: int32
  1388            type: integer
  1389        required:
  1390        - state
  1391        - timeStamp
  1392        - type
  1393        type: object
  1394      AmfEventMode:
  1395        example:
  1396          expiry: 2000-01-23T04:56:07.000+00:00
  1397          maxReports: 6
  1398        properties:
  1399          trigger:
  1400            $ref: '#/components/schemas/AmfEventTrigger'
  1401          maxReports:
  1402            format: int32
  1403            type: integer
  1404          expiry:
  1405            format: date-time
  1406            type: string
  1407        required:
  1408        - trigger
  1409        type: object
  1410      AmfEventState:
  1411        example:
  1412          remainDuration: 5
  1413          active: true
  1414          remainReports: 1
  1415        properties:
  1416          active:
  1417            type: boolean
  1418          remainReports:
  1419            format: int32
  1420            type: integer
  1421          remainDuration:
  1422            format: int32
  1423            type: integer
  1424        required:
  1425        - active
  1426        type: object
  1427      RmInfo:
  1428        example: {}
  1429        properties:
  1430          rmState:
  1431            $ref: '#/components/schemas/RmState'
  1432          accessType:
  1433            $ref: '#/components/schemas/AccessType'
  1434        required:
  1435        - accessType
  1436        - rmState
  1437        type: object
  1438      CmInfo:
  1439        example: {}
  1440        properties:
  1441          cmState:
  1442            $ref: '#/components/schemas/CmState'
  1443          accessType:
  1444            $ref: '#/components/schemas/AccessType'
  1445        required:
  1446        - accessType
  1447        - cmState
  1448        type: object
  1449      SubscribedData:
  1450        example:
  1451          sari: sari
  1452          rfspIndex: 9
  1453        properties:
  1454          sari:
  1455            format: byte
  1456            type: string
  1457          rfspIndex:
  1458            format: int32
  1459            type: integer
  1460        type: object
  1461      CommunicationFailure:
  1462        example:
  1463          ranReleaseCode:
  1464            value: 0
  1465            group: 0
  1466          nasReleaseCode: nasReleaseCode
  1467        properties:
  1468          nasReleaseCode:
  1469            type: string
  1470          ranReleaseCode:
  1471            $ref: '#/components/schemas/NgApCause'
  1472        type: object
  1473      AmfCreateEventSubscription:
  1474        example:
  1475          supportedFeatures: supportedFeatures
  1476          subscription:
  1477            eventNotifyUri: eventNotifyUri
  1478            nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  1479            eventList:
  1480            - subscribedDataFilterList:
  1481              - null
  1482              - null
  1483              areaList:
  1484              - presenceInfo:
  1485                  ecgiList:
  1486                  - eutraCellId: eutraCellId
  1487                    plmnId:
  1488                      mnc: mnc
  1489                      mcc: mcc
  1490                  - eutraCellId: eutraCellId
  1491                    plmnId:
  1492                      mnc: mnc
  1493                      mcc: mcc
  1494                  globalRanNodeIdList:
  1495                  - gNbId:
  1496                      bitLength: 22
  1497                      gNBValue: gNBValue
  1498                    plmnId:
  1499                      mnc: mnc
  1500                      mcc: mcc
  1501                    n3IwfId: n3IwfId
  1502                    ngeNbId: ngeNbId
  1503                  - gNbId:
  1504                      bitLength: 22
  1505                      gNBValue: gNBValue
  1506                    plmnId:
  1507                      mnc: mnc
  1508                      mcc: mcc
  1509                    n3IwfId: n3IwfId
  1510                    ngeNbId: ngeNbId
  1511                  praId: praId
  1512                  trackingAreaList:
  1513                  - tac: tac
  1514                    plmnId:
  1515                      mnc: mnc
  1516                      mcc: mcc
  1517                  - tac: tac
  1518                    plmnId:
  1519                      mnc: mnc
  1520                      mcc: mcc
  1521                  ncgiList:
  1522                  - plmnId:
  1523                      mnc: mnc
  1524                      mcc: mcc
  1525                    nrCellId: nrCellId
  1526                  - plmnId:
  1527                      mnc: mnc
  1528                      mcc: mcc
  1529                    nrCellId: nrCellId
  1530                ladnInfo:
  1531                  ladn: ladn
  1532              - presenceInfo:
  1533                  ecgiList:
  1534                  - eutraCellId: eutraCellId
  1535                    plmnId:
  1536                      mnc: mnc
  1537                      mcc: mcc
  1538                  - eutraCellId: eutraCellId
  1539                    plmnId:
  1540                      mnc: mnc
  1541                      mcc: mcc
  1542                  globalRanNodeIdList:
  1543                  - gNbId:
  1544                      bitLength: 22
  1545                      gNBValue: gNBValue
  1546                    plmnId:
  1547                      mnc: mnc
  1548                      mcc: mcc
  1549                    n3IwfId: n3IwfId
  1550                    ngeNbId: ngeNbId
  1551                  - gNbId:
  1552                      bitLength: 22
  1553                      gNBValue: gNBValue
  1554                    plmnId:
  1555                      mnc: mnc
  1556                      mcc: mcc
  1557                    n3IwfId: n3IwfId
  1558                    ngeNbId: ngeNbId
  1559                  praId: praId
  1560                  trackingAreaList:
  1561                  - tac: tac
  1562                    plmnId:
  1563                      mnc: mnc
  1564                      mcc: mcc
  1565                  - tac: tac
  1566                    plmnId:
  1567                      mnc: mnc
  1568                      mcc: mcc
  1569                  ncgiList:
  1570                  - plmnId:
  1571                      mnc: mnc
  1572                      mcc: mcc
  1573                    nrCellId: nrCellId
  1574                  - plmnId:
  1575                      mnc: mnc
  1576                      mcc: mcc
  1577                    nrCellId: nrCellId
  1578                ladnInfo:
  1579                  ladn: ladn
  1580              locationFilterList:
  1581              - null
  1582              - null
  1583              immediateFlag: true
  1584            - subscribedDataFilterList:
  1585              - null
  1586              - null
  1587              areaList:
  1588              - presenceInfo:
  1589                  ecgiList:
  1590                  - eutraCellId: eutraCellId
  1591                    plmnId:
  1592                      mnc: mnc
  1593                      mcc: mcc
  1594                  - eutraCellId: eutraCellId
  1595                    plmnId:
  1596                      mnc: mnc
  1597                      mcc: mcc
  1598                  globalRanNodeIdList:
  1599                  - gNbId:
  1600                      bitLength: 22
  1601                      gNBValue: gNBValue
  1602                    plmnId:
  1603                      mnc: mnc
  1604                      mcc: mcc
  1605                    n3IwfId: n3IwfId
  1606                    ngeNbId: ngeNbId
  1607                  - gNbId:
  1608                      bitLength: 22
  1609                      gNBValue: gNBValue
  1610                    plmnId:
  1611                      mnc: mnc
  1612                      mcc: mcc
  1613                    n3IwfId: n3IwfId
  1614                    ngeNbId: ngeNbId
  1615                  praId: praId
  1616                  trackingAreaList:
  1617                  - tac: tac
  1618                    plmnId:
  1619                      mnc: mnc
  1620                      mcc: mcc
  1621                  - tac: tac
  1622                    plmnId:
  1623                      mnc: mnc
  1624                      mcc: mcc
  1625                  ncgiList:
  1626                  - plmnId:
  1627                      mnc: mnc
  1628                      mcc: mcc
  1629                    nrCellId: nrCellId
  1630                  - plmnId:
  1631                      mnc: mnc
  1632                      mcc: mcc
  1633                    nrCellId: nrCellId
  1634                ladnInfo:
  1635                  ladn: ladn
  1636              - presenceInfo:
  1637                  ecgiList:
  1638                  - eutraCellId: eutraCellId
  1639                    plmnId:
  1640                      mnc: mnc
  1641                      mcc: mcc
  1642                  - eutraCellId: eutraCellId
  1643                    plmnId:
  1644                      mnc: mnc
  1645                      mcc: mcc
  1646                  globalRanNodeIdList:
  1647                  - gNbId:
  1648                      bitLength: 22
  1649                      gNBValue: gNBValue
  1650                    plmnId:
  1651                      mnc: mnc
  1652                      mcc: mcc
  1653                    n3IwfId: n3IwfId
  1654                    ngeNbId: ngeNbId
  1655                  - gNbId:
  1656                      bitLength: 22
  1657                      gNBValue: gNBValue
  1658                    plmnId:
  1659                      mnc: mnc
  1660                      mcc: mcc
  1661                    n3IwfId: n3IwfId
  1662                    ngeNbId: ngeNbId
  1663                  praId: praId
  1664                  trackingAreaList:
  1665                  - tac: tac
  1666                    plmnId:
  1667                      mnc: mnc
  1668                      mcc: mcc
  1669                  - tac: tac
  1670                    plmnId:
  1671                      mnc: mnc
  1672                      mcc: mcc
  1673                  ncgiList:
  1674                  - plmnId:
  1675                      mnc: mnc
  1676                      mcc: mcc
  1677                    nrCellId: nrCellId
  1678                  - plmnId:
  1679                      mnc: mnc
  1680                      mcc: mcc
  1681                    nrCellId: nrCellId
  1682                ladnInfo:
  1683                  ladn: ladn
  1684              locationFilterList:
  1685              - null
  1686              - null
  1687              immediateFlag: true
  1688            subsChangeNotifyUri: subsChangeNotifyUri
  1689            pei: pei
  1690            anyUE: true
  1691            groupId: groupId
  1692            options:
  1693              expiry: 2000-01-23T04:56:07.000+00:00
  1694              maxReports: 6
  1695            supi: supi
  1696            notifyCorrelationId: notifyCorrelationId
  1697            subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  1698            gpsi: gpsi
  1699        properties:
  1700          subscription:
  1701            $ref: '#/components/schemas/AmfEventSubscription'
  1702          supportedFeatures:
  1703            pattern: ^[A-Fa-f0-9]*$
  1704            type: string
  1705        required:
  1706        - subscription
  1707        type: object
  1708      AmfCreatedEventSubscription:
  1709        example:
  1710          supportedFeatures: supportedFeatures
  1711          reportList:
  1712          - timezone: timezone
  1713            areaList:
  1714            - presenceInfo:
  1715                ecgiList:
  1716                - eutraCellId: eutraCellId
  1717                  plmnId:
  1718                    mnc: mnc
  1719                    mcc: mcc
  1720                - eutraCellId: eutraCellId
  1721                  plmnId:
  1722                    mnc: mnc
  1723                    mcc: mcc
  1724                globalRanNodeIdList:
  1725                - gNbId:
  1726                    bitLength: 22
  1727                    gNBValue: gNBValue
  1728                  plmnId:
  1729                    mnc: mnc
  1730                    mcc: mcc
  1731                  n3IwfId: n3IwfId
  1732                  ngeNbId: ngeNbId
  1733                - gNbId:
  1734                    bitLength: 22
  1735                    gNBValue: gNBValue
  1736                  plmnId:
  1737                    mnc: mnc
  1738                    mcc: mcc
  1739                  n3IwfId: n3IwfId
  1740                  ngeNbId: ngeNbId
  1741                praId: praId
  1742                trackingAreaList:
  1743                - tac: tac
  1744                  plmnId:
  1745                    mnc: mnc
  1746                    mcc: mcc
  1747                - tac: tac
  1748                  plmnId:
  1749                    mnc: mnc
  1750                    mcc: mcc
  1751                ncgiList:
  1752                - plmnId:
  1753                    mnc: mnc
  1754                    mcc: mcc
  1755                  nrCellId: nrCellId
  1756                - plmnId:
  1757                    mnc: mnc
  1758                    mcc: mcc
  1759                  nrCellId: nrCellId
  1760              ladnInfo:
  1761                ladn: ladn
  1762            - presenceInfo:
  1763                ecgiList:
  1764                - eutraCellId: eutraCellId
  1765                  plmnId:
  1766                    mnc: mnc
  1767                    mcc: mcc
  1768                - eutraCellId: eutraCellId
  1769                  plmnId:
  1770                    mnc: mnc
  1771                    mcc: mcc
  1772                globalRanNodeIdList:
  1773                - gNbId:
  1774                    bitLength: 22
  1775                    gNBValue: gNBValue
  1776                  plmnId:
  1777                    mnc: mnc
  1778                    mcc: mcc
  1779                  n3IwfId: n3IwfId
  1780                  ngeNbId: ngeNbId
  1781                - gNbId:
  1782                    bitLength: 22
  1783                    gNBValue: gNBValue
  1784                  plmnId:
  1785                    mnc: mnc
  1786                    mcc: mcc
  1787                  n3IwfId: n3IwfId
  1788                  ngeNbId: ngeNbId
  1789                praId: praId
  1790                trackingAreaList:
  1791                - tac: tac
  1792                  plmnId:
  1793                    mnc: mnc
  1794                    mcc: mcc
  1795                - tac: tac
  1796                  plmnId:
  1797                    mnc: mnc
  1798                    mcc: mcc
  1799                ncgiList:
  1800                - plmnId:
  1801                    mnc: mnc
  1802                    mcc: mcc
  1803                  nrCellId: nrCellId
  1804                - plmnId:
  1805                    mnc: mnc
  1806                    mcc: mcc
  1807                  nrCellId: nrCellId
  1808              ladnInfo:
  1809                ladn: ladn
  1810            supi: supi
  1811            cmInfoList:
  1812            - {}
  1813            - {}
  1814            rmInfoList:
  1815            - {}
  1816            - {}
  1817            gpsi: gpsi
  1818            timeStamp: 2000-01-23T04:56:07.000+00:00
  1819            numberOfUes: 4
  1820            pei: pei
  1821            anyUe: true
  1822            accessTypeList:
  1823            - null
  1824            - null
  1825            location:
  1826              eutraLocation:
  1827                geographicalInformation: geographicalInformation
  1828                globalNgenbId:
  1829                  gNbId:
  1830                    bitLength: 22
  1831                    gNBValue: gNBValue
  1832                  plmnId:
  1833                    mnc: mnc
  1834                    mcc: mcc
  1835                  n3IwfId: n3IwfId
  1836                  ngeNbId: ngeNbId
  1837                ageOfLocationInformation: 18471
  1838                tai:
  1839                  tac: tac
  1840                  plmnId:
  1841                    mnc: mnc
  1842                    mcc: mcc
  1843                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1844                geodeticInformation: geodeticInformation
  1845                ecgi:
  1846                  eutraCellId: eutraCellId
  1847                  plmnId:
  1848                    mnc: mnc
  1849                    mcc: mcc
  1850              nrLocation:
  1851                geographicalInformation: geographicalInformation
  1852                globalGnbId:
  1853                  gNbId:
  1854                    bitLength: 22
  1855                    gNBValue: gNBValue
  1856                  plmnId:
  1857                    mnc: mnc
  1858                    mcc: mcc
  1859                  n3IwfId: n3IwfId
  1860                  ngeNbId: ngeNbId
  1861                ageOfLocationInformation: 7543
  1862                ncgi:
  1863                  plmnId:
  1864                    mnc: mnc
  1865                    mcc: mcc
  1866                  nrCellId: nrCellId
  1867                tai:
  1868                  tac: tac
  1869                  plmnId:
  1870                    mnc: mnc
  1871                    mcc: mcc
  1872                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  1873                geodeticInformation: geodeticInformation
  1874              n3gaLocation:
  1875                ueIpv4Addr: 198.51.100.1
  1876                n3gppTai:
  1877                  tac: tac
  1878                  plmnId:
  1879                    mnc: mnc
  1880                    mcc: mcc
  1881                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  1882                n3IwfId: n3IwfId
  1883                portNumber: 0
  1884            state:
  1885              remainDuration: 5
  1886              active: true
  1887              remainReports: 1
  1888            subscriptionId: subscriptionId
  1889            subscribedData:
  1890              sari: sari
  1891              rfspIndex: 9
  1892            commFailure:
  1893              ranReleaseCode:
  1894                value: 0
  1895                group: 0
  1896              nasReleaseCode: nasReleaseCode
  1897          - timezone: timezone
  1898            areaList:
  1899            - presenceInfo:
  1900                ecgiList:
  1901                - eutraCellId: eutraCellId
  1902                  plmnId:
  1903                    mnc: mnc
  1904                    mcc: mcc
  1905                - eutraCellId: eutraCellId
  1906                  plmnId:
  1907                    mnc: mnc
  1908                    mcc: mcc
  1909                globalRanNodeIdList:
  1910                - gNbId:
  1911                    bitLength: 22
  1912                    gNBValue: gNBValue
  1913                  plmnId:
  1914                    mnc: mnc
  1915                    mcc: mcc
  1916                  n3IwfId: n3IwfId
  1917                  ngeNbId: ngeNbId
  1918                - gNbId:
  1919                    bitLength: 22
  1920                    gNBValue: gNBValue
  1921                  plmnId:
  1922                    mnc: mnc
  1923                    mcc: mcc
  1924                  n3IwfId: n3IwfId
  1925                  ngeNbId: ngeNbId
  1926                praId: praId
  1927                trackingAreaList:
  1928                - tac: tac
  1929                  plmnId:
  1930                    mnc: mnc
  1931                    mcc: mcc
  1932                - tac: tac
  1933                  plmnId:
  1934                    mnc: mnc
  1935                    mcc: mcc
  1936                ncgiList:
  1937                - plmnId:
  1938                    mnc: mnc
  1939                    mcc: mcc
  1940                  nrCellId: nrCellId
  1941                - plmnId:
  1942                    mnc: mnc
  1943                    mcc: mcc
  1944                  nrCellId: nrCellId
  1945              ladnInfo:
  1946                ladn: ladn
  1947            - presenceInfo:
  1948                ecgiList:
  1949                - eutraCellId: eutraCellId
  1950                  plmnId:
  1951                    mnc: mnc
  1952                    mcc: mcc
  1953                - eutraCellId: eutraCellId
  1954                  plmnId:
  1955                    mnc: mnc
  1956                    mcc: mcc
  1957                globalRanNodeIdList:
  1958                - gNbId:
  1959                    bitLength: 22
  1960                    gNBValue: gNBValue
  1961                  plmnId:
  1962                    mnc: mnc
  1963                    mcc: mcc
  1964                  n3IwfId: n3IwfId
  1965                  ngeNbId: ngeNbId
  1966                - gNbId:
  1967                    bitLength: 22
  1968                    gNBValue: gNBValue
  1969                  plmnId:
  1970                    mnc: mnc
  1971                    mcc: mcc
  1972                  n3IwfId: n3IwfId
  1973                  ngeNbId: ngeNbId
  1974                praId: praId
  1975                trackingAreaList:
  1976                - tac: tac
  1977                  plmnId:
  1978                    mnc: mnc
  1979                    mcc: mcc
  1980                - tac: tac
  1981                  plmnId:
  1982                    mnc: mnc
  1983                    mcc: mcc
  1984                ncgiList:
  1985                - plmnId:
  1986                    mnc: mnc
  1987                    mcc: mcc
  1988                  nrCellId: nrCellId
  1989                - plmnId:
  1990                    mnc: mnc
  1991                    mcc: mcc
  1992                  nrCellId: nrCellId
  1993              ladnInfo:
  1994                ladn: ladn
  1995            supi: supi
  1996            cmInfoList:
  1997            - {}
  1998            - {}
  1999            rmInfoList:
  2000            - {}
  2001            - {}
  2002            gpsi: gpsi
  2003            timeStamp: 2000-01-23T04:56:07.000+00:00
  2004            numberOfUes: 4
  2005            pei: pei
  2006            anyUe: true
  2007            accessTypeList:
  2008            - null
  2009            - null
  2010            location:
  2011              eutraLocation:
  2012                geographicalInformation: geographicalInformation
  2013                globalNgenbId:
  2014                  gNbId:
  2015                    bitLength: 22
  2016                    gNBValue: gNBValue
  2017                  plmnId:
  2018                    mnc: mnc
  2019                    mcc: mcc
  2020                  n3IwfId: n3IwfId
  2021                  ngeNbId: ngeNbId
  2022                ageOfLocationInformation: 18471
  2023                tai:
  2024                  tac: tac
  2025                  plmnId:
  2026                    mnc: mnc
  2027                    mcc: mcc
  2028                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2029                geodeticInformation: geodeticInformation
  2030                ecgi:
  2031                  eutraCellId: eutraCellId
  2032                  plmnId:
  2033                    mnc: mnc
  2034                    mcc: mcc
  2035              nrLocation:
  2036                geographicalInformation: geographicalInformation
  2037                globalGnbId:
  2038                  gNbId:
  2039                    bitLength: 22
  2040                    gNBValue: gNBValue
  2041                  plmnId:
  2042                    mnc: mnc
  2043                    mcc: mcc
  2044                  n3IwfId: n3IwfId
  2045                  ngeNbId: ngeNbId
  2046                ageOfLocationInformation: 7543
  2047                ncgi:
  2048                  plmnId:
  2049                    mnc: mnc
  2050                    mcc: mcc
  2051                  nrCellId: nrCellId
  2052                tai:
  2053                  tac: tac
  2054                  plmnId:
  2055                    mnc: mnc
  2056                    mcc: mcc
  2057                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2058                geodeticInformation: geodeticInformation
  2059              n3gaLocation:
  2060                ueIpv4Addr: 198.51.100.1
  2061                n3gppTai:
  2062                  tac: tac
  2063                  plmnId:
  2064                    mnc: mnc
  2065                    mcc: mcc
  2066                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2067                n3IwfId: n3IwfId
  2068                portNumber: 0
  2069            state:
  2070              remainDuration: 5
  2071              active: true
  2072              remainReports: 1
  2073            subscriptionId: subscriptionId
  2074            subscribedData:
  2075              sari: sari
  2076              rfspIndex: 9
  2077            commFailure:
  2078              ranReleaseCode:
  2079                value: 0
  2080                group: 0
  2081              nasReleaseCode: nasReleaseCode
  2082          subscription:
  2083            eventNotifyUri: eventNotifyUri
  2084            nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2085            eventList:
  2086            - subscribedDataFilterList:
  2087              - null
  2088              - null
  2089              areaList:
  2090              - presenceInfo:
  2091                  ecgiList:
  2092                  - eutraCellId: eutraCellId
  2093                    plmnId:
  2094                      mnc: mnc
  2095                      mcc: mcc
  2096                  - eutraCellId: eutraCellId
  2097                    plmnId:
  2098                      mnc: mnc
  2099                      mcc: mcc
  2100                  globalRanNodeIdList:
  2101                  - gNbId:
  2102                      bitLength: 22
  2103                      gNBValue: gNBValue
  2104                    plmnId:
  2105                      mnc: mnc
  2106                      mcc: mcc
  2107                    n3IwfId: n3IwfId
  2108                    ngeNbId: ngeNbId
  2109                  - gNbId:
  2110                      bitLength: 22
  2111                      gNBValue: gNBValue
  2112                    plmnId:
  2113                      mnc: mnc
  2114                      mcc: mcc
  2115                    n3IwfId: n3IwfId
  2116                    ngeNbId: ngeNbId
  2117                  praId: praId
  2118                  trackingAreaList:
  2119                  - tac: tac
  2120                    plmnId:
  2121                      mnc: mnc
  2122                      mcc: mcc
  2123                  - tac: tac
  2124                    plmnId:
  2125                      mnc: mnc
  2126                      mcc: mcc
  2127                  ncgiList:
  2128                  - plmnId:
  2129                      mnc: mnc
  2130                      mcc: mcc
  2131                    nrCellId: nrCellId
  2132                  - plmnId:
  2133                      mnc: mnc
  2134                      mcc: mcc
  2135                    nrCellId: nrCellId
  2136                ladnInfo:
  2137                  ladn: ladn
  2138              - presenceInfo:
  2139                  ecgiList:
  2140                  - eutraCellId: eutraCellId
  2141                    plmnId:
  2142                      mnc: mnc
  2143                      mcc: mcc
  2144                  - eutraCellId: eutraCellId
  2145                    plmnId:
  2146                      mnc: mnc
  2147                      mcc: mcc
  2148                  globalRanNodeIdList:
  2149                  - gNbId:
  2150                      bitLength: 22
  2151                      gNBValue: gNBValue
  2152                    plmnId:
  2153                      mnc: mnc
  2154                      mcc: mcc
  2155                    n3IwfId: n3IwfId
  2156                    ngeNbId: ngeNbId
  2157                  - gNbId:
  2158                      bitLength: 22
  2159                      gNBValue: gNBValue
  2160                    plmnId:
  2161                      mnc: mnc
  2162                      mcc: mcc
  2163                    n3IwfId: n3IwfId
  2164                    ngeNbId: ngeNbId
  2165                  praId: praId
  2166                  trackingAreaList:
  2167                  - tac: tac
  2168                    plmnId:
  2169                      mnc: mnc
  2170                      mcc: mcc
  2171                  - tac: tac
  2172                    plmnId:
  2173                      mnc: mnc
  2174                      mcc: mcc
  2175                  ncgiList:
  2176                  - plmnId:
  2177                      mnc: mnc
  2178                      mcc: mcc
  2179                    nrCellId: nrCellId
  2180                  - plmnId:
  2181                      mnc: mnc
  2182                      mcc: mcc
  2183                    nrCellId: nrCellId
  2184                ladnInfo:
  2185                  ladn: ladn
  2186              locationFilterList:
  2187              - null
  2188              - null
  2189              immediateFlag: true
  2190            - subscribedDataFilterList:
  2191              - null
  2192              - null
  2193              areaList:
  2194              - presenceInfo:
  2195                  ecgiList:
  2196                  - eutraCellId: eutraCellId
  2197                    plmnId:
  2198                      mnc: mnc
  2199                      mcc: mcc
  2200                  - eutraCellId: eutraCellId
  2201                    plmnId:
  2202                      mnc: mnc
  2203                      mcc: mcc
  2204                  globalRanNodeIdList:
  2205                  - gNbId:
  2206                      bitLength: 22
  2207                      gNBValue: gNBValue
  2208                    plmnId:
  2209                      mnc: mnc
  2210                      mcc: mcc
  2211                    n3IwfId: n3IwfId
  2212                    ngeNbId: ngeNbId
  2213                  - gNbId:
  2214                      bitLength: 22
  2215                      gNBValue: gNBValue
  2216                    plmnId:
  2217                      mnc: mnc
  2218                      mcc: mcc
  2219                    n3IwfId: n3IwfId
  2220                    ngeNbId: ngeNbId
  2221                  praId: praId
  2222                  trackingAreaList:
  2223                  - tac: tac
  2224                    plmnId:
  2225                      mnc: mnc
  2226                      mcc: mcc
  2227                  - tac: tac
  2228                    plmnId:
  2229                      mnc: mnc
  2230                      mcc: mcc
  2231                  ncgiList:
  2232                  - plmnId:
  2233                      mnc: mnc
  2234                      mcc: mcc
  2235                    nrCellId: nrCellId
  2236                  - plmnId:
  2237                      mnc: mnc
  2238                      mcc: mcc
  2239                    nrCellId: nrCellId
  2240                ladnInfo:
  2241                  ladn: ladn
  2242              - presenceInfo:
  2243                  ecgiList:
  2244                  - eutraCellId: eutraCellId
  2245                    plmnId:
  2246                      mnc: mnc
  2247                      mcc: mcc
  2248                  - eutraCellId: eutraCellId
  2249                    plmnId:
  2250                      mnc: mnc
  2251                      mcc: mcc
  2252                  globalRanNodeIdList:
  2253                  - gNbId:
  2254                      bitLength: 22
  2255                      gNBValue: gNBValue
  2256                    plmnId:
  2257                      mnc: mnc
  2258                      mcc: mcc
  2259                    n3IwfId: n3IwfId
  2260                    ngeNbId: ngeNbId
  2261                  - gNbId:
  2262                      bitLength: 22
  2263                      gNBValue: gNBValue
  2264                    plmnId:
  2265                      mnc: mnc
  2266                      mcc: mcc
  2267                    n3IwfId: n3IwfId
  2268                    ngeNbId: ngeNbId
  2269                  praId: praId
  2270                  trackingAreaList:
  2271                  - tac: tac
  2272                    plmnId:
  2273                      mnc: mnc
  2274                      mcc: mcc
  2275                  - tac: tac
  2276                    plmnId:
  2277                      mnc: mnc
  2278                      mcc: mcc
  2279                  ncgiList:
  2280                  - plmnId:
  2281                      mnc: mnc
  2282                      mcc: mcc
  2283                    nrCellId: nrCellId
  2284                  - plmnId:
  2285                      mnc: mnc
  2286                      mcc: mcc
  2287                    nrCellId: nrCellId
  2288                ladnInfo:
  2289                  ladn: ladn
  2290              locationFilterList:
  2291              - null
  2292              - null
  2293              immediateFlag: true
  2294            subsChangeNotifyUri: subsChangeNotifyUri
  2295            pei: pei
  2296            anyUE: true
  2297            groupId: groupId
  2298            options:
  2299              expiry: 2000-01-23T04:56:07.000+00:00
  2300              maxReports: 6
  2301            supi: supi
  2302            notifyCorrelationId: notifyCorrelationId
  2303            subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  2304            gpsi: gpsi
  2305          subscriptionId: subscriptionId
  2306        properties:
  2307          subscription:
  2308            $ref: '#/components/schemas/AmfEventSubscription'
  2309          subscriptionId:
  2310            type: string
  2311          reportList:
  2312            items:
  2313              $ref: '#/components/schemas/AmfEventReport'
  2314            minItems: 1
  2315            type: array
  2316          supportedFeatures:
  2317            pattern: ^[A-Fa-f0-9]*$
  2318            type: string
  2319        required:
  2320        - subscription
  2321        - subscriptionId
  2322        type: object
  2323      AmfUpdateEventSubscriptionItem:
  2324        items:
  2325          $ref: '#/components/schemas/AmfUpdateEventSubscriptionItem_inner'
  2326        minItems: 1
  2327        type: array
  2328      AmfUpdateEventOptionItem:
  2329        properties:
  2330          op:
  2331            enum:
  2332            - replace
  2333            type: string
  2334          path:
  2335            pattern: \/options\/expiry$
  2336            type: string
  2337          value:
  2338            format: date-time
  2339            type: string
  2340        required:
  2341        - op
  2342        - path
  2343        - value
  2344        type: object
  2345      AmfUpdatedEventSubscription:
  2346        example:
  2347          subscription:
  2348            eventNotifyUri: eventNotifyUri
  2349            nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2350            eventList:
  2351            - subscribedDataFilterList:
  2352              - null
  2353              - null
  2354              areaList:
  2355              - presenceInfo:
  2356                  ecgiList:
  2357                  - eutraCellId: eutraCellId
  2358                    plmnId:
  2359                      mnc: mnc
  2360                      mcc: mcc
  2361                  - eutraCellId: eutraCellId
  2362                    plmnId:
  2363                      mnc: mnc
  2364                      mcc: mcc
  2365                  globalRanNodeIdList:
  2366                  - gNbId:
  2367                      bitLength: 22
  2368                      gNBValue: gNBValue
  2369                    plmnId:
  2370                      mnc: mnc
  2371                      mcc: mcc
  2372                    n3IwfId: n3IwfId
  2373                    ngeNbId: ngeNbId
  2374                  - gNbId:
  2375                      bitLength: 22
  2376                      gNBValue: gNBValue
  2377                    plmnId:
  2378                      mnc: mnc
  2379                      mcc: mcc
  2380                    n3IwfId: n3IwfId
  2381                    ngeNbId: ngeNbId
  2382                  praId: praId
  2383                  trackingAreaList:
  2384                  - tac: tac
  2385                    plmnId:
  2386                      mnc: mnc
  2387                      mcc: mcc
  2388                  - tac: tac
  2389                    plmnId:
  2390                      mnc: mnc
  2391                      mcc: mcc
  2392                  ncgiList:
  2393                  - plmnId:
  2394                      mnc: mnc
  2395                      mcc: mcc
  2396                    nrCellId: nrCellId
  2397                  - plmnId:
  2398                      mnc: mnc
  2399                      mcc: mcc
  2400                    nrCellId: nrCellId
  2401                ladnInfo:
  2402                  ladn: ladn
  2403              - presenceInfo:
  2404                  ecgiList:
  2405                  - eutraCellId: eutraCellId
  2406                    plmnId:
  2407                      mnc: mnc
  2408                      mcc: mcc
  2409                  - eutraCellId: eutraCellId
  2410                    plmnId:
  2411                      mnc: mnc
  2412                      mcc: mcc
  2413                  globalRanNodeIdList:
  2414                  - gNbId:
  2415                      bitLength: 22
  2416                      gNBValue: gNBValue
  2417                    plmnId:
  2418                      mnc: mnc
  2419                      mcc: mcc
  2420                    n3IwfId: n3IwfId
  2421                    ngeNbId: ngeNbId
  2422                  - gNbId:
  2423                      bitLength: 22
  2424                      gNBValue: gNBValue
  2425                    plmnId:
  2426                      mnc: mnc
  2427                      mcc: mcc
  2428                    n3IwfId: n3IwfId
  2429                    ngeNbId: ngeNbId
  2430                  praId: praId
  2431                  trackingAreaList:
  2432                  - tac: tac
  2433                    plmnId:
  2434                      mnc: mnc
  2435                      mcc: mcc
  2436                  - tac: tac
  2437                    plmnId:
  2438                      mnc: mnc
  2439                      mcc: mcc
  2440                  ncgiList:
  2441                  - plmnId:
  2442                      mnc: mnc
  2443                      mcc: mcc
  2444                    nrCellId: nrCellId
  2445                  - plmnId:
  2446                      mnc: mnc
  2447                      mcc: mcc
  2448                    nrCellId: nrCellId
  2449                ladnInfo:
  2450                  ladn: ladn
  2451              locationFilterList:
  2452              - null
  2453              - null
  2454              immediateFlag: true
  2455            - subscribedDataFilterList:
  2456              - null
  2457              - null
  2458              areaList:
  2459              - presenceInfo:
  2460                  ecgiList:
  2461                  - eutraCellId: eutraCellId
  2462                    plmnId:
  2463                      mnc: mnc
  2464                      mcc: mcc
  2465                  - eutraCellId: eutraCellId
  2466                    plmnId:
  2467                      mnc: mnc
  2468                      mcc: mcc
  2469                  globalRanNodeIdList:
  2470                  - gNbId:
  2471                      bitLength: 22
  2472                      gNBValue: gNBValue
  2473                    plmnId:
  2474                      mnc: mnc
  2475                      mcc: mcc
  2476                    n3IwfId: n3IwfId
  2477                    ngeNbId: ngeNbId
  2478                  - gNbId:
  2479                      bitLength: 22
  2480                      gNBValue: gNBValue
  2481                    plmnId:
  2482                      mnc: mnc
  2483                      mcc: mcc
  2484                    n3IwfId: n3IwfId
  2485                    ngeNbId: ngeNbId
  2486                  praId: praId
  2487                  trackingAreaList:
  2488                  - tac: tac
  2489                    plmnId:
  2490                      mnc: mnc
  2491                      mcc: mcc
  2492                  - tac: tac
  2493                    plmnId:
  2494                      mnc: mnc
  2495                      mcc: mcc
  2496                  ncgiList:
  2497                  - plmnId:
  2498                      mnc: mnc
  2499                      mcc: mcc
  2500                    nrCellId: nrCellId
  2501                  - plmnId:
  2502                      mnc: mnc
  2503                      mcc: mcc
  2504                    nrCellId: nrCellId
  2505                ladnInfo:
  2506                  ladn: ladn
  2507              - presenceInfo:
  2508                  ecgiList:
  2509                  - eutraCellId: eutraCellId
  2510                    plmnId:
  2511                      mnc: mnc
  2512                      mcc: mcc
  2513                  - eutraCellId: eutraCellId
  2514                    plmnId:
  2515                      mnc: mnc
  2516                      mcc: mcc
  2517                  globalRanNodeIdList:
  2518                  - gNbId:
  2519                      bitLength: 22
  2520                      gNBValue: gNBValue
  2521                    plmnId:
  2522                      mnc: mnc
  2523                      mcc: mcc
  2524                    n3IwfId: n3IwfId
  2525                    ngeNbId: ngeNbId
  2526                  - gNbId:
  2527                      bitLength: 22
  2528                      gNBValue: gNBValue
  2529                    plmnId:
  2530                      mnc: mnc
  2531                      mcc: mcc
  2532                    n3IwfId: n3IwfId
  2533                    ngeNbId: ngeNbId
  2534                  praId: praId
  2535                  trackingAreaList:
  2536                  - tac: tac
  2537                    plmnId:
  2538                      mnc: mnc
  2539                      mcc: mcc
  2540                  - tac: tac
  2541                    plmnId:
  2542                      mnc: mnc
  2543                      mcc: mcc
  2544                  ncgiList:
  2545                  - plmnId:
  2546                      mnc: mnc
  2547                      mcc: mcc
  2548                    nrCellId: nrCellId
  2549                  - plmnId:
  2550                      mnc: mnc
  2551                      mcc: mcc
  2552                    nrCellId: nrCellId
  2553                ladnInfo:
  2554                  ladn: ladn
  2555              locationFilterList:
  2556              - null
  2557              - null
  2558              immediateFlag: true
  2559            subsChangeNotifyUri: subsChangeNotifyUri
  2560            pei: pei
  2561            anyUE: true
  2562            groupId: groupId
  2563            options:
  2564              expiry: 2000-01-23T04:56:07.000+00:00
  2565              maxReports: 6
  2566            supi: supi
  2567            notifyCorrelationId: notifyCorrelationId
  2568            subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  2569            gpsi: gpsi
  2570        properties:
  2571          subscription:
  2572            $ref: '#/components/schemas/AmfEventSubscription'
  2573        required:
  2574        - subscription
  2575        type: object
  2576      AmfEventArea:
  2577        example:
  2578          presenceInfo:
  2579            ecgiList:
  2580            - eutraCellId: eutraCellId
  2581              plmnId:
  2582                mnc: mnc
  2583                mcc: mcc
  2584            - eutraCellId: eutraCellId
  2585              plmnId:
  2586                mnc: mnc
  2587                mcc: mcc
  2588            globalRanNodeIdList:
  2589            - gNbId:
  2590                bitLength: 22
  2591                gNBValue: gNBValue
  2592              plmnId:
  2593                mnc: mnc
  2594                mcc: mcc
  2595              n3IwfId: n3IwfId
  2596              ngeNbId: ngeNbId
  2597            - gNbId:
  2598                bitLength: 22
  2599                gNBValue: gNBValue
  2600              plmnId:
  2601                mnc: mnc
  2602                mcc: mcc
  2603              n3IwfId: n3IwfId
  2604              ngeNbId: ngeNbId
  2605            praId: praId
  2606            trackingAreaList:
  2607            - tac: tac
  2608              plmnId:
  2609                mnc: mnc
  2610                mcc: mcc
  2611            - tac: tac
  2612              plmnId:
  2613                mnc: mnc
  2614                mcc: mcc
  2615            ncgiList:
  2616            - plmnId:
  2617                mnc: mnc
  2618                mcc: mcc
  2619              nrCellId: nrCellId
  2620            - plmnId:
  2621                mnc: mnc
  2622                mcc: mcc
  2623              nrCellId: nrCellId
  2624          ladnInfo:
  2625            ladn: ladn
  2626        properties:
  2627          presenceInfo:
  2628            $ref: '#/components/schemas/PresenceInfo'
  2629          ladnInfo:
  2630            $ref: '#/components/schemas/LadnInfo'
  2631        type: object
  2632      LadnInfo:
  2633        example:
  2634          ladn: ladn
  2635        properties:
  2636          ladn:
  2637            type: string
  2638          presence:
  2639            $ref: '#/components/schemas/PresenceState'
  2640        required:
  2641        - ladn
  2642        type: object
  2643      5gGuti:
  2644        type: string
  2645      Sari:
  2646        format: byte
  2647        type: string
  2648      RfspIndex:
  2649        format: int32
  2650        type: integer
  2651      AmfEventType:
  2652        enum:
  2653        - LOCATION_REPORT
  2654        - PRESENCE_IN_AOI_REPORT
  2655        - TIMEZONE_REPORT
  2656        - ACCESS_TYPE_REPORT
  2657        - REGISTRATION_STATE_REPORT
  2658        - CONNECTIVITY_STATE_REPORT
  2659        - REACHABILITY_REPORT
  2660        - SUBSCRIBED_DATA_REPORT
  2661        - COMMUNICATION_FAILURE_REPORT
  2662        - UES_IN_AREA_REPORT
  2663        - SUBSCRIPTION_ID_CHANGE
  2664        - SUBSCRIPTION_ID_ADDITION
  2665        type: string
  2666      AmfEventTrigger:
  2667        enum:
  2668        - ONE_TIME
  2669        - CONTINUOUS
  2670        type: string
  2671      LocationFilter:
  2672        enum:
  2673        - TAI
  2674        - CELL_ID
  2675        - N3IWF
  2676        - UE_IP
  2677        - UDP_PORT
  2678        type: string
  2679      SubscribedDataFilter:
  2680        enum:
  2681        - SARI
  2682        - RFSP_INDEX
  2683        type: string
  2684      UeReachability:
  2685        enum:
  2686        - UNREACHABLE
  2687        - REACHABLE
  2688        - REGULATORY_ONLY
  2689        type: string
  2690      RmState:
  2691        enum:
  2692        - REGISTERED
  2693        - DEREGISTERED
  2694        type: string
  2695      CmState:
  2696        enum:
  2697        - IDLE
  2698        - CONNECTED
  2699        type: string
  2700      ProblemDetails:
  2701        properties:
  2702          type:
  2703            type: string
  2704          title:
  2705            type: string
  2706          status:
  2707            format: int32
  2708            type: integer
  2709          detail:
  2710            type: string
  2711          instance:
  2712            type: string
  2713          cause:
  2714            type: string
  2715          invalidParams:
  2716            items:
  2717              $ref: '#/components/schemas/InvalidParam'
  2718            minItems: 1
  2719            type: array
  2720        type: object
  2721      Uri:
  2722        type: string
  2723      InvalidParam:
  2724        properties:
  2725          param:
  2726            type: string
  2727          reason:
  2728            type: string
  2729        required:
  2730        - param
  2731        type: object
  2732      NfInstanceId:
  2733        format: uuid
  2734        type: string
  2735      Supi:
  2736        pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  2737        type: string
  2738      GroupId:
  2739        pattern: ^[A-Fa-f0-9]{8}-[0-9]{3}-[0-9]{2,3}-([A-Fa-f0-9][A-Fa-f0-9]){1,10}$
  2740        type: string
  2741      Gpsi:
  2742        pattern: ^(msisdn-[0-9]{5,15}|extid-[^@]+@[^@]+|.+)$
  2743        type: string
  2744      Pei:
  2745        pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
  2746        type: string
  2747      DateTime:
  2748        format: date-time
  2749        type: string
  2750      UserLocation:
  2751        example:
  2752          eutraLocation:
  2753            geographicalInformation: geographicalInformation
  2754            globalNgenbId:
  2755              gNbId:
  2756                bitLength: 22
  2757                gNBValue: gNBValue
  2758              plmnId:
  2759                mnc: mnc
  2760                mcc: mcc
  2761              n3IwfId: n3IwfId
  2762              ngeNbId: ngeNbId
  2763            ageOfLocationInformation: 18471
  2764            tai:
  2765              tac: tac
  2766              plmnId:
  2767                mnc: mnc
  2768                mcc: mcc
  2769            ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2770            geodeticInformation: geodeticInformation
  2771            ecgi:
  2772              eutraCellId: eutraCellId
  2773              plmnId:
  2774                mnc: mnc
  2775                mcc: mcc
  2776          nrLocation:
  2777            geographicalInformation: geographicalInformation
  2778            globalGnbId:
  2779              gNbId:
  2780                bitLength: 22
  2781                gNBValue: gNBValue
  2782              plmnId:
  2783                mnc: mnc
  2784                mcc: mcc
  2785              n3IwfId: n3IwfId
  2786              ngeNbId: ngeNbId
  2787            ageOfLocationInformation: 7543
  2788            ncgi:
  2789              plmnId:
  2790                mnc: mnc
  2791                mcc: mcc
  2792              nrCellId: nrCellId
  2793            tai:
  2794              tac: tac
  2795              plmnId:
  2796                mnc: mnc
  2797                mcc: mcc
  2798            ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2799            geodeticInformation: geodeticInformation
  2800          n3gaLocation:
  2801            ueIpv4Addr: 198.51.100.1
  2802            n3gppTai:
  2803              tac: tac
  2804              plmnId:
  2805                mnc: mnc
  2806                mcc: mcc
  2807            ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2808            n3IwfId: n3IwfId
  2809            portNumber: 0
  2810        properties:
  2811          eutraLocation:
  2812            $ref: '#/components/schemas/EutraLocation'
  2813          nrLocation:
  2814            $ref: '#/components/schemas/NrLocation'
  2815          n3gaLocation:
  2816            $ref: '#/components/schemas/N3gaLocation'
  2817        type: object
  2818      EutraLocation:
  2819        example:
  2820          geographicalInformation: geographicalInformation
  2821          globalNgenbId:
  2822            gNbId:
  2823              bitLength: 22
  2824              gNBValue: gNBValue
  2825            plmnId:
  2826              mnc: mnc
  2827              mcc: mcc
  2828            n3IwfId: n3IwfId
  2829            ngeNbId: ngeNbId
  2830          ageOfLocationInformation: 18471
  2831          tai:
  2832            tac: tac
  2833            plmnId:
  2834              mnc: mnc
  2835              mcc: mcc
  2836          ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2837          geodeticInformation: geodeticInformation
  2838          ecgi:
  2839            eutraCellId: eutraCellId
  2840            plmnId:
  2841              mnc: mnc
  2842              mcc: mcc
  2843        properties:
  2844          tai:
  2845            $ref: '#/components/schemas/Tai'
  2846          ecgi:
  2847            $ref: '#/components/schemas/Ecgi'
  2848          ageOfLocationInformation:
  2849            format: int32
  2850            maximum: 32767
  2851            minimum: 0
  2852            type: integer
  2853          ueLocationTimestamp:
  2854            format: date-time
  2855            type: string
  2856          geographicalInformation:
  2857            pattern: ^[0-9A-F]{16}$
  2858            type: string
  2859          geodeticInformation:
  2860            pattern: ^[0-9A-F]{20}$
  2861            type: string
  2862          globalNgenbId:
  2863            $ref: '#/components/schemas/GlobalRanNodeId'
  2864        required:
  2865        - ecgi
  2866        - tai
  2867        type: object
  2868      Tai:
  2869        example:
  2870          tac: tac
  2871          plmnId:
  2872            mnc: mnc
  2873            mcc: mcc
  2874        properties:
  2875          plmnId:
  2876            $ref: '#/components/schemas/PlmnId'
  2877          tac:
  2878            pattern: (^[A-Fa-f0-9]{4}$)|(^[A-Fa-f0-9]{6}$)
  2879            type: string
  2880        required:
  2881        - plmnId
  2882        - tac
  2883        type: object
  2884      PlmnId:
  2885        example:
  2886          mnc: mnc
  2887          mcc: mcc
  2888        properties:
  2889          mcc:
  2890            pattern: ^\d{3}$
  2891            type: string
  2892          mnc:
  2893            pattern: ^\d{2,3}$
  2894            type: string
  2895        required:
  2896        - mcc
  2897        - mnc
  2898        type: object
  2899      Mcc:
  2900        pattern: ^\d{3}$
  2901        type: string
  2902      Mnc:
  2903        pattern: ^\d{2,3}$
  2904        type: string
  2905      Tac:
  2906        pattern: (^[A-Fa-f0-9]{4}$)|(^[A-Fa-f0-9]{6}$)
  2907        type: string
  2908      Ecgi:
  2909        example:
  2910          eutraCellId: eutraCellId
  2911          plmnId:
  2912            mnc: mnc
  2913            mcc: mcc
  2914        properties:
  2915          plmnId:
  2916            $ref: '#/components/schemas/PlmnId'
  2917          eutraCellId:
  2918            pattern: ^[A-Fa-f0-9]{7}$
  2919            type: string
  2920        required:
  2921        - eutraCellId
  2922        - plmnId
  2923        type: object
  2924      EutraCellId:
  2925        pattern: ^[A-Fa-f0-9]{7}$
  2926        type: string
  2927      GlobalRanNodeId:
  2928        example:
  2929          gNbId:
  2930            bitLength: 22
  2931            gNBValue: gNBValue
  2932          plmnId:
  2933            mnc: mnc
  2934            mcc: mcc
  2935          n3IwfId: n3IwfId
  2936          ngeNbId: ngeNbId
  2937        oneOf:
  2938        - required:
  2939          - n3IwfId
  2940        - required:
  2941          - gNbId
  2942        - required:
  2943          - ngeNbId
  2944        properties:
  2945          plmnId:
  2946            $ref: '#/components/schemas/PlmnId'
  2947          n3IwfId:
  2948            type: string
  2949          gNbId:
  2950            $ref: '#/components/schemas/GNbId'
  2951          ngeNbId:
  2952            pattern: ^(MacroNGeNB-[A-Fa-f0-9]{5}|LMacroNGeNB-[A-Fa-f0-9]{6}|SMacroNGeNB-[A-Fa-f0-9]{5})$
  2953            type: string
  2954        required:
  2955        - plmnId
  2956        type: object
  2957      N3IwfId:
  2958        type: string
  2959      GNbId:
  2960        example:
  2961          bitLength: 22
  2962          gNBValue: gNBValue
  2963        properties:
  2964          bitLength:
  2965            format: int32
  2966            maximum: 32
  2967            minimum: 22
  2968            type: integer
  2969          gNBValue:
  2970            pattern: ^[A-Fa-f0-9]{6,8}$
  2971            type: string
  2972        required:
  2973        - bitLength
  2974        - gNBValue
  2975        type: object
  2976      NgeNbId:
  2977        pattern: ^(MacroNGeNB-[A-Fa-f0-9]{5}|LMacroNGeNB-[A-Fa-f0-9]{6}|SMacroNGeNB-[A-Fa-f0-9]{5})$
  2978        type: string
  2979      NrLocation:
  2980        example:
  2981          geographicalInformation: geographicalInformation
  2982          globalGnbId:
  2983            gNbId:
  2984              bitLength: 22
  2985              gNBValue: gNBValue
  2986            plmnId:
  2987              mnc: mnc
  2988              mcc: mcc
  2989            n3IwfId: n3IwfId
  2990            ngeNbId: ngeNbId
  2991          ageOfLocationInformation: 7543
  2992          ncgi:
  2993            plmnId:
  2994              mnc: mnc
  2995              mcc: mcc
  2996            nrCellId: nrCellId
  2997          tai:
  2998            tac: tac
  2999            plmnId:
  3000              mnc: mnc
  3001              mcc: mcc
  3002          ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3003          geodeticInformation: geodeticInformation
  3004        properties:
  3005          tai:
  3006            $ref: '#/components/schemas/Tai'
  3007          ncgi:
  3008            $ref: '#/components/schemas/Ncgi'
  3009          ageOfLocationInformation:
  3010            format: int32
  3011            maximum: 32767
  3012            minimum: 0
  3013            type: integer
  3014          ueLocationTimestamp:
  3015            format: date-time
  3016            type: string
  3017          geographicalInformation:
  3018            pattern: ^[0-9A-F]{16}$
  3019            type: string
  3020          geodeticInformation:
  3021            pattern: ^[0-9A-F]{20}$
  3022            type: string
  3023          globalGnbId:
  3024            $ref: '#/components/schemas/GlobalRanNodeId'
  3025        required:
  3026        - ncgi
  3027        - tai
  3028        type: object
  3029      Ncgi:
  3030        example:
  3031          plmnId:
  3032            mnc: mnc
  3033            mcc: mcc
  3034          nrCellId: nrCellId
  3035        properties:
  3036          plmnId:
  3037            $ref: '#/components/schemas/PlmnId'
  3038          nrCellId:
  3039            pattern: ^[A-Fa-f0-9]{9}$
  3040            type: string
  3041        required:
  3042        - nrCellId
  3043        - plmnId
  3044        type: object
  3045      NrCellId:
  3046        pattern: ^[A-Fa-f0-9]{9}$
  3047        type: string
  3048      N3gaLocation:
  3049        example:
  3050          ueIpv4Addr: 198.51.100.1
  3051          n3gppTai:
  3052            tac: tac
  3053            plmnId:
  3054              mnc: mnc
  3055              mcc: mcc
  3056          ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3057          n3IwfId: n3IwfId
  3058          portNumber: 0
  3059        properties:
  3060          n3gppTai:
  3061            $ref: '#/components/schemas/Tai'
  3062          n3IwfId:
  3063            pattern: ^[A-Fa-f0-9]+$
  3064            type: string
  3065          ueIpv4Addr:
  3066            example: 198.51.100.1
  3067            pattern: ^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$
  3068            type: string
  3069          ueIpv6Addr:
  3070            $ref: '#/components/schemas/Ipv6Addr'
  3071          portNumber:
  3072            format: int32
  3073            minimum: 0
  3074            type: integer
  3075        type: object
  3076      Ipv4Addr:
  3077        example: 198.51.100.1
  3078        pattern: ^(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$
  3079        type: string
  3080      Ipv6Addr:
  3081        allOf:
  3082        - pattern: ^((:|(0?|([1-9a-f][0-9a-f]{0,3}))):)((0?|([1-9a-f][0-9a-f]{0,3})):){0,6}(:|(0?|([1-9a-f][0-9a-f]{0,3})))$
  3083        - pattern: ^((([^:]+:){7}([^:]+))|((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?))$
  3084        example: 2001:db8:85a3::8a2e:370:7334
  3085        type: string
  3086      Uinteger:
  3087        format: int32
  3088        minimum: 0
  3089        type: integer
  3090      TimeZone:
  3091        type: string
  3092      AccessType:
  3093        enum:
  3094        - 3GPP_ACCESS
  3095        - NON_3GPP_ACCESS
  3096        type: string
  3097      DurationSec:
  3098        format: int32
  3099        type: integer
  3100      NgApCause:
  3101        example:
  3102          value: 0
  3103          group: 0
  3104        properties:
  3105          group:
  3106            format: int32
  3107            minimum: 0
  3108            type: integer
  3109          value:
  3110            format: int32
  3111            minimum: 0
  3112            type: integer
  3113        required:
  3114        - group
  3115        - value
  3116        type: object
  3117      SupportedFeatures:
  3118        pattern: ^[A-Fa-f0-9]*$
  3119        type: string
  3120      PresenceInfo:
  3121        example:
  3122          ecgiList:
  3123          - eutraCellId: eutraCellId
  3124            plmnId:
  3125              mnc: mnc
  3126              mcc: mcc
  3127          - eutraCellId: eutraCellId
  3128            plmnId:
  3129              mnc: mnc
  3130              mcc: mcc
  3131          globalRanNodeIdList:
  3132          - gNbId:
  3133              bitLength: 22
  3134              gNBValue: gNBValue
  3135            plmnId:
  3136              mnc: mnc
  3137              mcc: mcc
  3138            n3IwfId: n3IwfId
  3139            ngeNbId: ngeNbId
  3140          - gNbId:
  3141              bitLength: 22
  3142              gNBValue: gNBValue
  3143            plmnId:
  3144              mnc: mnc
  3145              mcc: mcc
  3146            n3IwfId: n3IwfId
  3147            ngeNbId: ngeNbId
  3148          praId: praId
  3149          trackingAreaList:
  3150          - tac: tac
  3151            plmnId:
  3152              mnc: mnc
  3153              mcc: mcc
  3154          - tac: tac
  3155            plmnId:
  3156              mnc: mnc
  3157              mcc: mcc
  3158          ncgiList:
  3159          - plmnId:
  3160              mnc: mnc
  3161              mcc: mcc
  3162            nrCellId: nrCellId
  3163          - plmnId:
  3164              mnc: mnc
  3165              mcc: mcc
  3166            nrCellId: nrCellId
  3167        properties:
  3168          praId:
  3169            type: string
  3170          presenceState:
  3171            $ref: '#/components/schemas/PresenceState'
  3172          trackingAreaList:
  3173            items:
  3174              $ref: '#/components/schemas/Tai'
  3175            minItems: 1
  3176            type: array
  3177          ecgiList:
  3178            items:
  3179              $ref: '#/components/schemas/Ecgi'
  3180            minItems: 1
  3181            type: array
  3182          ncgiList:
  3183            items:
  3184              $ref: '#/components/schemas/Ncgi'
  3185            minItems: 1
  3186            type: array
  3187          globalRanNodeIdList:
  3188            items:
  3189              $ref: '#/components/schemas/GlobalRanNodeId'
  3190            minItems: 1
  3191            type: array
  3192        type: object
  3193      PresenceState:
  3194        enum:
  3195        - IN_AREA
  3196        - OUT_OF_AREA
  3197        - UNKNOWN
  3198        - INACTIVE
  3199        type: string
  3200      Bytes:
  3201        format: byte
  3202        type: string
  3203      ModifySubscription_request:
  3204        oneOf:
  3205        - $ref: '#/components/schemas/AmfUpdateEventSubscriptionItem'
  3206        - $ref: '#/components/schemas/AmfUpdateEventOptionItem'
  3207      AmfUpdateEventSubscriptionItem_inner:
  3208        properties:
  3209          op:
  3210            enum:
  3211            - add
  3212            - remove
  3213            - replace
  3214            type: string
  3215          path:
  3216            pattern: \/eventList\/[0-]$|\/eventList\/[1-9][0-9]*$
  3217            type: string
  3218          value:
  3219            $ref: '#/components/schemas/AmfEvent'
  3220        required:
  3221        - op
  3222        - path
  3223        type: object
  3224    securitySchemes:
  3225      oAuth2ClientCredentials:
  3226        flows:
  3227          clientCredentials:
  3228            scopes:
  3229              namf-evts: Access to the Namf_EventExposure API
  3230            tokenUrl: '{nrfApiRoot}/oauth2/token'
  3231        type: oauth2