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

     1  openapi: 3.0.0
     2  info:
     3    description: AMF Communication Service
     4    title: Namf_Communication
     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-comm/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-comm
    19  paths:
    20    /ue-contexts/{ueContextId}:
    21      put:
    22        operationId: CreateUEContext
    23        parameters:
    24        - description: UE Context Identifier
    25          explode: false
    26          in: path
    27          name: ueContextId
    28          required: true
    29          schema:
    30            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
    31            type: string
    32          style: simple
    33        requestBody:
    34          content:
    35            multipart/related:
    36              encoding:
    37                jsonData:
    38                  contentType: application/json
    39                  style: form
    40                binaryDataN1Message:
    41                  contentType: application/vnd.3gpp.5gnas
    42                  headers:
    43                    Content-Id:
    44                      explode: false
    45                      schema:
    46                        type: string
    47                      style: simple
    48                  style: form
    49                binaryDataN2Information:
    50                  contentType: application/vnd.3gpp.ngap
    51                  headers:
    52                    Content-Id:
    53                      explode: false
    54                      schema:
    55                        type: string
    56                      style: simple
    57                  style: form
    58                binaryDataN2InformationExt1:
    59                  contentType: application/vnd.3gpp.ngap
    60                  headers:
    61                    Content-Id:
    62                      explode: false
    63                      schema:
    64                        type: string
    65                      style: simple
    66                  style: form
    67              schema:
    68                $ref: '#/components/schemas/CreateUEContext_requestBody'
    69          required: true
    70        responses:
    71          201:
    72            content:
    73              application/json:
    74                schema:
    75                  $ref: '#/components/schemas/UeContextCreatedData'
    76              multipart/related:
    77                encoding:
    78                  jsonData:
    79                    contentType: application/json
    80                    style: form
    81                  binaryDataN1Message:
    82                    contentType: application/vnd.3gpp.5gnas
    83                    headers:
    84                      Content-Id:
    85                        explode: false
    86                        schema:
    87                          type: string
    88                        style: simple
    89                    style: form
    90                  binaryDataN2Information:
    91                    contentType: application/vnd.3gpp.ngap
    92                    headers:
    93                      Content-Id:
    94                        explode: false
    95                        schema:
    96                          type: string
    97                        style: simple
    98                    style: form
    99                schema:
   100                  $ref: '#/components/schemas/CreateUEContext_response_201'
   101            description: UE context successfully created.
   102            headers:
   103              Location:
   104                description: 'Contains the URI of the newly created resource, according
   105                  to the structure: {apiRoot}/namf-comm/v1/ue-contexts/{ueContextId}'
   106                explode: false
   107                required: true
   108                schema:
   109                  type: string
   110                style: simple
   111          400:
   112            content:
   113              application/json:
   114                schema:
   115                  $ref: '#/components/schemas/UeContextCreateError'
   116            description: Bad Request
   117          403:
   118            content:
   119              application/json:
   120                schema:
   121                  $ref: '#/components/schemas/UeContextCreateError'
   122            description: Forbidden
   123          411:
   124            content:
   125              application/problem+json:
   126                schema:
   127                  $ref: '#/components/schemas/ProblemDetails'
   128            description: Length Required
   129          413:
   130            content:
   131              application/problem+json:
   132                schema:
   133                  $ref: '#/components/schemas/ProblemDetails'
   134            description: Payload Too Large
   135          415:
   136            content:
   137              application/problem+json:
   138                schema:
   139                  $ref: '#/components/schemas/ProblemDetails'
   140            description: Unsupported Media Type
   141          429:
   142            content:
   143              application/problem+json:
   144                schema:
   145                  $ref: '#/components/schemas/ProblemDetails'
   146            description: Too Many Requests
   147          500:
   148            content:
   149              application/json:
   150                schema:
   151                  $ref: '#/components/schemas/UeContextCreateError'
   152            description: Internal Server Error
   153          503:
   154            content:
   155              application/problem+json:
   156                schema:
   157                  $ref: '#/components/schemas/ProblemDetails'
   158            description: Service Unavailable
   159          default:
   160            description: Unexpected error
   161        summary: Namf_Communication CreateUEContext service Operation
   162        tags:
   163        - Individual ueContext (Document)
   164    /ue-contexts/{ueContextId}/release:
   165      post:
   166        operationId: ReleaseUEContext
   167        parameters:
   168        - description: UE Context Identifier
   169          explode: false
   170          in: path
   171          name: ueContextId
   172          required: true
   173          schema:
   174            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   175            type: string
   176          style: simple
   177        requestBody:
   178          content:
   179            application/json:
   180              schema:
   181                $ref: '#/components/schemas/UEContextRelease'
   182          required: true
   183        responses:
   184          204:
   185            description: UE Context successfully released
   186          400:
   187            content:
   188              application/problem+json:
   189                schema:
   190                  $ref: '#/components/schemas/ProblemDetails'
   191            description: Bad request
   192          403:
   193            content:
   194              application/problem+json:
   195                schema:
   196                  $ref: '#/components/schemas/ProblemDetails'
   197            description: Forbidden
   198          404:
   199            content:
   200              application/problem+json:
   201                schema:
   202                  $ref: '#/components/schemas/ProblemDetails'
   203            description: Not Found
   204          411:
   205            content:
   206              application/problem+json:
   207                schema:
   208                  $ref: '#/components/schemas/ProblemDetails'
   209            description: Length Required
   210          413:
   211            content:
   212              application/problem+json:
   213                schema:
   214                  $ref: '#/components/schemas/ProblemDetails'
   215            description: Payload Too Large
   216          415:
   217            content:
   218              application/problem+json:
   219                schema:
   220                  $ref: '#/components/schemas/ProblemDetails'
   221            description: Unsupported Media Type
   222          429:
   223            content:
   224              application/problem+json:
   225                schema:
   226                  $ref: '#/components/schemas/ProblemDetails'
   227            description: Too Many Requests
   228          500:
   229            content:
   230              application/problem+json:
   231                schema:
   232                  $ref: '#/components/schemas/ProblemDetails'
   233            description: Internal Server Error
   234          503:
   235            content:
   236              application/problem+json:
   237                schema:
   238                  $ref: '#/components/schemas/ProblemDetails'
   239            description: Service Unavailable
   240          default:
   241            description: Unexpected error
   242        summary: Namf_Communication ReleaseUEContext service Operation
   243        tags:
   244        - Individual ueContext (Document)
   245    /ue-contexts/{ueContextId}/assign-ebi:
   246      post:
   247        operationId: EBIAssignment
   248        parameters:
   249        - description: UE Context Identifier
   250          explode: false
   251          in: path
   252          name: ueContextId
   253          required: true
   254          schema:
   255            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   256            type: string
   257          style: simple
   258        requestBody:
   259          content:
   260            application/json:
   261              schema:
   262                $ref: '#/components/schemas/AssignEbiData'
   263          required: true
   264        responses:
   265          200:
   266            content:
   267              application/json:
   268                schema:
   269                  $ref: '#/components/schemas/AssignedEbiData'
   270            description: EBI Assignment successfully performed.
   271          400:
   272            content:
   273              application/json:
   274                schema:
   275                  $ref: '#/components/schemas/AssignEbiError'
   276            description: Bad Request
   277          403:
   278            content:
   279              application/json:
   280                schema:
   281                  $ref: '#/components/schemas/AssignEbiError'
   282            description: Forbidden
   283          411:
   284            content:
   285              application/problem+json:
   286                schema:
   287                  $ref: '#/components/schemas/ProblemDetails'
   288            description: Length Required
   289          413:
   290            content:
   291              application/problem+json:
   292                schema:
   293                  $ref: '#/components/schemas/ProblemDetails'
   294            description: Payload Too Large
   295          415:
   296            content:
   297              application/problem+json:
   298                schema:
   299                  $ref: '#/components/schemas/ProblemDetails'
   300            description: Unsupported Media Type
   301          429:
   302            content:
   303              application/problem+json:
   304                schema:
   305                  $ref: '#/components/schemas/ProblemDetails'
   306            description: Too Many Requests
   307          500:
   308            content:
   309              application/json:
   310                schema:
   311                  $ref: '#/components/schemas/AssignEbiError'
   312            description: Internal Server Error
   313          503:
   314            content:
   315              application/problem+json:
   316                schema:
   317                  $ref: '#/components/schemas/ProblemDetails'
   318            description: Service Unavailable
   319          default:
   320            description: Unexpected error
   321        summary: Namf_Communication EBI Assignment service Operation
   322        tags:
   323        - Individual ueContext (Document)
   324    /ue-contexts/{ueContextId}/transfer:
   325      post:
   326        operationId: UEContextTransfer
   327        parameters:
   328        - description: UE Context Identifier
   329          explode: false
   330          in: path
   331          name: ueContextId
   332          required: true
   333          schema:
   334            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   335            type: string
   336          style: simple
   337        requestBody:
   338          content:
   339            application/json:
   340              schema:
   341                $ref: '#/components/schemas/UeContextTransferReqData'
   342            multipart/related:
   343              encoding:
   344                jsonData:
   345                  contentType: application/json
   346                  style: form
   347                binaryDataN1Message:
   348                  contentType: application/vnd.3gpp.5gnas
   349                  headers:
   350                    Content-Id:
   351                      explode: false
   352                      schema:
   353                        type: string
   354                      style: simple
   355                  style: form
   356              schema:
   357                $ref: '#/components/schemas/UEContextTransfer_requestBody'
   358          required: true
   359        responses:
   360          200:
   361            content:
   362              application/json:
   363                schema:
   364                  $ref: '#/components/schemas/UeContextTransferRspData'
   365              multipart/related:
   366                encoding:
   367                  jsonData:
   368                    contentType: application/json
   369                    style: form
   370                  binaryDataN2Information:
   371                    contentType: application/vnd.3gpp.ngap
   372                    headers:
   373                      Content-Id:
   374                        explode: false
   375                        schema:
   376                          type: string
   377                        style: simple
   378                    style: form
   379                schema:
   380                  $ref: '#/components/schemas/UEContextTransfer_response_200'
   381            description: UE context transfer successfully initiated.
   382          400:
   383            content:
   384              application/problem+json:
   385                schema:
   386                  $ref: '#/components/schemas/ProblemDetails'
   387            description: Bad request
   388          403:
   389            content:
   390              application/problem+json:
   391                schema:
   392                  $ref: '#/components/schemas/ProblemDetails'
   393            description: Forbidden
   394          411:
   395            content:
   396              application/problem+json:
   397                schema:
   398                  $ref: '#/components/schemas/ProblemDetails'
   399            description: Length Required
   400          413:
   401            content:
   402              application/problem+json:
   403                schema:
   404                  $ref: '#/components/schemas/ProblemDetails'
   405            description: Payload Too Large
   406          415:
   407            content:
   408              application/problem+json:
   409                schema:
   410                  $ref: '#/components/schemas/ProblemDetails'
   411            description: Unsupported Media Type
   412          429:
   413            content:
   414              application/problem+json:
   415                schema:
   416                  $ref: '#/components/schemas/ProblemDetails'
   417            description: Too Many Requests
   418          500:
   419            content:
   420              application/problem+json:
   421                schema:
   422                  $ref: '#/components/schemas/ProblemDetails'
   423            description: Internal Server Error
   424          503:
   425            content:
   426              application/problem+json:
   427                schema:
   428                  $ref: '#/components/schemas/ProblemDetails'
   429            description: Service Unavailable
   430          default:
   431            description: Unexpected error
   432        summary: Namf_Communication UEContextTransfer service Operation
   433        tags:
   434        - Individual ueContext (Document)
   435    /ue-contexts/{ueContextId}/transfer-update:
   436      post:
   437        operationId: RegistrationStatusUpdate
   438        parameters:
   439        - description: UE Context Identifier
   440          explode: false
   441          in: path
   442          name: ueContextId
   443          required: true
   444          schema:
   445            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   446            type: string
   447          style: simple
   448        requestBody:
   449          content:
   450            application/json:
   451              schema:
   452                $ref: '#/components/schemas/UeRegStatusUpdateReqData'
   453          required: true
   454        responses:
   455          200:
   456            content:
   457              application/json:
   458                schema:
   459                  $ref: '#/components/schemas/UeRegStatusUpdateRspData'
   460            description: UE context transfer status successfully updated.
   461          400:
   462            content:
   463              application/problem+json:
   464                schema:
   465                  $ref: '#/components/schemas/ProblemDetails'
   466            description: Bad request
   467          403:
   468            content:
   469              application/problem+json:
   470                schema:
   471                  $ref: '#/components/schemas/ProblemDetails'
   472            description: Forbidden
   473          404:
   474            content:
   475              application/problem+json:
   476                schema:
   477                  $ref: '#/components/schemas/ProblemDetails'
   478            description: Not Found
   479          411:
   480            content:
   481              application/problem+json:
   482                schema:
   483                  $ref: '#/components/schemas/ProblemDetails'
   484            description: Length Required
   485          413:
   486            content:
   487              application/problem+json:
   488                schema:
   489                  $ref: '#/components/schemas/ProblemDetails'
   490            description: Payload Too Large
   491          415:
   492            content:
   493              application/problem+json:
   494                schema:
   495                  $ref: '#/components/schemas/ProblemDetails'
   496            description: Unsupported Media Type
   497          429:
   498            content:
   499              application/problem+json:
   500                schema:
   501                  $ref: '#/components/schemas/ProblemDetails'
   502            description: Too Many Requests
   503          500:
   504            content:
   505              application/problem+json:
   506                schema:
   507                  $ref: '#/components/schemas/ProblemDetails'
   508            description: Internal Server Error
   509          503:
   510            content:
   511              application/problem+json:
   512                schema:
   513                  $ref: '#/components/schemas/ProblemDetails'
   514            description: Service Unavailable
   515          default:
   516            description: Generic Error
   517        summary: Namf_Communication RegistrationStatusUpdate service Operation
   518        tags:
   519        - Individual ueContext (Document)
   520    /ue-contexts/{ueContextId}/n1-n2-messages:
   521      post:
   522        callbacks:
   523          onN1N2TransferFailure:
   524            '{$request.body#/n1n2FailureTxfNotifURI}':
   525              post:
   526                operationId: N1N2TransferFailureNotification
   527                requestBody:
   528                  content:
   529                    application/json:
   530                      schema:
   531                        $ref: '#/components/schemas/N1N2MsgTxfrFailureNotification'
   532                  description: N1N2Transfer Failure Notification
   533                responses:
   534                  204:
   535                    description: Expected response to a successful callback processing
   536                  400:
   537                    content:
   538                      application/problem+json:
   539                        schema:
   540                          $ref: '#/components/schemas/ProblemDetails'
   541                    description: Bad request
   542                  411:
   543                    content:
   544                      application/problem+json:
   545                        schema:
   546                          $ref: '#/components/schemas/ProblemDetails'
   547                    description: Length Required
   548                  413:
   549                    content:
   550                      application/problem+json:
   551                        schema:
   552                          $ref: '#/components/schemas/ProblemDetails'
   553                    description: Payload Too Large
   554                  415:
   555                    content:
   556                      application/problem+json:
   557                        schema:
   558                          $ref: '#/components/schemas/ProblemDetails'
   559                    description: Unsupported Media Type
   560                  429:
   561                    content:
   562                      application/problem+json:
   563                        schema:
   564                          $ref: '#/components/schemas/ProblemDetails'
   565                    description: Too Many Requests
   566                  500:
   567                    content:
   568                      application/problem+json:
   569                        schema:
   570                          $ref: '#/components/schemas/ProblemDetails'
   571                    description: Internal Server Error
   572                  503:
   573                    content:
   574                      application/problem+json:
   575                        schema:
   576                          $ref: '#/components/schemas/ProblemDetails'
   577                    description: Service Unavailable
   578                summary: Namf_Communication N1N2Transfer Failure Notification service Operation
   579                tags:
   580                - N1N2 Transfer Failure Notification
   581                x-callback-request: true
   582        operationId: N1N2MessageTransfer
   583        parameters:
   584        - description: UE Context Identifier
   585          explode: false
   586          in: path
   587          name: ueContextId
   588          required: true
   589          schema:
   590            pattern: ^(imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|cid-.{1,255}|.+)$
   591            type: string
   592          style: simple
   593        requestBody:
   594          content:
   595            application/json:
   596              schema:
   597                $ref: '#/components/schemas/N1N2MessageTransferReqData'
   598            multipart/related:
   599              encoding:
   600                jsonData:
   601                  contentType: application/json
   602                  style: form
   603                binaryDataN1Message:
   604                  contentType: application/vnd.3gpp.5gnas
   605                  headers:
   606                    Content-Id:
   607                      explode: false
   608                      schema:
   609                        type: string
   610                      style: simple
   611                  style: form
   612                binaryDataN2Information:
   613                  contentType: application/vnd.3gpp.ngap
   614                  headers:
   615                    Content-Id:
   616                      explode: false
   617                      schema:
   618                        type: string
   619                      style: simple
   620                  style: form
   621              schema:
   622                $ref: '#/components/schemas/N1N2MessageTransfer_requestBody'
   623          required: true
   624        responses:
   625          202:
   626            content:
   627              application/json:
   628                schema:
   629                  $ref: '#/components/schemas/N1N2MessageTransferRspData'
   630            description: N1N2 Message Transfer accepted.
   631          200:
   632            content:
   633              application/json:
   634                schema:
   635                  $ref: '#/components/schemas/N1N2MessageTransferRspData'
   636            description: N1N2 Message Transfer successfully initiated.
   637          307:
   638            content:
   639              application/problem+json:
   640                schema:
   641                  $ref: '#/components/schemas/ProblemDetails'
   642            description: Temporary Redirect
   643          400:
   644            content:
   645              application/problem+json:
   646                schema:
   647                  $ref: '#/components/schemas/ProblemDetails'
   648            description: Bad request
   649          403:
   650            content:
   651              application/problem+json:
   652                schema:
   653                  $ref: '#/components/schemas/ProblemDetails'
   654            description: Forbidden
   655          404:
   656            content:
   657              application/problem+json:
   658                schema:
   659                  $ref: '#/components/schemas/ProblemDetails'
   660            description: Not Found
   661          409:
   662            content:
   663              application/json:
   664                schema:
   665                  $ref: '#/components/schemas/N1N2MessageTransferError'
   666            description: Conflicts
   667          411:
   668            content:
   669              application/problem+json:
   670                schema:
   671                  $ref: '#/components/schemas/ProblemDetails'
   672            description: Length Required
   673          413:
   674            content:
   675              application/problem+json:
   676                schema:
   677                  $ref: '#/components/schemas/ProblemDetails'
   678            description: Payload Too Large
   679          415:
   680            content:
   681              application/problem+json:
   682                schema:
   683                  $ref: '#/components/schemas/ProblemDetails'
   684            description: Unsupported Media Type
   685          429:
   686            content:
   687              application/problem+json:
   688                schema:
   689                  $ref: '#/components/schemas/ProblemDetails'
   690            description: Too Many Requests
   691          500:
   692            content:
   693              application/problem+json:
   694                schema:
   695                  $ref: '#/components/schemas/ProblemDetails'
   696            description: Internal Server Error
   697          503:
   698            content:
   699              application/problem+json:
   700                schema:
   701                  $ref: '#/components/schemas/ProblemDetails'
   702            description: Service Unavailable
   703          504:
   704            content:
   705              application/json:
   706                schema:
   707                  $ref: '#/components/schemas/N1N2MessageTransferError'
   708            description: Gateway Timeout
   709          default:
   710            description: Unexpected error
   711        summary: Namf_Communication N1N2 Message Transfer (UE Specific) service Operation
   712        tags:
   713        - n1N2Message collection (Document)
   714    /ue-contexts/{ueContextId}/n1-n2-messages/subscriptions:
   715      post:
   716        callbacks:
   717          onN1N2MessageNotify:
   718            '{$request.body#/n1NotifyCallbackUri}':
   719              post:
   720                operationId: N1MessageNotify
   721                requestBody:
   722                  content:
   723                    multipart/related:
   724                      encoding:
   725                        jsonData:
   726                          contentType: application/json
   727                          style: form
   728                        binaryDataN1Message:
   729                          contentType: application/vnd.3gpp.5gnas
   730                          headers:
   731                            Content-Id:
   732                              explode: false
   733                              schema:
   734                                type: string
   735                              style: simple
   736                          style: form
   737                      schema:
   738                        properties:
   739                          jsonData:
   740                            $ref: '#/components/schemas/N1MessageNotification'
   741                          binaryDataN1Message:
   742                            format: binary
   743                            type: string
   744                        type: object
   745                  description: N1 Message Notification
   746                responses:
   747                  204:
   748                    description: Expected response to a successful callback processing
   749                  400:
   750                    content:
   751                      application/problem+json:
   752                        schema:
   753                          $ref: '#/components/schemas/ProblemDetails'
   754                    description: Bad request
   755                  403:
   756                    content:
   757                      application/problem+json:
   758                        schema:
   759                          $ref: '#/components/schemas/ProblemDetails'
   760                    description: Forbidden
   761                  411:
   762                    content:
   763                      application/problem+json:
   764                        schema:
   765                          $ref: '#/components/schemas/ProblemDetails'
   766                    description: Length Required
   767                  413:
   768                    content:
   769                      application/problem+json:
   770                        schema:
   771                          $ref: '#/components/schemas/ProblemDetails'
   772                    description: Payload Too Large
   773                  415:
   774                    content:
   775                      application/problem+json:
   776                        schema:
   777                          $ref: '#/components/schemas/ProblemDetails'
   778                    description: Unsupported Media Type
   779                  429:
   780                    content:
   781                      application/problem+json:
   782                        schema:
   783                          $ref: '#/components/schemas/ProblemDetails'
   784                    description: Too Many Requests
   785                  500:
   786                    content:
   787                      application/problem+json:
   788                        schema:
   789                          $ref: '#/components/schemas/ProblemDetails'
   790                    description: Internal Server Error
   791                  503:
   792                    content:
   793                      application/problem+json:
   794                        schema:
   795                          $ref: '#/components/schemas/ProblemDetails'
   796                    description: Service Unavailable
   797                summary: Namf_Communication N1 Message Notify service Operation
   798                tags:
   799                - N1 Message Notify
   800                x-callback-request: true
   801            '{$request.body#/n2NotifyCallbackUri}':
   802              post:
   803                operationId: N2InfoNotify
   804                requestBody:
   805                  content:
   806                    multipart/related:
   807                      encoding:
   808                        jsonData:
   809                          contentType: application/json
   810                          style: form
   811                        binaryDataN1Message:
   812                          contentType: application/vnd.3gpp.5gnas
   813                          headers:
   814                            Content-Id:
   815                              explode: false
   816                              schema:
   817                                type: string
   818                              style: simple
   819                          style: form
   820                        binaryDataN2Information:
   821                          contentType: application/vnd.3gpp.ngap
   822                          headers:
   823                            Content-Id:
   824                              explode: false
   825                              schema:
   826                                type: string
   827                              style: simple
   828                          style: form
   829                      schema:
   830                        properties:
   831                          jsonData:
   832                            $ref: '#/components/schemas/N2InformationNotification'
   833                          binaryDataN1Message:
   834                            format: binary
   835                            type: string
   836                          binaryDataN2Information:
   837                            format: binary
   838                            type: string
   839                        type: object
   840                  description: UE Specific N2 Informaiton Notification
   841                responses:
   842                  204:
   843                    description: Expected response to a successful callback processing
   844                  400:
   845                    content:
   846                      application/problem+json:
   847                        schema:
   848                          $ref: '#/components/schemas/ProblemDetails'
   849                    description: Bad request
   850                  411:
   851                    content:
   852                      application/problem+json:
   853                        schema:
   854                          $ref: '#/components/schemas/ProblemDetails'
   855                    description: Length Required
   856                  413:
   857                    content:
   858                      application/problem+json:
   859                        schema:
   860                          $ref: '#/components/schemas/ProblemDetails'
   861                    description: Payload Too Large
   862                  415:
   863                    content:
   864                      application/problem+json:
   865                        schema:
   866                          $ref: '#/components/schemas/ProblemDetails'
   867                    description: Unsupported Media Type
   868                  429:
   869                    content:
   870                      application/problem+json:
   871                        schema:
   872                          $ref: '#/components/schemas/ProblemDetails'
   873                    description: Too Many Requests
   874                  500:
   875                    content:
   876                      application/problem+json:
   877                        schema:
   878                          $ref: '#/components/schemas/ProblemDetails'
   879                    description: Internal Server Error
   880                  503:
   881                    content:
   882                      application/problem+json:
   883                        schema:
   884                          $ref: '#/components/schemas/ProblemDetails'
   885                    description: Service Unavailable
   886                summary: Namf_Communication N2 Info Notify (UE Specific) service Operation
   887                tags:
   888                - N2 Info Notify
   889                x-callback-request: true
   890        operationId: N1N2MessageSubscribe
   891        parameters:
   892        - description: UE Context Identifier
   893          explode: false
   894          in: path
   895          name: ueContextId
   896          required: true
   897          schema:
   898            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   899            type: string
   900          style: simple
   901        requestBody:
   902          content:
   903            application/json:
   904              schema:
   905                $ref: '#/components/schemas/UeN1N2InfoSubscriptionCreateData'
   906          required: true
   907        responses:
   908          201:
   909            content:
   910              application/json:
   911                schema:
   912                  $ref: '#/components/schemas/UeN1N2InfoSubscriptionCreatedData'
   913            description: N1N2 Message Subscription successfully created.
   914            headers:
   915              Location:
   916                description: 'Contains the URI of the newly created resource, according
   917                  to the structure: {apiRoot}/namf-comm/v1/{ueContextId}/n1-n2-messages/subscriptions/{subscriptionId}'
   918                explode: false
   919                required: true
   920                schema:
   921                  type: string
   922                style: simple
   923          400:
   924            content:
   925              application/problem+json:
   926                schema:
   927                  $ref: '#/components/schemas/ProblemDetails'
   928            description: Bad request
   929          411:
   930            content:
   931              application/problem+json:
   932                schema:
   933                  $ref: '#/components/schemas/ProblemDetails'
   934            description: Length Required
   935          413:
   936            content:
   937              application/problem+json:
   938                schema:
   939                  $ref: '#/components/schemas/ProblemDetails'
   940            description: Payload Too Large
   941          415:
   942            content:
   943              application/problem+json:
   944                schema:
   945                  $ref: '#/components/schemas/ProblemDetails'
   946            description: Unsupported Media Type
   947          429:
   948            content:
   949              application/problem+json:
   950                schema:
   951                  $ref: '#/components/schemas/ProblemDetails'
   952            description: Too Many Requests
   953          500:
   954            content:
   955              application/problem+json:
   956                schema:
   957                  $ref: '#/components/schemas/ProblemDetails'
   958            description: Internal Server Error
   959          503:
   960            content:
   961              application/problem+json:
   962                schema:
   963                  $ref: '#/components/schemas/ProblemDetails'
   964            description: Service Unavailable
   965          default:
   966            description: Unexpected error
   967        summary: Namf_Communication N1N2 Message Subscribe (UE Specific) service Operation
   968        tags:
   969        - N1N2 Subscriptions Collection for Individual UE Contexts (Document)
   970    /ue-contexts/{ueContextId}/n1-n2-messages/subscriptions/{subscriptionId}:
   971      delete:
   972        operationId: N1N2MessageUnSubscribe
   973        parameters:
   974        - description: UE Context Identifier
   975          explode: false
   976          in: path
   977          name: ueContextId
   978          required: true
   979          schema:
   980            pattern: ^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
   981            type: string
   982          style: simple
   983        - description: Subscription Identifier
   984          explode: false
   985          in: path
   986          name: subscriptionId
   987          required: true
   988          schema:
   989            type: string
   990          style: simple
   991        responses:
   992          204:
   993            description: N1N2 Message Subscription successfully removed.
   994          400:
   995            content:
   996              application/problem+json:
   997                schema:
   998                  $ref: '#/components/schemas/ProblemDetails'
   999            description: Bad request
  1000          411:
  1001            content:
  1002              application/problem+json:
  1003                schema:
  1004                  $ref: '#/components/schemas/ProblemDetails'
  1005            description: Length Required
  1006          413:
  1007            content:
  1008              application/problem+json:
  1009                schema:
  1010                  $ref: '#/components/schemas/ProblemDetails'
  1011            description: Payload Too Large
  1012          415:
  1013            content:
  1014              application/problem+json:
  1015                schema:
  1016                  $ref: '#/components/schemas/ProblemDetails'
  1017            description: Unsupported Media Type
  1018          429:
  1019            content:
  1020              application/problem+json:
  1021                schema:
  1022                  $ref: '#/components/schemas/ProblemDetails'
  1023            description: Too Many Requests
  1024          500:
  1025            content:
  1026              application/problem+json:
  1027                schema:
  1028                  $ref: '#/components/schemas/ProblemDetails'
  1029            description: Internal Server Error
  1030          503:
  1031            content:
  1032              application/problem+json:
  1033                schema:
  1034                  $ref: '#/components/schemas/ProblemDetails'
  1035            description: Service Unavailable
  1036        summary: Namf_Communication N1N2 Message UnSubscribe (UE Specific) service Operation
  1037        tags:
  1038        - N1N2 Individual Subscription (Document)
  1039    /non-ue-n2-messages/transfer:
  1040      post:
  1041        operationId: NonUeN2MessageTransfer
  1042        requestBody:
  1043          content:
  1044            application/json:
  1045              schema:
  1046                $ref: '#/components/schemas/N2InformationTransferReqData'
  1047            multipart/related:
  1048              encoding:
  1049                jsonData:
  1050                  contentType: application/json
  1051                  style: form
  1052                binaryDataN2Information:
  1053                  contentType: application/vnd.3gpp.ngap
  1054                  headers:
  1055                    Content-Id:
  1056                      explode: false
  1057                      schema:
  1058                        type: string
  1059                      style: simple
  1060                  style: form
  1061              schema:
  1062                $ref: '#/components/schemas/NonUeN2MessageTransfer_requestBody'
  1063          required: true
  1064        responses:
  1065          200:
  1066            content:
  1067              application/json:
  1068                schema:
  1069                  $ref: '#/components/schemas/N2InformationTransferRspData'
  1070            description: Non UE N2 Message Transfer successfully initiated.
  1071          400:
  1072            content:
  1073              application/json:
  1074                schema:
  1075                  $ref: '#/components/schemas/N2InformationTransferError'
  1076            description: Bad Request
  1077          403:
  1078            content:
  1079              application/json:
  1080                schema:
  1081                  $ref: '#/components/schemas/N2InformationTransferError'
  1082            description: Forbidden
  1083          404:
  1084            content:
  1085              application/json:
  1086                schema:
  1087                  $ref: '#/components/schemas/N2InformationTransferError'
  1088            description: Not Found
  1089          411:
  1090            content:
  1091              application/problem+json:
  1092                schema:
  1093                  $ref: '#/components/schemas/ProblemDetails'
  1094            description: Length Required
  1095          413:
  1096            content:
  1097              application/problem+json:
  1098                schema:
  1099                  $ref: '#/components/schemas/ProblemDetails'
  1100            description: Payload Too Large
  1101          415:
  1102            content:
  1103              application/problem+json:
  1104                schema:
  1105                  $ref: '#/components/schemas/ProblemDetails'
  1106            description: Unsupported Media Type
  1107          429:
  1108            content:
  1109              application/problem+json:
  1110                schema:
  1111                  $ref: '#/components/schemas/ProblemDetails'
  1112            description: Too Many Requests
  1113          500:
  1114            content:
  1115              application/json:
  1116                schema:
  1117                  $ref: '#/components/schemas/N2InformationTransferError'
  1118            description: Internal Server Error
  1119          503:
  1120            content:
  1121              application/json:
  1122                schema:
  1123                  $ref: '#/components/schemas/N2InformationTransferError'
  1124            description: Service Unavailable
  1125          default:
  1126            description: Unexpected error
  1127        summary: Namf_Communication Non UE N2 Message Transfer service Operation
  1128        tags:
  1129        - Non UE N2Messages collection (Document)
  1130    /non-ue-n2-messages/subscriptions:
  1131      post:
  1132        callbacks:
  1133          onN2InfoNotify:
  1134            '{$request.body#/n2NotifyCallbackUri}':
  1135              post:
  1136                operationId: NonUeN2InfoNotify
  1137                requestBody:
  1138                  content:
  1139                    application/json:
  1140                      schema:
  1141                        $ref: '#/components/schemas/N2InformationNotification'
  1142                    multipart/related:
  1143                      encoding:
  1144                        jsonData:
  1145                          contentType: application/json
  1146                          style: form
  1147                        binaryDataN2Information:
  1148                          contentType: application/vnd.3gpp.ngap
  1149                          headers:
  1150                            Content-Id:
  1151                              explode: false
  1152                              schema:
  1153                                type: string
  1154                              style: simple
  1155                          style: form
  1156                      schema:
  1157                        properties:
  1158                          jsonData:
  1159                            $ref: '#/components/schemas/N2InformationNotification'
  1160                          binaryDataN2Information:
  1161                            format: binary
  1162                            type: string
  1163                        type: object
  1164                  description: Non UE N2 Informaiton Notification
  1165                responses:
  1166                  204:
  1167                    description: Expected response to a successful callback processing
  1168                  400:
  1169                    content:
  1170                      application/problem+json:
  1171                        schema:
  1172                          $ref: '#/components/schemas/ProblemDetails'
  1173                    description: Bad request
  1174                  411:
  1175                    content:
  1176                      application/problem+json:
  1177                        schema:
  1178                          $ref: '#/components/schemas/ProblemDetails'
  1179                    description: Length Required
  1180                  413:
  1181                    content:
  1182                      application/problem+json:
  1183                        schema:
  1184                          $ref: '#/components/schemas/ProblemDetails'
  1185                    description: Payload Too Large
  1186                  415:
  1187                    content:
  1188                      application/problem+json:
  1189                        schema:
  1190                          $ref: '#/components/schemas/ProblemDetails'
  1191                    description: Unsupported Media Type
  1192                  429:
  1193                    content:
  1194                      application/problem+json:
  1195                        schema:
  1196                          $ref: '#/components/schemas/ProblemDetails'
  1197                    description: Too Many Requests
  1198                  500:
  1199                    content:
  1200                      application/problem+json:
  1201                        schema:
  1202                          $ref: '#/components/schemas/ProblemDetails'
  1203                    description: Internal Server Error
  1204                  503:
  1205                    content:
  1206                      application/problem+json:
  1207                        schema:
  1208                          $ref: '#/components/schemas/ProblemDetails'
  1209                    description: Service Unavailable
  1210                summary: Namf_Communication Non UE N2 Info Notify service Operation
  1211                tags:
  1212                - Non UE N2 Info Notify
  1213                x-callback-request: true
  1214        operationId: NonUeN2InfoSubscribe
  1215        requestBody:
  1216          content:
  1217            application/json:
  1218              schema:
  1219                $ref: '#/components/schemas/NonUeN2InfoSubscriptionCreateData'
  1220          required: true
  1221        responses:
  1222          201:
  1223            content:
  1224              application/json:
  1225                schema:
  1226                  $ref: '#/components/schemas/NonUeN2InfoSubscriptionCreatedData'
  1227            description: Non UE N2 Info Subscription successfully created.
  1228            headers:
  1229              Location:
  1230                description: 'Contains the URI of the newly created resource, according
  1231                  to the structure: {apiRoot}/namf-comm/v1/non-ue-n2-messages/subscriptions/{n2NotifySubscriptionId}'
  1232                explode: false
  1233                required: true
  1234                schema:
  1235                  type: string
  1236                style: simple
  1237          400:
  1238            content:
  1239              application/problem+json:
  1240                schema:
  1241                  $ref: '#/components/schemas/ProblemDetails'
  1242            description: Bad request
  1243          403:
  1244            content:
  1245              application/problem+json:
  1246                schema:
  1247                  $ref: '#/components/schemas/ProblemDetails'
  1248            description: Forbidden
  1249          411:
  1250            content:
  1251              application/problem+json:
  1252                schema:
  1253                  $ref: '#/components/schemas/ProblemDetails'
  1254            description: Length Required
  1255          413:
  1256            content:
  1257              application/problem+json:
  1258                schema:
  1259                  $ref: '#/components/schemas/ProblemDetails'
  1260            description: Payload Too Large
  1261          415:
  1262            content:
  1263              application/problem+json:
  1264                schema:
  1265                  $ref: '#/components/schemas/ProblemDetails'
  1266            description: Unsupported Media Type
  1267          429:
  1268            content:
  1269              application/problem+json:
  1270                schema:
  1271                  $ref: '#/components/schemas/ProblemDetails'
  1272            description: Too Many Requests
  1273          500:
  1274            content:
  1275              application/problem+json:
  1276                schema:
  1277                  $ref: '#/components/schemas/ProblemDetails'
  1278            description: Internal Server Error
  1279          503:
  1280            content:
  1281              application/problem+json:
  1282                schema:
  1283                  $ref: '#/components/schemas/ProblemDetails'
  1284            description: Service Unavailable
  1285          default:
  1286            description: Unexpected error
  1287        summary: Namf_Communication Non UE N2 Info Subscribe service Operation
  1288        tags:
  1289        - Non UE N2Messages Subscriptions collection (Document)
  1290    /non-ue-n2-messages/subscriptions/{n2NotifySubscriptionId}:
  1291      delete:
  1292        operationId: NonUeN2InfoUnSubscribe
  1293        parameters:
  1294        - description: N2 info Subscription Identifier
  1295          explode: false
  1296          in: path
  1297          name: n2NotifySubscriptionId
  1298          required: true
  1299          schema:
  1300            type: string
  1301          style: simple
  1302        responses:
  1303          204:
  1304            description: Non UE N2 INfo Subscription successfully removed.
  1305          400:
  1306            content:
  1307              application/problem+json:
  1308                schema:
  1309                  $ref: '#/components/schemas/ProblemDetails'
  1310            description: Bad request
  1311          429:
  1312            content:
  1313              application/problem+json:
  1314                schema:
  1315                  $ref: '#/components/schemas/ProblemDetails'
  1316            description: Too Many Requests
  1317          500:
  1318            content:
  1319              application/problem+json:
  1320                schema:
  1321                  $ref: '#/components/schemas/ProblemDetails'
  1322            description: Internal Server Error
  1323          503:
  1324            content:
  1325              application/problem+json:
  1326                schema:
  1327                  $ref: '#/components/schemas/ProblemDetails'
  1328            description: Service Unavailable
  1329        summary: Namf_Communication Non UE N2 Info UnSubscribe service Operation
  1330        tags:
  1331        - Non UE N2 Message Notification Individual Subscription (Document)
  1332    /subscriptions:
  1333      post:
  1334        callbacks:
  1335          onAmfStatusChange:
  1336            '{$request.body#/amfStatusUri}':
  1337              post:
  1338                operationId: AmfStatusChangeNotify
  1339                requestBody:
  1340                  content:
  1341                    application/json:
  1342                      schema:
  1343                        $ref: '#/components/schemas/AmfStatusChangeNotification'
  1344                  description: Amf Status Change Notification
  1345                responses:
  1346                  204:
  1347                    description: Expected response to a successful callback processing
  1348                  400:
  1349                    content:
  1350                      application/problem+json:
  1351                        schema:
  1352                          $ref: '#/components/schemas/ProblemDetails'
  1353                    description: Bad request
  1354                  404:
  1355                    content:
  1356                      application/problem+json:
  1357                        schema:
  1358                          $ref: '#/components/schemas/ProblemDetails'
  1359                    description: Not Found
  1360                  411:
  1361                    content:
  1362                      application/problem+json:
  1363                        schema:
  1364                          $ref: '#/components/schemas/ProblemDetails'
  1365                    description: Length Required
  1366                  413:
  1367                    content:
  1368                      application/problem+json:
  1369                        schema:
  1370                          $ref: '#/components/schemas/ProblemDetails'
  1371                    description: Payload Too Large
  1372                  415:
  1373                    content:
  1374                      application/problem+json:
  1375                        schema:
  1376                          $ref: '#/components/schemas/ProblemDetails'
  1377                    description: Unsupported Media Type
  1378                  429:
  1379                    content:
  1380                      application/problem+json:
  1381                        schema:
  1382                          $ref: '#/components/schemas/ProblemDetails'
  1383                    description: Too Many Requests
  1384                  500:
  1385                    content:
  1386                      application/problem+json:
  1387                        schema:
  1388                          $ref: '#/components/schemas/ProblemDetails'
  1389                    description: Internal Server Error
  1390                  503:
  1391                    content:
  1392                      application/problem+json:
  1393                        schema:
  1394                          $ref: '#/components/schemas/ProblemDetails'
  1395                    description: Service Unavailable
  1396                summary: Amf Status Change Notify service Operation
  1397                tags:
  1398                - Amf Status Change Notify
  1399                x-callback-request: true
  1400        operationId: AMFStatusChangeSubscribe
  1401        requestBody:
  1402          content:
  1403            application/json:
  1404              schema:
  1405                $ref: '#/components/schemas/SubscriptionData'
  1406          required: true
  1407        responses:
  1408          201:
  1409            content:
  1410              application/json:
  1411                schema:
  1412                  $ref: '#/components/schemas/SubscriptionData'
  1413            description: N1N2 Message Subscription successfully created.
  1414            headers:
  1415              Location:
  1416                description: 'Contains the URI of the newly created resource, according
  1417                  to the structure: {apiRoot}/namf-comm/v1/subscriptions/{subscriptionId}'
  1418                explode: false
  1419                required: true
  1420                schema:
  1421                  type: string
  1422                style: simple
  1423          400:
  1424            content:
  1425              application/problem+json:
  1426                schema:
  1427                  $ref: '#/components/schemas/ProblemDetails'
  1428            description: Bad request
  1429          403:
  1430            content:
  1431              application/problem+json:
  1432                schema:
  1433                  $ref: '#/components/schemas/ProblemDetails'
  1434            description: Forbidden
  1435          411:
  1436            content:
  1437              application/problem+json:
  1438                schema:
  1439                  $ref: '#/components/schemas/ProblemDetails'
  1440            description: Length Required
  1441          413:
  1442            content:
  1443              application/problem+json:
  1444                schema:
  1445                  $ref: '#/components/schemas/ProblemDetails'
  1446            description: Payload Too Large
  1447          415:
  1448            content:
  1449              application/problem+json:
  1450                schema:
  1451                  $ref: '#/components/schemas/ProblemDetails'
  1452            description: Unsupported Media Type
  1453          429:
  1454            content:
  1455              application/problem+json:
  1456                schema:
  1457                  $ref: '#/components/schemas/ProblemDetails'
  1458            description: Too Many Requests
  1459          500:
  1460            content:
  1461              application/problem+json:
  1462                schema:
  1463                  $ref: '#/components/schemas/ProblemDetails'
  1464            description: Internal Server Error
  1465          503:
  1466            content:
  1467              application/problem+json:
  1468                schema:
  1469                  $ref: '#/components/schemas/ProblemDetails'
  1470            description: Service Unavailable
  1471          default:
  1472            description: Unexpected error
  1473        summary: Namf_Communication AMF Status Change Subscribe service Operation
  1474        tags:
  1475        - subscriptions collection (Document)
  1476    /subscriptions/{subscriptionId}:
  1477      delete:
  1478        operationId: AMFStatusChangeUnSubscribe
  1479        parameters:
  1480        - description: AMF Status Change Subscription Identifier
  1481          explode: false
  1482          in: path
  1483          name: subscriptionId
  1484          required: true
  1485          schema:
  1486            type: string
  1487          style: simple
  1488        responses:
  1489          204:
  1490            description: N1N2 Message Subscription successfully removed.
  1491          400:
  1492            content:
  1493              application/problem+json:
  1494                schema:
  1495                  $ref: '#/components/schemas/ProblemDetails'
  1496            description: Bad request
  1497          404:
  1498            content:
  1499              application/problem+json:
  1500                schema:
  1501                  $ref: '#/components/schemas/ProblemDetails'
  1502            description: Not Found
  1503          429:
  1504            content:
  1505              application/problem+json:
  1506                schema:
  1507                  $ref: '#/components/schemas/ProblemDetails'
  1508            description: Too Many Requests
  1509          500:
  1510            content:
  1511              application/problem+json:
  1512                schema:
  1513                  $ref: '#/components/schemas/ProblemDetails'
  1514            description: Internal Server Error
  1515          503:
  1516            content:
  1517              application/problem+json:
  1518                schema:
  1519                  $ref: '#/components/schemas/ProblemDetails'
  1520            description: Service Unavailable
  1521          default:
  1522            description: Unexpected error
  1523        summary: Namf_Communication AMF Status Change UnSubscribe service Operation
  1524        tags:
  1525        - individual subscription (Document)
  1526      put:
  1527        callbacks:
  1528          OnAmfStatusChange:
  1529            '{$request.body#/amfStatusUri}':
  1530              post:
  1531                operationId: AmfStatusChangeNOtify
  1532                requestBody:
  1533                  content:
  1534                    application/json:
  1535                      schema:
  1536                        $ref: '#/components/schemas/AmfStatusChangeNotification'
  1537                  description: Amf Status Change Notification
  1538                responses:
  1539                  204:
  1540                    description: Expected response to a successful callback processing
  1541                  400:
  1542                    content:
  1543                      application/problem+json:
  1544                        schema:
  1545                          $ref: '#/components/schemas/ProblemDetails'
  1546                    description: Bad request
  1547                  403:
  1548                    content:
  1549                      application/problem+json:
  1550                        schema:
  1551                          $ref: '#/components/schemas/ProblemDetails'
  1552                    description: Forbidden
  1553                  411:
  1554                    content:
  1555                      application/problem+json:
  1556                        schema:
  1557                          $ref: '#/components/schemas/ProblemDetails'
  1558                    description: Length Required
  1559                  413:
  1560                    content:
  1561                      application/problem+json:
  1562                        schema:
  1563                          $ref: '#/components/schemas/ProblemDetails'
  1564                    description: Payload Too Large
  1565                  415:
  1566                    content:
  1567                      application/problem+json:
  1568                        schema:
  1569                          $ref: '#/components/schemas/ProblemDetails'
  1570                    description: Unsupported Media Type
  1571                  429:
  1572                    content:
  1573                      application/problem+json:
  1574                        schema:
  1575                          $ref: '#/components/schemas/ProblemDetails'
  1576                    description: Too Many Requests
  1577                  500:
  1578                    content:
  1579                      application/problem+json:
  1580                        schema:
  1581                          $ref: '#/components/schemas/ProblemDetails'
  1582                    description: Internal Server Error
  1583                  503:
  1584                    content:
  1585                      application/problem+json:
  1586                        schema:
  1587                          $ref: '#/components/schemas/ProblemDetails'
  1588                    description: Service Unavailable
  1589                summary: Amf Status Change Notify service Operation
  1590                tags:
  1591                - Amf Status Change Notify
  1592                x-callback-request: true
  1593        operationId: AMFStatusChangeSubscribeModfy
  1594        parameters:
  1595        - description: AMF Status Change Subscription Identifier
  1596          explode: false
  1597          in: path
  1598          name: subscriptionId
  1599          required: true
  1600          schema:
  1601            type: string
  1602          style: simple
  1603        requestBody:
  1604          content:
  1605            application/json:
  1606              schema:
  1607                $ref: '#/components/schemas/SubscriptionData'
  1608          required: true
  1609        responses:
  1610          202:
  1611            content:
  1612              application/json:
  1613                schema:
  1614                  $ref: '#/components/schemas/SubscriptionData'
  1615            description: N1N2 Message Subscription successfully updated.
  1616          400:
  1617            content:
  1618              application/problem+json:
  1619                schema:
  1620                  $ref: '#/components/schemas/ProblemDetails'
  1621            description: Bad request
  1622          403:
  1623            content:
  1624              application/problem+json:
  1625                schema:
  1626                  $ref: '#/components/schemas/ProblemDetails'
  1627            description: Forbidden
  1628          411:
  1629            content:
  1630              application/problem+json:
  1631                schema:
  1632                  $ref: '#/components/schemas/ProblemDetails'
  1633            description: Length Required
  1634          413:
  1635            content:
  1636              application/problem+json:
  1637                schema:
  1638                  $ref: '#/components/schemas/ProblemDetails'
  1639            description: Payload Too Large
  1640          415:
  1641            content:
  1642              application/problem+json:
  1643                schema:
  1644                  $ref: '#/components/schemas/ProblemDetails'
  1645            description: Unsupported Media Type
  1646          429:
  1647            content:
  1648              application/problem+json:
  1649                schema:
  1650                  $ref: '#/components/schemas/ProblemDetails'
  1651            description: Too Many Requests
  1652          500:
  1653            content:
  1654              application/problem+json:
  1655                schema:
  1656                  $ref: '#/components/schemas/ProblemDetails'
  1657            description: Internal Server Error
  1658          503:
  1659            content:
  1660              application/problem+json:
  1661                schema:
  1662                  $ref: '#/components/schemas/ProblemDetails'
  1663            description: Service Unavailable
  1664          default:
  1665            description: Unexpected error
  1666        summary: Namf_Communication AMF Status Change Subscribe Modify service Operation
  1667        tags:
  1668        - individual subscription (Document)
  1669  components:
  1670    schemas:
  1671      SubscriptionData:
  1672        example:
  1673          amfStatusUri: amfStatusUri
  1674          guamiList:
  1675          - plmnId:
  1676              mnc: mnc
  1677              mcc: mcc
  1678            amfId: amfId
  1679          - plmnId:
  1680              mnc: mnc
  1681              mcc: mcc
  1682            amfId: amfId
  1683        properties:
  1684          amfStatusUri:
  1685            type: string
  1686          guamiList:
  1687            items:
  1688              $ref: '#/components/schemas/Guami'
  1689            minItems: 1
  1690            type: array
  1691        required:
  1692        - amfStatusUri
  1693        type: object
  1694      AmfStatusChangeNotification:
  1695        example:
  1696          amfStatusInfoList:
  1697          - targetAmfFailure: targetAmfFailure
  1698            guamiList:
  1699            - plmnId:
  1700                mnc: mnc
  1701                mcc: mcc
  1702              amfId: amfId
  1703            - plmnId:
  1704                mnc: mnc
  1705                mcc: mcc
  1706              amfId: amfId
  1707            targetAmfRemoval: targetAmfRemoval
  1708          - targetAmfFailure: targetAmfFailure
  1709            guamiList:
  1710            - plmnId:
  1711                mnc: mnc
  1712                mcc: mcc
  1713              amfId: amfId
  1714            - plmnId:
  1715                mnc: mnc
  1716                mcc: mcc
  1717              amfId: amfId
  1718            targetAmfRemoval: targetAmfRemoval
  1719        properties:
  1720          amfStatusInfoList:
  1721            items:
  1722              $ref: '#/components/schemas/AmfStatusInfo'
  1723            minItems: 1
  1724            type: array
  1725        required:
  1726        - amfStatusInfo
  1727        type: object
  1728      AmfStatusInfo:
  1729        example:
  1730          targetAmfFailure: targetAmfFailure
  1731          guamiList:
  1732          - plmnId:
  1733              mnc: mnc
  1734              mcc: mcc
  1735            amfId: amfId
  1736          - plmnId:
  1737              mnc: mnc
  1738              mcc: mcc
  1739            amfId: amfId
  1740          targetAmfRemoval: targetAmfRemoval
  1741        properties:
  1742          guamiList:
  1743            items:
  1744              $ref: '#/components/schemas/Guami'
  1745            minItems: 1
  1746            type: array
  1747          statusChange:
  1748            $ref: '#/components/schemas/StatusChange'
  1749          targetAmfRemoval:
  1750            type: string
  1751          targetAmfFailure:
  1752            type: string
  1753        required:
  1754        - guamis
  1755        - statusChange
  1756        type: object
  1757      AssignEbiData:
  1758        example:
  1759          pduSessionId: 20
  1760          arpList:
  1761          - priorityLevel: 10
  1762          - priorityLevel: 10
  1763          releasedEbiList:
  1764          - null
  1765          - null
  1766        properties:
  1767          pduSessionId:
  1768            format: int32
  1769            maximum: 255
  1770            minimum: 0
  1771            type: integer
  1772          arpList:
  1773            items:
  1774              $ref: '#/components/schemas/Arp'
  1775            minItems: 1
  1776            type: array
  1777          releasedEbiList:
  1778            items:
  1779              $ref: '#/components/schemas/EpsBearerId'
  1780            minItems: 1
  1781            type: array
  1782        required:
  1783        - pduSessionId
  1784        type: object
  1785      AssignedEbiData:
  1786        example:
  1787          assignedEbiList:
  1788          - epsBearerId: 2
  1789            arp:
  1790              priorityLevel: 10
  1791          - epsBearerId: 2
  1792            arp:
  1793              priorityLevel: 10
  1794          pduSessionId: 20
  1795          failedArpList:
  1796          - priorityLevel: 10
  1797          - priorityLevel: 10
  1798          releasedEbiList:
  1799          - null
  1800          - null
  1801        properties:
  1802          pduSessionId:
  1803            format: int32
  1804            maximum: 255
  1805            minimum: 0
  1806            type: integer
  1807          assignedEbiList:
  1808            items:
  1809              $ref: '#/components/schemas/EbiArpMapping'
  1810            minItems: 0
  1811            type: array
  1812          failedArpList:
  1813            items:
  1814              $ref: '#/components/schemas/Arp'
  1815            minItems: 1
  1816            type: array
  1817          releasedEbiList:
  1818            items:
  1819              $ref: '#/components/schemas/EpsBearerId'
  1820            minItems: 1
  1821            type: array
  1822        required:
  1823        - assignedEbis
  1824        - pduSessionId
  1825        type: object
  1826      AssignEbiFailed:
  1827        properties:
  1828          pduSessionId:
  1829            format: int32
  1830            maximum: 255
  1831            minimum: 0
  1832            type: integer
  1833          failedArpList:
  1834            items:
  1835              $ref: '#/components/schemas/Arp'
  1836            minItems: 1
  1837            type: array
  1838        required:
  1839        - pduSessionId
  1840        type: object
  1841      UEContextRelease:
  1842        properties:
  1843          supi:
  1844            pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  1845            type: string
  1846          unauthenticatedSupi:
  1847            default: false
  1848            type: boolean
  1849          ngapCause:
  1850            $ref: '#/components/schemas/NgApCause'
  1851        required:
  1852        - ngapCause
  1853        type: object
  1854      N2InformationTransferReqData:
  1855        properties:
  1856          taiList:
  1857            items:
  1858              $ref: '#/components/schemas/Tai'
  1859            minItems: 1
  1860            type: array
  1861          ratSelector:
  1862            $ref: '#/components/schemas/RatSelector'
  1863          ecgiList:
  1864            items:
  1865              $ref: '#/components/schemas/Ecgi'
  1866            minItems: 1
  1867            type: array
  1868          ncgiList:
  1869            items:
  1870              $ref: '#/components/schemas/Ncgi'
  1871            minItems: 1
  1872            type: array
  1873          globalRanNodeList:
  1874            items:
  1875              $ref: '#/components/schemas/GlobalRanNodeId'
  1876            minItems: 1
  1877            type: array
  1878          n2Information:
  1879            $ref: '#/components/schemas/N2InfoContainer'
  1880          supportedFeatures:
  1881            pattern: ^[A-Fa-f0-9]*$
  1882            type: string
  1883        required:
  1884        - n2Information
  1885        type: object
  1886      NonUeN2InfoSubscriptionCreateData:
  1887        example:
  1888          nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  1889          supportedFeatures: supportedFeatures
  1890          n2NotifyCallbackUri: n2NotifyCallbackUri
  1891          anTypeList:
  1892          - null
  1893          - null
  1894          globalRanNodeList:
  1895          - gNbId:
  1896              bitLength: 24
  1897              gNBValue: gNBValue
  1898            plmnId:
  1899              mnc: mnc
  1900              mcc: mcc
  1901            n3IwfId: n3IwfId
  1902            ngeNbId: ngeNbId
  1903          - gNbId:
  1904              bitLength: 24
  1905              gNBValue: gNBValue
  1906            plmnId:
  1907              mnc: mnc
  1908              mcc: mcc
  1909            n3IwfId: n3IwfId
  1910            ngeNbId: ngeNbId
  1911        properties:
  1912          globalRanNodeList:
  1913            items:
  1914              $ref: '#/components/schemas/GlobalRanNodeId'
  1915            minItems: 1
  1916            type: array
  1917          anTypeList:
  1918            items:
  1919              $ref: '#/components/schemas/AccessType'
  1920            minItems: 1
  1921            type: array
  1922          n2InformationClass:
  1923            $ref: '#/components/schemas/N2InformationClass'
  1924          n2NotifyCallbackUri:
  1925            type: string
  1926          nfId:
  1927            format: uuid
  1928            type: string
  1929          supportedFeatures:
  1930            pattern: ^[A-Fa-f0-9]*$
  1931            type: string
  1932        required:
  1933        - n2InformationClass
  1934        - n2NotifyCallbackUri
  1935        type: object
  1936      NonUeN2InfoSubscriptionCreatedData:
  1937        example:
  1938          supportedFeatures: supportedFeatures
  1939          n2NotifySubscriptionId: n2NotifySubscriptionId
  1940        properties:
  1941          n2NotifySubscriptionId:
  1942            type: string
  1943          supportedFeatures:
  1944            pattern: ^[A-Fa-f0-9]*$
  1945            type: string
  1946        required:
  1947        - n2NotifySubscriptionId
  1948        type: object
  1949      UeN1N2InfoSubscriptionCreateData:
  1950        example:
  1951          nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  1952          supportedFeatures: supportedFeatures
  1953          n2NotifyCallbackUri: n2NotifyCallbackUri
  1954          n1NotifyCallbackUri: n1NotifyCallbackUri
  1955        properties:
  1956          n2InformationClass:
  1957            $ref: '#/components/schemas/N2InformationClass'
  1958          n2NotifyCallbackUri:
  1959            type: string
  1960          n1MessageClass:
  1961            $ref: '#/components/schemas/N1MessageClass'
  1962          n1NotifyCallbackUri:
  1963            type: string
  1964          nfId:
  1965            format: uuid
  1966            type: string
  1967          supportedFeatures:
  1968            pattern: ^[A-Fa-f0-9]*$
  1969            type: string
  1970        type: object
  1971      UeN1N2InfoSubscriptionCreatedData:
  1972        example:
  1973          supportedFeatures: supportedFeatures
  1974          n1n2NotifySubscriptionId: n1n2NotifySubscriptionId
  1975        properties:
  1976          n1n2NotifySubscriptionId:
  1977            type: string
  1978          supportedFeatures:
  1979            pattern: ^[A-Fa-f0-9]*$
  1980            type: string
  1981        required:
  1982        - n1n2NotifySubscriptionId
  1983        type: object
  1984      N2InformationNotification:
  1985        properties:
  1986          n2NotifySubscriptionId:
  1987            type: string
  1988          n2InfoContainer:
  1989            $ref: '#/components/schemas/N2InfoContainer'
  1990          toReleaseSessionList:
  1991            items:
  1992              $ref: '#/components/schemas/PduSessionId'
  1993            minItems: 1
  1994            type: array
  1995          lcsCorrelationId:
  1996            maxLength: 255
  1997            minLength: 1
  1998            type: string
  1999          notifyReason:
  2000            $ref: '#/components/schemas/N2InfoNotifyReason'
  2001        required:
  2002        - n2NotifySubscriptionId
  2003        type: object
  2004      N2InfoContainer:
  2005        properties:
  2006          n2InformationClass:
  2007            $ref: '#/components/schemas/N2InformationClass'
  2008          smInfo:
  2009            $ref: '#/components/schemas/N2SmInformation'
  2010          ranInfo:
  2011            $ref: '#/components/schemas/N2RanInformation'
  2012          nrppaInfo:
  2013            $ref: '#/components/schemas/NrppaInformation'
  2014          pwsInfo:
  2015            $ref: '#/components/schemas/PwsInformation'
  2016        required:
  2017        - n2InformationClass
  2018        type: object
  2019      N1MessageNotification:
  2020        properties:
  2021          n1NotifySubscriptionId:
  2022            type: string
  2023          n1MessageContainer:
  2024            $ref: '#/components/schemas/N1MessageContainer'
  2025          lcsCorrelationId:
  2026            maxLength: 255
  2027            minLength: 1
  2028            type: string
  2029          registrationCtxtContainer:
  2030            $ref: '#/components/schemas/RegistrationContextContainer'
  2031        required:
  2032        - n1MessageContainer
  2033        type: object
  2034      N1MessageContainer:
  2035        properties:
  2036          n1MessageClass:
  2037            $ref: '#/components/schemas/N1MessageClass'
  2038          n1MessageContent:
  2039            $ref: '#/components/schemas/RefToBinaryData'
  2040          nfId:
  2041            format: uuid
  2042            type: string
  2043        required:
  2044        - n1MessageClass
  2045        - n1MessageContent
  2046        type: object
  2047      N1N2MessageTransferReqData:
  2048        properties:
  2049          n1MessageContainer:
  2050            $ref: '#/components/schemas/N1MessageContainer'
  2051          n2InfoContainer:
  2052            $ref: '#/components/schemas/N2InfoContainer'
  2053          skipInd:
  2054            default: false
  2055            type: boolean
  2056          lastMsgIndication:
  2057            type: boolean
  2058          pduSessionId:
  2059            format: int32
  2060            maximum: 255
  2061            minimum: 0
  2062            type: integer
  2063          lcsCorrelationId:
  2064            maxLength: 255
  2065            minLength: 1
  2066            type: string
  2067          ppi:
  2068            format: int32
  2069            maximum: 7
  2070            minimum: 0
  2071            type: integer
  2072          arp:
  2073            $ref: '#/components/schemas/Arp'
  2074          5qi:
  2075            format: int32
  2076            maximum: 255
  2077            minimum: 0
  2078            type: integer
  2079          n1n2FailureTxfNotifURI:
  2080            type: string
  2081          smfReallocationInd:
  2082            default: false
  2083            type: boolean
  2084          areaOfValidity:
  2085            $ref: '#/components/schemas/AreaOfValidity'
  2086          supportedFeatures:
  2087            pattern: ^[A-Fa-f0-9]*$
  2088            type: string
  2089        type: object
  2090      N1N2MessageTransferRspData:
  2091        example:
  2092          supportedFeatures: supportedFeatures
  2093        properties:
  2094          cause:
  2095            $ref: '#/components/schemas/N1N2MessageTransferCause'
  2096          supportedFeatures:
  2097            pattern: ^[A-Fa-f0-9]*$
  2098            type: string
  2099        required:
  2100        - cause
  2101        type: object
  2102      RegistrationContextContainer:
  2103        properties:
  2104          ueContext:
  2105            $ref: '#/components/schemas/UeContext'
  2106          localTimeZone:
  2107            type: string
  2108          anType:
  2109            $ref: '#/components/schemas/AccessType'
  2110          anN2ApId:
  2111            format: int32
  2112            type: integer
  2113          ranNodeId:
  2114            $ref: '#/components/schemas/GlobalRanNodeId'
  2115          initialAmfName:
  2116            type: string
  2117          userLocation:
  2118            $ref: '#/components/schemas/UserLocation'
  2119          rrcEstCause:
  2120            pattern: ^[0-9a-fA-F]+$
  2121            type: string
  2122          ueContextRequest:
  2123            default: false
  2124            type: boolean
  2125          anN2IPv4Addr:
  2126            example: 198.51.100.1
  2127            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])$
  2128            type: string
  2129          anN2IPv6Addr:
  2130            $ref: '#/components/schemas/Ipv6Addr'
  2131          allowedNssai:
  2132            $ref: '#/components/schemas/AllowedNssai'
  2133          configuredNssai:
  2134            items:
  2135              $ref: '#/components/schemas/ConfiguredSnssai'
  2136            minItems: 1
  2137            type: array
  2138          rejectedNssaiInPlmn:
  2139            items:
  2140              $ref: '#/components/schemas/Snssai'
  2141            minItems: 1
  2142            type: array
  2143          rejectedNssaiInTa:
  2144            items:
  2145              $ref: '#/components/schemas/Snssai'
  2146            minItems: 1
  2147            type: array
  2148        required:
  2149        - anN2ApId
  2150        - anType
  2151        - initialAmfName
  2152        - ranNodeId
  2153        - ueContext
  2154        - userLocation
  2155        type: object
  2156      AreaOfValidity:
  2157        properties:
  2158          taiList:
  2159            items:
  2160              $ref: '#/components/schemas/Tai'
  2161            minItems: 0
  2162            type: array
  2163        required:
  2164        - taList
  2165        type: object
  2166      UeContextTransferReqData:
  2167        properties:
  2168          reason:
  2169            $ref: '#/components/schemas/TransferReason'
  2170          accessType:
  2171            $ref: '#/components/schemas/AccessType'
  2172          plmnId:
  2173            $ref: '#/components/schemas/PlmnId'
  2174          regRequest:
  2175            $ref: '#/components/schemas/N1MessageContainer'
  2176          supportedFeatures:
  2177            pattern: ^[A-Fa-f0-9]*$
  2178            type: string
  2179        required:
  2180        - accessType
  2181        - reason
  2182        type: object
  2183      UeContextTransferRspData:
  2184        example:
  2185          ueContext:
  2186            gpsiList:
  2187            - null
  2188            - null
  2189            seafData:
  2190              keyAmfChangeInd: true
  2191              ngKsi:
  2192                ksi: 0
  2193              keyAmf:
  2194                keyVal: keyVal
  2195              keyAmfHDerivationInd: true
  2196              nh: nh
  2197              ncc: 4
  2198            eventSubscriptionList:
  2199            - eventNotifyUri: eventNotifyUri
  2200              nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2201              eventList:
  2202              - subscribedDataFilterList:
  2203                - null
  2204                - null
  2205                areaList:
  2206                - presenceInfo:
  2207                    ecgiList:
  2208                    - eutraCellId: eutraCellId
  2209                      plmnId:
  2210                        mnc: mnc
  2211                        mcc: mcc
  2212                    - eutraCellId: eutraCellId
  2213                      plmnId:
  2214                        mnc: mnc
  2215                        mcc: mcc
  2216                    globalRanNodeIdList:
  2217                    - gNbId:
  2218                        bitLength: 24
  2219                        gNBValue: gNBValue
  2220                      plmnId:
  2221                        mnc: mnc
  2222                        mcc: mcc
  2223                      n3IwfId: n3IwfId
  2224                      ngeNbId: ngeNbId
  2225                    - gNbId:
  2226                        bitLength: 24
  2227                        gNBValue: gNBValue
  2228                      plmnId:
  2229                        mnc: mnc
  2230                        mcc: mcc
  2231                      n3IwfId: n3IwfId
  2232                      ngeNbId: ngeNbId
  2233                    praId: praId
  2234                    trackingAreaList:
  2235                    - tac: tac
  2236                      plmnId:
  2237                        mnc: mnc
  2238                        mcc: mcc
  2239                    - tac: tac
  2240                      plmnId:
  2241                        mnc: mnc
  2242                        mcc: mcc
  2243                    ncgiList:
  2244                    - plmnId:
  2245                        mnc: mnc
  2246                        mcc: mcc
  2247                      nrCellId: nrCellId
  2248                    - plmnId:
  2249                        mnc: mnc
  2250                        mcc: mcc
  2251                      nrCellId: nrCellId
  2252                  ladnInfo:
  2253                    ladn: ladn
  2254                - presenceInfo:
  2255                    ecgiList:
  2256                    - eutraCellId: eutraCellId
  2257                      plmnId:
  2258                        mnc: mnc
  2259                        mcc: mcc
  2260                    - eutraCellId: eutraCellId
  2261                      plmnId:
  2262                        mnc: mnc
  2263                        mcc: mcc
  2264                    globalRanNodeIdList:
  2265                    - gNbId:
  2266                        bitLength: 24
  2267                        gNBValue: gNBValue
  2268                      plmnId:
  2269                        mnc: mnc
  2270                        mcc: mcc
  2271                      n3IwfId: n3IwfId
  2272                      ngeNbId: ngeNbId
  2273                    - gNbId:
  2274                        bitLength: 24
  2275                        gNBValue: gNBValue
  2276                      plmnId:
  2277                        mnc: mnc
  2278                        mcc: mcc
  2279                      n3IwfId: n3IwfId
  2280                      ngeNbId: ngeNbId
  2281                    praId: praId
  2282                    trackingAreaList:
  2283                    - tac: tac
  2284                      plmnId:
  2285                        mnc: mnc
  2286                        mcc: mcc
  2287                    - tac: tac
  2288                      plmnId:
  2289                        mnc: mnc
  2290                        mcc: mcc
  2291                    ncgiList:
  2292                    - plmnId:
  2293                        mnc: mnc
  2294                        mcc: mcc
  2295                      nrCellId: nrCellId
  2296                    - plmnId:
  2297                        mnc: mnc
  2298                        mcc: mcc
  2299                      nrCellId: nrCellId
  2300                  ladnInfo:
  2301                    ladn: ladn
  2302                locationFilterList:
  2303                - null
  2304                - null
  2305                immediateFlag: true
  2306              - subscribedDataFilterList:
  2307                - null
  2308                - null
  2309                areaList:
  2310                - presenceInfo:
  2311                    ecgiList:
  2312                    - eutraCellId: eutraCellId
  2313                      plmnId:
  2314                        mnc: mnc
  2315                        mcc: mcc
  2316                    - eutraCellId: eutraCellId
  2317                      plmnId:
  2318                        mnc: mnc
  2319                        mcc: mcc
  2320                    globalRanNodeIdList:
  2321                    - gNbId:
  2322                        bitLength: 24
  2323                        gNBValue: gNBValue
  2324                      plmnId:
  2325                        mnc: mnc
  2326                        mcc: mcc
  2327                      n3IwfId: n3IwfId
  2328                      ngeNbId: ngeNbId
  2329                    - gNbId:
  2330                        bitLength: 24
  2331                        gNBValue: gNBValue
  2332                      plmnId:
  2333                        mnc: mnc
  2334                        mcc: mcc
  2335                      n3IwfId: n3IwfId
  2336                      ngeNbId: ngeNbId
  2337                    praId: praId
  2338                    trackingAreaList:
  2339                    - tac: tac
  2340                      plmnId:
  2341                        mnc: mnc
  2342                        mcc: mcc
  2343                    - tac: tac
  2344                      plmnId:
  2345                        mnc: mnc
  2346                        mcc: mcc
  2347                    ncgiList:
  2348                    - plmnId:
  2349                        mnc: mnc
  2350                        mcc: mcc
  2351                      nrCellId: nrCellId
  2352                    - plmnId:
  2353                        mnc: mnc
  2354                        mcc: mcc
  2355                      nrCellId: nrCellId
  2356                  ladnInfo:
  2357                    ladn: ladn
  2358                - presenceInfo:
  2359                    ecgiList:
  2360                    - eutraCellId: eutraCellId
  2361                      plmnId:
  2362                        mnc: mnc
  2363                        mcc: mcc
  2364                    - eutraCellId: eutraCellId
  2365                      plmnId:
  2366                        mnc: mnc
  2367                        mcc: mcc
  2368                    globalRanNodeIdList:
  2369                    - gNbId:
  2370                        bitLength: 24
  2371                        gNBValue: gNBValue
  2372                      plmnId:
  2373                        mnc: mnc
  2374                        mcc: mcc
  2375                      n3IwfId: n3IwfId
  2376                      ngeNbId: ngeNbId
  2377                    - gNbId:
  2378                        bitLength: 24
  2379                        gNBValue: gNBValue
  2380                      plmnId:
  2381                        mnc: mnc
  2382                        mcc: mcc
  2383                      n3IwfId: n3IwfId
  2384                      ngeNbId: ngeNbId
  2385                    praId: praId
  2386                    trackingAreaList:
  2387                    - tac: tac
  2388                      plmnId:
  2389                        mnc: mnc
  2390                        mcc: mcc
  2391                    - tac: tac
  2392                      plmnId:
  2393                        mnc: mnc
  2394                        mcc: mcc
  2395                    ncgiList:
  2396                    - plmnId:
  2397                        mnc: mnc
  2398                        mcc: mcc
  2399                      nrCellId: nrCellId
  2400                    - plmnId:
  2401                        mnc: mnc
  2402                        mcc: mcc
  2403                      nrCellId: nrCellId
  2404                  ladnInfo:
  2405                    ladn: ladn
  2406                locationFilterList:
  2407                - null
  2408                - null
  2409                immediateFlag: true
  2410              subsChangeNotifyUri: subsChangeNotifyUri
  2411              pei: pei
  2412              anyUE: true
  2413              groupId: groupId
  2414              options:
  2415                expiry: 2000-01-23T04:56:07.000+00:00
  2416                maxReports: 7
  2417              supi: supi
  2418              notifyCorrelationId: notifyCorrelationId
  2419              subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  2420              gpsi: gpsi
  2421            - eventNotifyUri: eventNotifyUri
  2422              nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2423              eventList:
  2424              - subscribedDataFilterList:
  2425                - null
  2426                - null
  2427                areaList:
  2428                - presenceInfo:
  2429                    ecgiList:
  2430                    - eutraCellId: eutraCellId
  2431                      plmnId:
  2432                        mnc: mnc
  2433                        mcc: mcc
  2434                    - eutraCellId: eutraCellId
  2435                      plmnId:
  2436                        mnc: mnc
  2437                        mcc: mcc
  2438                    globalRanNodeIdList:
  2439                    - gNbId:
  2440                        bitLength: 24
  2441                        gNBValue: gNBValue
  2442                      plmnId:
  2443                        mnc: mnc
  2444                        mcc: mcc
  2445                      n3IwfId: n3IwfId
  2446                      ngeNbId: ngeNbId
  2447                    - gNbId:
  2448                        bitLength: 24
  2449                        gNBValue: gNBValue
  2450                      plmnId:
  2451                        mnc: mnc
  2452                        mcc: mcc
  2453                      n3IwfId: n3IwfId
  2454                      ngeNbId: ngeNbId
  2455                    praId: praId
  2456                    trackingAreaList:
  2457                    - tac: tac
  2458                      plmnId:
  2459                        mnc: mnc
  2460                        mcc: mcc
  2461                    - tac: tac
  2462                      plmnId:
  2463                        mnc: mnc
  2464                        mcc: mcc
  2465                    ncgiList:
  2466                    - plmnId:
  2467                        mnc: mnc
  2468                        mcc: mcc
  2469                      nrCellId: nrCellId
  2470                    - plmnId:
  2471                        mnc: mnc
  2472                        mcc: mcc
  2473                      nrCellId: nrCellId
  2474                  ladnInfo:
  2475                    ladn: ladn
  2476                - presenceInfo:
  2477                    ecgiList:
  2478                    - eutraCellId: eutraCellId
  2479                      plmnId:
  2480                        mnc: mnc
  2481                        mcc: mcc
  2482                    - eutraCellId: eutraCellId
  2483                      plmnId:
  2484                        mnc: mnc
  2485                        mcc: mcc
  2486                    globalRanNodeIdList:
  2487                    - gNbId:
  2488                        bitLength: 24
  2489                        gNBValue: gNBValue
  2490                      plmnId:
  2491                        mnc: mnc
  2492                        mcc: mcc
  2493                      n3IwfId: n3IwfId
  2494                      ngeNbId: ngeNbId
  2495                    - gNbId:
  2496                        bitLength: 24
  2497                        gNBValue: gNBValue
  2498                      plmnId:
  2499                        mnc: mnc
  2500                        mcc: mcc
  2501                      n3IwfId: n3IwfId
  2502                      ngeNbId: ngeNbId
  2503                    praId: praId
  2504                    trackingAreaList:
  2505                    - tac: tac
  2506                      plmnId:
  2507                        mnc: mnc
  2508                        mcc: mcc
  2509                    - tac: tac
  2510                      plmnId:
  2511                        mnc: mnc
  2512                        mcc: mcc
  2513                    ncgiList:
  2514                    - plmnId:
  2515                        mnc: mnc
  2516                        mcc: mcc
  2517                      nrCellId: nrCellId
  2518                    - plmnId:
  2519                        mnc: mnc
  2520                        mcc: mcc
  2521                      nrCellId: nrCellId
  2522                  ladnInfo:
  2523                    ladn: ladn
  2524                locationFilterList:
  2525                - null
  2526                - null
  2527                immediateFlag: true
  2528              - subscribedDataFilterList:
  2529                - null
  2530                - null
  2531                areaList:
  2532                - presenceInfo:
  2533                    ecgiList:
  2534                    - eutraCellId: eutraCellId
  2535                      plmnId:
  2536                        mnc: mnc
  2537                        mcc: mcc
  2538                    - eutraCellId: eutraCellId
  2539                      plmnId:
  2540                        mnc: mnc
  2541                        mcc: mcc
  2542                    globalRanNodeIdList:
  2543                    - gNbId:
  2544                        bitLength: 24
  2545                        gNBValue: gNBValue
  2546                      plmnId:
  2547                        mnc: mnc
  2548                        mcc: mcc
  2549                      n3IwfId: n3IwfId
  2550                      ngeNbId: ngeNbId
  2551                    - gNbId:
  2552                        bitLength: 24
  2553                        gNBValue: gNBValue
  2554                      plmnId:
  2555                        mnc: mnc
  2556                        mcc: mcc
  2557                      n3IwfId: n3IwfId
  2558                      ngeNbId: ngeNbId
  2559                    praId: praId
  2560                    trackingAreaList:
  2561                    - tac: tac
  2562                      plmnId:
  2563                        mnc: mnc
  2564                        mcc: mcc
  2565                    - tac: tac
  2566                      plmnId:
  2567                        mnc: mnc
  2568                        mcc: mcc
  2569                    ncgiList:
  2570                    - plmnId:
  2571                        mnc: mnc
  2572                        mcc: mcc
  2573                      nrCellId: nrCellId
  2574                    - plmnId:
  2575                        mnc: mnc
  2576                        mcc: mcc
  2577                      nrCellId: nrCellId
  2578                  ladnInfo:
  2579                    ladn: ladn
  2580                - presenceInfo:
  2581                    ecgiList:
  2582                    - eutraCellId: eutraCellId
  2583                      plmnId:
  2584                        mnc: mnc
  2585                        mcc: mcc
  2586                    - eutraCellId: eutraCellId
  2587                      plmnId:
  2588                        mnc: mnc
  2589                        mcc: mcc
  2590                    globalRanNodeIdList:
  2591                    - gNbId:
  2592                        bitLength: 24
  2593                        gNBValue: gNBValue
  2594                      plmnId:
  2595                        mnc: mnc
  2596                        mcc: mcc
  2597                      n3IwfId: n3IwfId
  2598                      ngeNbId: ngeNbId
  2599                    - gNbId:
  2600                        bitLength: 24
  2601                        gNBValue: gNBValue
  2602                      plmnId:
  2603                        mnc: mnc
  2604                        mcc: mcc
  2605                      n3IwfId: n3IwfId
  2606                      ngeNbId: ngeNbId
  2607                    praId: praId
  2608                    trackingAreaList:
  2609                    - tac: tac
  2610                      plmnId:
  2611                        mnc: mnc
  2612                        mcc: mcc
  2613                    - tac: tac
  2614                      plmnId:
  2615                        mnc: mnc
  2616                        mcc: mcc
  2617                    ncgiList:
  2618                    - plmnId:
  2619                        mnc: mnc
  2620                        mcc: mcc
  2621                      nrCellId: nrCellId
  2622                    - plmnId:
  2623                        mnc: mnc
  2624                        mcc: mcc
  2625                      nrCellId: nrCellId
  2626                  ladnInfo:
  2627                    ladn: ladn
  2628                locationFilterList:
  2629                - null
  2630                - null
  2631                immediateFlag: true
  2632              subsChangeNotifyUri: subsChangeNotifyUri
  2633              pei: pei
  2634              anyUE: true
  2635              groupId: groupId
  2636              options:
  2637                expiry: 2000-01-23T04:56:07.000+00:00
  2638                maxReports: 7
  2639              supi: supi
  2640              notifyCorrelationId: notifyCorrelationId
  2641              subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  2642              gpsi: gpsi
  2643            drxParameter: drxParameter
  2644            5gMmCapability: 5gMmCapability
  2645            subUeAmbr:
  2646              uplink: uplink
  2647              downlink: downlink
  2648            forbiddenAreaList:
  2649            - areaCodes: areaCodes
  2650              tacs:
  2651              - null
  2652              - null
  2653            - areaCodes: areaCodes
  2654              tacs:
  2655              - null
  2656              - null
  2657            pei: pei
  2658            pcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2659            ausfGroupId: ausfGroupId
  2660            smsfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2661            amPolicyReqTriggerList:
  2662            - null
  2663            - null
  2664            mmContextList:
  2665            - nssaiMappingList:
  2666              - hSnssai:
  2667                  sd: sd
  2668                  sst: 51
  2669                mappedSnssai:
  2670                  sd: sd
  2671                  sst: 51
  2672              - hSnssai:
  2673                  sd: sd
  2674                  sst: 51
  2675                mappedSnssai:
  2676                  sd: sd
  2677                  sst: 51
  2678              nsInstanceList:
  2679              - null
  2680              - null
  2681              nasSecurityMode: {}
  2682              nasDownlinkCount: 0
  2683              allowedNssai:
  2684              - sd: sd
  2685                sst: 51
  2686              - sd: sd
  2687                sst: 51
  2688              nasUplinkCount: 0
  2689              expectedUEbehavior:
  2690                validityTime: 2000-01-23T04:56:07.000+00:00
  2691                expMoveTrajectory:
  2692                - eutraLocation:
  2693                    geographicalInformation: geographicalInformation
  2694                    globalNgenbId:
  2695                      gNbId:
  2696                        bitLength: 24
  2697                        gNBValue: gNBValue
  2698                      plmnId:
  2699                        mnc: mnc
  2700                        mcc: mcc
  2701                      n3IwfId: n3IwfId
  2702                      ngeNbId: ngeNbId
  2703                    ageOfLocationInformation: 13583
  2704                    tai:
  2705                      tac: tac
  2706                      plmnId:
  2707                        mnc: mnc
  2708                        mcc: mcc
  2709                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2710                    geodeticInformation: geodeticInformation
  2711                    ecgi:
  2712                      eutraCellId: eutraCellId
  2713                      plmnId:
  2714                        mnc: mnc
  2715                        mcc: mcc
  2716                  nrLocation:
  2717                    geographicalInformation: geographicalInformation
  2718                    globalGnbId:
  2719                      gNbId:
  2720                        bitLength: 24
  2721                        gNBValue: gNBValue
  2722                      plmnId:
  2723                        mnc: mnc
  2724                        mcc: mcc
  2725                      n3IwfId: n3IwfId
  2726                      ngeNbId: ngeNbId
  2727                    ageOfLocationInformation: 24202
  2728                    ncgi:
  2729                      plmnId:
  2730                        mnc: mnc
  2731                        mcc: mcc
  2732                      nrCellId: nrCellId
  2733                    tai:
  2734                      tac: tac
  2735                      plmnId:
  2736                        mnc: mnc
  2737                        mcc: mcc
  2738                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2739                    geodeticInformation: geodeticInformation
  2740                  n3gaLocation:
  2741                    ueIpv4Addr: 198.51.100.1
  2742                    n3gppTai:
  2743                      tac: tac
  2744                      plmnId:
  2745                        mnc: mnc
  2746                        mcc: mcc
  2747                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2748                    n3IwfId: n3IwfId
  2749                    portNumber: 0
  2750                - eutraLocation:
  2751                    geographicalInformation: geographicalInformation
  2752                    globalNgenbId:
  2753                      gNbId:
  2754                        bitLength: 24
  2755                        gNBValue: gNBValue
  2756                      plmnId:
  2757                        mnc: mnc
  2758                        mcc: mcc
  2759                      n3IwfId: n3IwfId
  2760                      ngeNbId: ngeNbId
  2761                    ageOfLocationInformation: 13583
  2762                    tai:
  2763                      tac: tac
  2764                      plmnId:
  2765                        mnc: mnc
  2766                        mcc: mcc
  2767                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2768                    geodeticInformation: geodeticInformation
  2769                    ecgi:
  2770                      eutraCellId: eutraCellId
  2771                      plmnId:
  2772                        mnc: mnc
  2773                        mcc: mcc
  2774                  nrLocation:
  2775                    geographicalInformation: geographicalInformation
  2776                    globalGnbId:
  2777                      gNbId:
  2778                        bitLength: 24
  2779                        gNBValue: gNBValue
  2780                      plmnId:
  2781                        mnc: mnc
  2782                        mcc: mcc
  2783                      n3IwfId: n3IwfId
  2784                      ngeNbId: ngeNbId
  2785                    ageOfLocationInformation: 24202
  2786                    ncgi:
  2787                      plmnId:
  2788                        mnc: mnc
  2789                        mcc: mcc
  2790                      nrCellId: nrCellId
  2791                    tai:
  2792                      tac: tac
  2793                      plmnId:
  2794                        mnc: mnc
  2795                        mcc: mcc
  2796                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2797                    geodeticInformation: geodeticInformation
  2798                  n3gaLocation:
  2799                    ueIpv4Addr: 198.51.100.1
  2800                    n3gppTai:
  2801                      tac: tac
  2802                      plmnId:
  2803                        mnc: mnc
  2804                        mcc: mcc
  2805                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2806                    n3IwfId: n3IwfId
  2807                    portNumber: 0
  2808              s1UeNetworkCapability: s1UeNetworkCapability
  2809              ueSecurityCapability: ueSecurityCapability
  2810            - nssaiMappingList:
  2811              - hSnssai:
  2812                  sd: sd
  2813                  sst: 51
  2814                mappedSnssai:
  2815                  sd: sd
  2816                  sst: 51
  2817              - hSnssai:
  2818                  sd: sd
  2819                  sst: 51
  2820                mappedSnssai:
  2821                  sd: sd
  2822                  sst: 51
  2823              nsInstanceList:
  2824              - null
  2825              - null
  2826              nasSecurityMode: {}
  2827              nasDownlinkCount: 0
  2828              allowedNssai:
  2829              - sd: sd
  2830                sst: 51
  2831              - sd: sd
  2832                sst: 51
  2833              nasUplinkCount: 0
  2834              expectedUEbehavior:
  2835                validityTime: 2000-01-23T04:56:07.000+00:00
  2836                expMoveTrajectory:
  2837                - eutraLocation:
  2838                    geographicalInformation: geographicalInformation
  2839                    globalNgenbId:
  2840                      gNbId:
  2841                        bitLength: 24
  2842                        gNBValue: gNBValue
  2843                      plmnId:
  2844                        mnc: mnc
  2845                        mcc: mcc
  2846                      n3IwfId: n3IwfId
  2847                      ngeNbId: ngeNbId
  2848                    ageOfLocationInformation: 13583
  2849                    tai:
  2850                      tac: tac
  2851                      plmnId:
  2852                        mnc: mnc
  2853                        mcc: mcc
  2854                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2855                    geodeticInformation: geodeticInformation
  2856                    ecgi:
  2857                      eutraCellId: eutraCellId
  2858                      plmnId:
  2859                        mnc: mnc
  2860                        mcc: mcc
  2861                  nrLocation:
  2862                    geographicalInformation: geographicalInformation
  2863                    globalGnbId:
  2864                      gNbId:
  2865                        bitLength: 24
  2866                        gNBValue: gNBValue
  2867                      plmnId:
  2868                        mnc: mnc
  2869                        mcc: mcc
  2870                      n3IwfId: n3IwfId
  2871                      ngeNbId: ngeNbId
  2872                    ageOfLocationInformation: 24202
  2873                    ncgi:
  2874                      plmnId:
  2875                        mnc: mnc
  2876                        mcc: mcc
  2877                      nrCellId: nrCellId
  2878                    tai:
  2879                      tac: tac
  2880                      plmnId:
  2881                        mnc: mnc
  2882                        mcc: mcc
  2883                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2884                    geodeticInformation: geodeticInformation
  2885                  n3gaLocation:
  2886                    ueIpv4Addr: 198.51.100.1
  2887                    n3gppTai:
  2888                      tac: tac
  2889                      plmnId:
  2890                        mnc: mnc
  2891                        mcc: mcc
  2892                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2893                    n3IwfId: n3IwfId
  2894                    portNumber: 0
  2895                - eutraLocation:
  2896                    geographicalInformation: geographicalInformation
  2897                    globalNgenbId:
  2898                      gNbId:
  2899                        bitLength: 24
  2900                        gNBValue: gNBValue
  2901                      plmnId:
  2902                        mnc: mnc
  2903                        mcc: mcc
  2904                      n3IwfId: n3IwfId
  2905                      ngeNbId: ngeNbId
  2906                    ageOfLocationInformation: 13583
  2907                    tai:
  2908                      tac: tac
  2909                      plmnId:
  2910                        mnc: mnc
  2911                        mcc: mcc
  2912                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2913                    geodeticInformation: geodeticInformation
  2914                    ecgi:
  2915                      eutraCellId: eutraCellId
  2916                      plmnId:
  2917                        mnc: mnc
  2918                        mcc: mcc
  2919                  nrLocation:
  2920                    geographicalInformation: geographicalInformation
  2921                    globalGnbId:
  2922                      gNbId:
  2923                        bitLength: 24
  2924                        gNBValue: gNBValue
  2925                      plmnId:
  2926                        mnc: mnc
  2927                        mcc: mcc
  2928                      n3IwfId: n3IwfId
  2929                      ngeNbId: ngeNbId
  2930                    ageOfLocationInformation: 24202
  2931                    ncgi:
  2932                      plmnId:
  2933                        mnc: mnc
  2934                        mcc: mcc
  2935                      nrCellId: nrCellId
  2936                    tai:
  2937                      tac: tac
  2938                      plmnId:
  2939                        mnc: mnc
  2940                        mcc: mcc
  2941                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  2942                    geodeticInformation: geodeticInformation
  2943                  n3gaLocation:
  2944                    ueIpv4Addr: 198.51.100.1
  2945                    n3gppTai:
  2946                      tac: tac
  2947                      plmnId:
  2948                        mnc: mnc
  2949                        mcc: mcc
  2950                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2951                    n3IwfId: n3IwfId
  2952                    portNumber: 0
  2953              s1UeNetworkCapability: s1UeNetworkCapability
  2954              ueSecurityCapability: ueSecurityCapability
  2955            supiUnauthInd: true
  2956            routingIndicator: routingIndicator
  2957            groupList:
  2958            - null
  2959            - null
  2960            pcfAmPolicyUri: pcfAmPolicyUri
  2961            traceData:
  2962              eventList: eventList
  2963              collectionEntityIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  2964              collectionEntityIpv4Addr: 198.51.100.1
  2965              traceRef: traceRef
  2966              interfaceList: interfaceList
  2967              neTypeList: neTypeList
  2968            supi: supi
  2969            subRfsp: 21
  2970            sessionContextList:
  2971            - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2972              allocatedEbiList:
  2973              - epsBearerId: 2
  2974                arp:
  2975                  priorityLevel: 10
  2976              - epsBearerId: 2
  2977                arp:
  2978                  priorityLevel: 10
  2979              vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2980              dnn: dnn
  2981              nsInstance: nsInstance
  2982              pduSessionId: 26
  2983              sNssai:
  2984                sd: sd
  2985                sst: 51
  2986              smContextRef: smContextRef
  2987            - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2988              allocatedEbiList:
  2989              - epsBearerId: 2
  2990                arp:
  2991                  priorityLevel: 10
  2992              - epsBearerId: 2
  2993                arp:
  2994                  priorityLevel: 10
  2995              vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  2996              dnn: dnn
  2997              nsInstance: nsInstance
  2998              pduSessionId: 26
  2999              sNssai:
  3000                sd: sd
  3001                sst: 51
  3002              smContextRef: smContextRef
  3003            hpcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3004            restrictedRatList:
  3005            - null
  3006            - null
  3007            serviceAreaRestriction:
  3008              maxNumOfTAs: 0
  3009              areas:
  3010              - areaCodes: areaCodes
  3011                tacs:
  3012                - null
  3013                - null
  3014              - areaCodes: areaCodes
  3015                tacs:
  3016                - null
  3017                - null
  3018            usedRfsp: 154
  3019            restrictedCoreNwTypeList:
  3020            - null
  3021            - null
  3022            udmGroupId: udmGroupId
  3023          ueRadioCapability:
  3024            ngapData:
  3025              contentId: contentId
  3026            ngapMessageType: 0
  3027          supportedFeatures: supportedFeatures
  3028        properties:
  3029          ueContext:
  3030            $ref: '#/components/schemas/UeContext'
  3031          ueRadioCapability:
  3032            $ref: '#/components/schemas/N2InfoContent'
  3033          supportedFeatures:
  3034            pattern: ^[A-Fa-f0-9]*$
  3035            type: string
  3036        required:
  3037        - ueContext
  3038        type: object
  3039      UeContext:
  3040        example:
  3041          gpsiList:
  3042          - null
  3043          - null
  3044          seafData:
  3045            keyAmfChangeInd: true
  3046            ngKsi:
  3047              ksi: 0
  3048            keyAmf:
  3049              keyVal: keyVal
  3050            keyAmfHDerivationInd: true
  3051            nh: nh
  3052            ncc: 4
  3053          eventSubscriptionList:
  3054          - eventNotifyUri: eventNotifyUri
  3055            nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3056            eventList:
  3057            - subscribedDataFilterList:
  3058              - null
  3059              - null
  3060              areaList:
  3061              - presenceInfo:
  3062                  ecgiList:
  3063                  - eutraCellId: eutraCellId
  3064                    plmnId:
  3065                      mnc: mnc
  3066                      mcc: mcc
  3067                  - eutraCellId: eutraCellId
  3068                    plmnId:
  3069                      mnc: mnc
  3070                      mcc: mcc
  3071                  globalRanNodeIdList:
  3072                  - gNbId:
  3073                      bitLength: 24
  3074                      gNBValue: gNBValue
  3075                    plmnId:
  3076                      mnc: mnc
  3077                      mcc: mcc
  3078                    n3IwfId: n3IwfId
  3079                    ngeNbId: ngeNbId
  3080                  - gNbId:
  3081                      bitLength: 24
  3082                      gNBValue: gNBValue
  3083                    plmnId:
  3084                      mnc: mnc
  3085                      mcc: mcc
  3086                    n3IwfId: n3IwfId
  3087                    ngeNbId: ngeNbId
  3088                  praId: praId
  3089                  trackingAreaList:
  3090                  - tac: tac
  3091                    plmnId:
  3092                      mnc: mnc
  3093                      mcc: mcc
  3094                  - tac: tac
  3095                    plmnId:
  3096                      mnc: mnc
  3097                      mcc: mcc
  3098                  ncgiList:
  3099                  - plmnId:
  3100                      mnc: mnc
  3101                      mcc: mcc
  3102                    nrCellId: nrCellId
  3103                  - plmnId:
  3104                      mnc: mnc
  3105                      mcc: mcc
  3106                    nrCellId: nrCellId
  3107                ladnInfo:
  3108                  ladn: ladn
  3109              - presenceInfo:
  3110                  ecgiList:
  3111                  - eutraCellId: eutraCellId
  3112                    plmnId:
  3113                      mnc: mnc
  3114                      mcc: mcc
  3115                  - eutraCellId: eutraCellId
  3116                    plmnId:
  3117                      mnc: mnc
  3118                      mcc: mcc
  3119                  globalRanNodeIdList:
  3120                  - gNbId:
  3121                      bitLength: 24
  3122                      gNBValue: gNBValue
  3123                    plmnId:
  3124                      mnc: mnc
  3125                      mcc: mcc
  3126                    n3IwfId: n3IwfId
  3127                    ngeNbId: ngeNbId
  3128                  - gNbId:
  3129                      bitLength: 24
  3130                      gNBValue: gNBValue
  3131                    plmnId:
  3132                      mnc: mnc
  3133                      mcc: mcc
  3134                    n3IwfId: n3IwfId
  3135                    ngeNbId: ngeNbId
  3136                  praId: praId
  3137                  trackingAreaList:
  3138                  - tac: tac
  3139                    plmnId:
  3140                      mnc: mnc
  3141                      mcc: mcc
  3142                  - tac: tac
  3143                    plmnId:
  3144                      mnc: mnc
  3145                      mcc: mcc
  3146                  ncgiList:
  3147                  - plmnId:
  3148                      mnc: mnc
  3149                      mcc: mcc
  3150                    nrCellId: nrCellId
  3151                  - plmnId:
  3152                      mnc: mnc
  3153                      mcc: mcc
  3154                    nrCellId: nrCellId
  3155                ladnInfo:
  3156                  ladn: ladn
  3157              locationFilterList:
  3158              - null
  3159              - null
  3160              immediateFlag: true
  3161            - subscribedDataFilterList:
  3162              - null
  3163              - null
  3164              areaList:
  3165              - presenceInfo:
  3166                  ecgiList:
  3167                  - eutraCellId: eutraCellId
  3168                    plmnId:
  3169                      mnc: mnc
  3170                      mcc: mcc
  3171                  - eutraCellId: eutraCellId
  3172                    plmnId:
  3173                      mnc: mnc
  3174                      mcc: mcc
  3175                  globalRanNodeIdList:
  3176                  - gNbId:
  3177                      bitLength: 24
  3178                      gNBValue: gNBValue
  3179                    plmnId:
  3180                      mnc: mnc
  3181                      mcc: mcc
  3182                    n3IwfId: n3IwfId
  3183                    ngeNbId: ngeNbId
  3184                  - gNbId:
  3185                      bitLength: 24
  3186                      gNBValue: gNBValue
  3187                    plmnId:
  3188                      mnc: mnc
  3189                      mcc: mcc
  3190                    n3IwfId: n3IwfId
  3191                    ngeNbId: ngeNbId
  3192                  praId: praId
  3193                  trackingAreaList:
  3194                  - tac: tac
  3195                    plmnId:
  3196                      mnc: mnc
  3197                      mcc: mcc
  3198                  - tac: tac
  3199                    plmnId:
  3200                      mnc: mnc
  3201                      mcc: mcc
  3202                  ncgiList:
  3203                  - plmnId:
  3204                      mnc: mnc
  3205                      mcc: mcc
  3206                    nrCellId: nrCellId
  3207                  - plmnId:
  3208                      mnc: mnc
  3209                      mcc: mcc
  3210                    nrCellId: nrCellId
  3211                ladnInfo:
  3212                  ladn: ladn
  3213              - presenceInfo:
  3214                  ecgiList:
  3215                  - eutraCellId: eutraCellId
  3216                    plmnId:
  3217                      mnc: mnc
  3218                      mcc: mcc
  3219                  - eutraCellId: eutraCellId
  3220                    plmnId:
  3221                      mnc: mnc
  3222                      mcc: mcc
  3223                  globalRanNodeIdList:
  3224                  - gNbId:
  3225                      bitLength: 24
  3226                      gNBValue: gNBValue
  3227                    plmnId:
  3228                      mnc: mnc
  3229                      mcc: mcc
  3230                    n3IwfId: n3IwfId
  3231                    ngeNbId: ngeNbId
  3232                  - gNbId:
  3233                      bitLength: 24
  3234                      gNBValue: gNBValue
  3235                    plmnId:
  3236                      mnc: mnc
  3237                      mcc: mcc
  3238                    n3IwfId: n3IwfId
  3239                    ngeNbId: ngeNbId
  3240                  praId: praId
  3241                  trackingAreaList:
  3242                  - tac: tac
  3243                    plmnId:
  3244                      mnc: mnc
  3245                      mcc: mcc
  3246                  - tac: tac
  3247                    plmnId:
  3248                      mnc: mnc
  3249                      mcc: mcc
  3250                  ncgiList:
  3251                  - plmnId:
  3252                      mnc: mnc
  3253                      mcc: mcc
  3254                    nrCellId: nrCellId
  3255                  - plmnId:
  3256                      mnc: mnc
  3257                      mcc: mcc
  3258                    nrCellId: nrCellId
  3259                ladnInfo:
  3260                  ladn: ladn
  3261              locationFilterList:
  3262              - null
  3263              - null
  3264              immediateFlag: true
  3265            subsChangeNotifyUri: subsChangeNotifyUri
  3266            pei: pei
  3267            anyUE: true
  3268            groupId: groupId
  3269            options:
  3270              expiry: 2000-01-23T04:56:07.000+00:00
  3271              maxReports: 7
  3272            supi: supi
  3273            notifyCorrelationId: notifyCorrelationId
  3274            subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  3275            gpsi: gpsi
  3276          - eventNotifyUri: eventNotifyUri
  3277            nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3278            eventList:
  3279            - subscribedDataFilterList:
  3280              - null
  3281              - null
  3282              areaList:
  3283              - presenceInfo:
  3284                  ecgiList:
  3285                  - eutraCellId: eutraCellId
  3286                    plmnId:
  3287                      mnc: mnc
  3288                      mcc: mcc
  3289                  - eutraCellId: eutraCellId
  3290                    plmnId:
  3291                      mnc: mnc
  3292                      mcc: mcc
  3293                  globalRanNodeIdList:
  3294                  - gNbId:
  3295                      bitLength: 24
  3296                      gNBValue: gNBValue
  3297                    plmnId:
  3298                      mnc: mnc
  3299                      mcc: mcc
  3300                    n3IwfId: n3IwfId
  3301                    ngeNbId: ngeNbId
  3302                  - gNbId:
  3303                      bitLength: 24
  3304                      gNBValue: gNBValue
  3305                    plmnId:
  3306                      mnc: mnc
  3307                      mcc: mcc
  3308                    n3IwfId: n3IwfId
  3309                    ngeNbId: ngeNbId
  3310                  praId: praId
  3311                  trackingAreaList:
  3312                  - tac: tac
  3313                    plmnId:
  3314                      mnc: mnc
  3315                      mcc: mcc
  3316                  - tac: tac
  3317                    plmnId:
  3318                      mnc: mnc
  3319                      mcc: mcc
  3320                  ncgiList:
  3321                  - plmnId:
  3322                      mnc: mnc
  3323                      mcc: mcc
  3324                    nrCellId: nrCellId
  3325                  - plmnId:
  3326                      mnc: mnc
  3327                      mcc: mcc
  3328                    nrCellId: nrCellId
  3329                ladnInfo:
  3330                  ladn: ladn
  3331              - presenceInfo:
  3332                  ecgiList:
  3333                  - eutraCellId: eutraCellId
  3334                    plmnId:
  3335                      mnc: mnc
  3336                      mcc: mcc
  3337                  - eutraCellId: eutraCellId
  3338                    plmnId:
  3339                      mnc: mnc
  3340                      mcc: mcc
  3341                  globalRanNodeIdList:
  3342                  - gNbId:
  3343                      bitLength: 24
  3344                      gNBValue: gNBValue
  3345                    plmnId:
  3346                      mnc: mnc
  3347                      mcc: mcc
  3348                    n3IwfId: n3IwfId
  3349                    ngeNbId: ngeNbId
  3350                  - gNbId:
  3351                      bitLength: 24
  3352                      gNBValue: gNBValue
  3353                    plmnId:
  3354                      mnc: mnc
  3355                      mcc: mcc
  3356                    n3IwfId: n3IwfId
  3357                    ngeNbId: ngeNbId
  3358                  praId: praId
  3359                  trackingAreaList:
  3360                  - tac: tac
  3361                    plmnId:
  3362                      mnc: mnc
  3363                      mcc: mcc
  3364                  - tac: tac
  3365                    plmnId:
  3366                      mnc: mnc
  3367                      mcc: mcc
  3368                  ncgiList:
  3369                  - plmnId:
  3370                      mnc: mnc
  3371                      mcc: mcc
  3372                    nrCellId: nrCellId
  3373                  - plmnId:
  3374                      mnc: mnc
  3375                      mcc: mcc
  3376                    nrCellId: nrCellId
  3377                ladnInfo:
  3378                  ladn: ladn
  3379              locationFilterList:
  3380              - null
  3381              - null
  3382              immediateFlag: true
  3383            - subscribedDataFilterList:
  3384              - null
  3385              - null
  3386              areaList:
  3387              - presenceInfo:
  3388                  ecgiList:
  3389                  - eutraCellId: eutraCellId
  3390                    plmnId:
  3391                      mnc: mnc
  3392                      mcc: mcc
  3393                  - eutraCellId: eutraCellId
  3394                    plmnId:
  3395                      mnc: mnc
  3396                      mcc: mcc
  3397                  globalRanNodeIdList:
  3398                  - gNbId:
  3399                      bitLength: 24
  3400                      gNBValue: gNBValue
  3401                    plmnId:
  3402                      mnc: mnc
  3403                      mcc: mcc
  3404                    n3IwfId: n3IwfId
  3405                    ngeNbId: ngeNbId
  3406                  - gNbId:
  3407                      bitLength: 24
  3408                      gNBValue: gNBValue
  3409                    plmnId:
  3410                      mnc: mnc
  3411                      mcc: mcc
  3412                    n3IwfId: n3IwfId
  3413                    ngeNbId: ngeNbId
  3414                  praId: praId
  3415                  trackingAreaList:
  3416                  - tac: tac
  3417                    plmnId:
  3418                      mnc: mnc
  3419                      mcc: mcc
  3420                  - tac: tac
  3421                    plmnId:
  3422                      mnc: mnc
  3423                      mcc: mcc
  3424                  ncgiList:
  3425                  - plmnId:
  3426                      mnc: mnc
  3427                      mcc: mcc
  3428                    nrCellId: nrCellId
  3429                  - plmnId:
  3430                      mnc: mnc
  3431                      mcc: mcc
  3432                    nrCellId: nrCellId
  3433                ladnInfo:
  3434                  ladn: ladn
  3435              - presenceInfo:
  3436                  ecgiList:
  3437                  - eutraCellId: eutraCellId
  3438                    plmnId:
  3439                      mnc: mnc
  3440                      mcc: mcc
  3441                  - eutraCellId: eutraCellId
  3442                    plmnId:
  3443                      mnc: mnc
  3444                      mcc: mcc
  3445                  globalRanNodeIdList:
  3446                  - gNbId:
  3447                      bitLength: 24
  3448                      gNBValue: gNBValue
  3449                    plmnId:
  3450                      mnc: mnc
  3451                      mcc: mcc
  3452                    n3IwfId: n3IwfId
  3453                    ngeNbId: ngeNbId
  3454                  - gNbId:
  3455                      bitLength: 24
  3456                      gNBValue: gNBValue
  3457                    plmnId:
  3458                      mnc: mnc
  3459                      mcc: mcc
  3460                    n3IwfId: n3IwfId
  3461                    ngeNbId: ngeNbId
  3462                  praId: praId
  3463                  trackingAreaList:
  3464                  - tac: tac
  3465                    plmnId:
  3466                      mnc: mnc
  3467                      mcc: mcc
  3468                  - tac: tac
  3469                    plmnId:
  3470                      mnc: mnc
  3471                      mcc: mcc
  3472                  ncgiList:
  3473                  - plmnId:
  3474                      mnc: mnc
  3475                      mcc: mcc
  3476                    nrCellId: nrCellId
  3477                  - plmnId:
  3478                      mnc: mnc
  3479                      mcc: mcc
  3480                    nrCellId: nrCellId
  3481                ladnInfo:
  3482                  ladn: ladn
  3483              locationFilterList:
  3484              - null
  3485              - null
  3486              immediateFlag: true
  3487            subsChangeNotifyUri: subsChangeNotifyUri
  3488            pei: pei
  3489            anyUE: true
  3490            groupId: groupId
  3491            options:
  3492              expiry: 2000-01-23T04:56:07.000+00:00
  3493              maxReports: 7
  3494            supi: supi
  3495            notifyCorrelationId: notifyCorrelationId
  3496            subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  3497            gpsi: gpsi
  3498          drxParameter: drxParameter
  3499          5gMmCapability: 5gMmCapability
  3500          subUeAmbr:
  3501            uplink: uplink
  3502            downlink: downlink
  3503          forbiddenAreaList:
  3504          - areaCodes: areaCodes
  3505            tacs:
  3506            - null
  3507            - null
  3508          - areaCodes: areaCodes
  3509            tacs:
  3510            - null
  3511            - null
  3512          pei: pei
  3513          pcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3514          ausfGroupId: ausfGroupId
  3515          smsfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3516          amPolicyReqTriggerList:
  3517          - null
  3518          - null
  3519          mmContextList:
  3520          - nssaiMappingList:
  3521            - hSnssai:
  3522                sd: sd
  3523                sst: 51
  3524              mappedSnssai:
  3525                sd: sd
  3526                sst: 51
  3527            - hSnssai:
  3528                sd: sd
  3529                sst: 51
  3530              mappedSnssai:
  3531                sd: sd
  3532                sst: 51
  3533            nsInstanceList:
  3534            - null
  3535            - null
  3536            nasSecurityMode: {}
  3537            nasDownlinkCount: 0
  3538            allowedNssai:
  3539            - sd: sd
  3540              sst: 51
  3541            - sd: sd
  3542              sst: 51
  3543            nasUplinkCount: 0
  3544            expectedUEbehavior:
  3545              validityTime: 2000-01-23T04:56:07.000+00:00
  3546              expMoveTrajectory:
  3547              - eutraLocation:
  3548                  geographicalInformation: geographicalInformation
  3549                  globalNgenbId:
  3550                    gNbId:
  3551                      bitLength: 24
  3552                      gNBValue: gNBValue
  3553                    plmnId:
  3554                      mnc: mnc
  3555                      mcc: mcc
  3556                    n3IwfId: n3IwfId
  3557                    ngeNbId: ngeNbId
  3558                  ageOfLocationInformation: 13583
  3559                  tai:
  3560                    tac: tac
  3561                    plmnId:
  3562                      mnc: mnc
  3563                      mcc: mcc
  3564                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3565                  geodeticInformation: geodeticInformation
  3566                  ecgi:
  3567                    eutraCellId: eutraCellId
  3568                    plmnId:
  3569                      mnc: mnc
  3570                      mcc: mcc
  3571                nrLocation:
  3572                  geographicalInformation: geographicalInformation
  3573                  globalGnbId:
  3574                    gNbId:
  3575                      bitLength: 24
  3576                      gNBValue: gNBValue
  3577                    plmnId:
  3578                      mnc: mnc
  3579                      mcc: mcc
  3580                    n3IwfId: n3IwfId
  3581                    ngeNbId: ngeNbId
  3582                  ageOfLocationInformation: 24202
  3583                  ncgi:
  3584                    plmnId:
  3585                      mnc: mnc
  3586                      mcc: mcc
  3587                    nrCellId: nrCellId
  3588                  tai:
  3589                    tac: tac
  3590                    plmnId:
  3591                      mnc: mnc
  3592                      mcc: mcc
  3593                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3594                  geodeticInformation: geodeticInformation
  3595                n3gaLocation:
  3596                  ueIpv4Addr: 198.51.100.1
  3597                  n3gppTai:
  3598                    tac: tac
  3599                    plmnId:
  3600                      mnc: mnc
  3601                      mcc: mcc
  3602                  ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3603                  n3IwfId: n3IwfId
  3604                  portNumber: 0
  3605              - eutraLocation:
  3606                  geographicalInformation: geographicalInformation
  3607                  globalNgenbId:
  3608                    gNbId:
  3609                      bitLength: 24
  3610                      gNBValue: gNBValue
  3611                    plmnId:
  3612                      mnc: mnc
  3613                      mcc: mcc
  3614                    n3IwfId: n3IwfId
  3615                    ngeNbId: ngeNbId
  3616                  ageOfLocationInformation: 13583
  3617                  tai:
  3618                    tac: tac
  3619                    plmnId:
  3620                      mnc: mnc
  3621                      mcc: mcc
  3622                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3623                  geodeticInformation: geodeticInformation
  3624                  ecgi:
  3625                    eutraCellId: eutraCellId
  3626                    plmnId:
  3627                      mnc: mnc
  3628                      mcc: mcc
  3629                nrLocation:
  3630                  geographicalInformation: geographicalInformation
  3631                  globalGnbId:
  3632                    gNbId:
  3633                      bitLength: 24
  3634                      gNBValue: gNBValue
  3635                    plmnId:
  3636                      mnc: mnc
  3637                      mcc: mcc
  3638                    n3IwfId: n3IwfId
  3639                    ngeNbId: ngeNbId
  3640                  ageOfLocationInformation: 24202
  3641                  ncgi:
  3642                    plmnId:
  3643                      mnc: mnc
  3644                      mcc: mcc
  3645                    nrCellId: nrCellId
  3646                  tai:
  3647                    tac: tac
  3648                    plmnId:
  3649                      mnc: mnc
  3650                      mcc: mcc
  3651                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3652                  geodeticInformation: geodeticInformation
  3653                n3gaLocation:
  3654                  ueIpv4Addr: 198.51.100.1
  3655                  n3gppTai:
  3656                    tac: tac
  3657                    plmnId:
  3658                      mnc: mnc
  3659                      mcc: mcc
  3660                  ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3661                  n3IwfId: n3IwfId
  3662                  portNumber: 0
  3663            s1UeNetworkCapability: s1UeNetworkCapability
  3664            ueSecurityCapability: ueSecurityCapability
  3665          - nssaiMappingList:
  3666            - hSnssai:
  3667                sd: sd
  3668                sst: 51
  3669              mappedSnssai:
  3670                sd: sd
  3671                sst: 51
  3672            - hSnssai:
  3673                sd: sd
  3674                sst: 51
  3675              mappedSnssai:
  3676                sd: sd
  3677                sst: 51
  3678            nsInstanceList:
  3679            - null
  3680            - null
  3681            nasSecurityMode: {}
  3682            nasDownlinkCount: 0
  3683            allowedNssai:
  3684            - sd: sd
  3685              sst: 51
  3686            - sd: sd
  3687              sst: 51
  3688            nasUplinkCount: 0
  3689            expectedUEbehavior:
  3690              validityTime: 2000-01-23T04:56:07.000+00:00
  3691              expMoveTrajectory:
  3692              - eutraLocation:
  3693                  geographicalInformation: geographicalInformation
  3694                  globalNgenbId:
  3695                    gNbId:
  3696                      bitLength: 24
  3697                      gNBValue: gNBValue
  3698                    plmnId:
  3699                      mnc: mnc
  3700                      mcc: mcc
  3701                    n3IwfId: n3IwfId
  3702                    ngeNbId: ngeNbId
  3703                  ageOfLocationInformation: 13583
  3704                  tai:
  3705                    tac: tac
  3706                    plmnId:
  3707                      mnc: mnc
  3708                      mcc: mcc
  3709                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3710                  geodeticInformation: geodeticInformation
  3711                  ecgi:
  3712                    eutraCellId: eutraCellId
  3713                    plmnId:
  3714                      mnc: mnc
  3715                      mcc: mcc
  3716                nrLocation:
  3717                  geographicalInformation: geographicalInformation
  3718                  globalGnbId:
  3719                    gNbId:
  3720                      bitLength: 24
  3721                      gNBValue: gNBValue
  3722                    plmnId:
  3723                      mnc: mnc
  3724                      mcc: mcc
  3725                    n3IwfId: n3IwfId
  3726                    ngeNbId: ngeNbId
  3727                  ageOfLocationInformation: 24202
  3728                  ncgi:
  3729                    plmnId:
  3730                      mnc: mnc
  3731                      mcc: mcc
  3732                    nrCellId: nrCellId
  3733                  tai:
  3734                    tac: tac
  3735                    plmnId:
  3736                      mnc: mnc
  3737                      mcc: mcc
  3738                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3739                  geodeticInformation: geodeticInformation
  3740                n3gaLocation:
  3741                  ueIpv4Addr: 198.51.100.1
  3742                  n3gppTai:
  3743                    tac: tac
  3744                    plmnId:
  3745                      mnc: mnc
  3746                      mcc: mcc
  3747                  ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3748                  n3IwfId: n3IwfId
  3749                  portNumber: 0
  3750              - eutraLocation:
  3751                  geographicalInformation: geographicalInformation
  3752                  globalNgenbId:
  3753                    gNbId:
  3754                      bitLength: 24
  3755                      gNBValue: gNBValue
  3756                    plmnId:
  3757                      mnc: mnc
  3758                      mcc: mcc
  3759                    n3IwfId: n3IwfId
  3760                    ngeNbId: ngeNbId
  3761                  ageOfLocationInformation: 13583
  3762                  tai:
  3763                    tac: tac
  3764                    plmnId:
  3765                      mnc: mnc
  3766                      mcc: mcc
  3767                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3768                  geodeticInformation: geodeticInformation
  3769                  ecgi:
  3770                    eutraCellId: eutraCellId
  3771                    plmnId:
  3772                      mnc: mnc
  3773                      mcc: mcc
  3774                nrLocation:
  3775                  geographicalInformation: geographicalInformation
  3776                  globalGnbId:
  3777                    gNbId:
  3778                      bitLength: 24
  3779                      gNBValue: gNBValue
  3780                    plmnId:
  3781                      mnc: mnc
  3782                      mcc: mcc
  3783                    n3IwfId: n3IwfId
  3784                    ngeNbId: ngeNbId
  3785                  ageOfLocationInformation: 24202
  3786                  ncgi:
  3787                    plmnId:
  3788                      mnc: mnc
  3789                      mcc: mcc
  3790                    nrCellId: nrCellId
  3791                  tai:
  3792                    tac: tac
  3793                    plmnId:
  3794                      mnc: mnc
  3795                      mcc: mcc
  3796                  ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  3797                  geodeticInformation: geodeticInformation
  3798                n3gaLocation:
  3799                  ueIpv4Addr: 198.51.100.1
  3800                  n3gppTai:
  3801                    tac: tac
  3802                    plmnId:
  3803                      mnc: mnc
  3804                      mcc: mcc
  3805                  ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3806                  n3IwfId: n3IwfId
  3807                  portNumber: 0
  3808            s1UeNetworkCapability: s1UeNetworkCapability
  3809            ueSecurityCapability: ueSecurityCapability
  3810          supiUnauthInd: true
  3811          routingIndicator: routingIndicator
  3812          groupList:
  3813          - null
  3814          - null
  3815          pcfAmPolicyUri: pcfAmPolicyUri
  3816          traceData:
  3817            eventList: eventList
  3818            collectionEntityIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  3819            collectionEntityIpv4Addr: 198.51.100.1
  3820            traceRef: traceRef
  3821            interfaceList: interfaceList
  3822            neTypeList: neTypeList
  3823          supi: supi
  3824          subRfsp: 21
  3825          sessionContextList:
  3826          - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3827            allocatedEbiList:
  3828            - epsBearerId: 2
  3829              arp:
  3830                priorityLevel: 10
  3831            - epsBearerId: 2
  3832              arp:
  3833                priorityLevel: 10
  3834            vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3835            dnn: dnn
  3836            nsInstance: nsInstance
  3837            pduSessionId: 26
  3838            sNssai:
  3839              sd: sd
  3840              sst: 51
  3841            smContextRef: smContextRef
  3842          - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3843            allocatedEbiList:
  3844            - epsBearerId: 2
  3845              arp:
  3846                priorityLevel: 10
  3847            - epsBearerId: 2
  3848              arp:
  3849                priorityLevel: 10
  3850            vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3851            dnn: dnn
  3852            nsInstance: nsInstance
  3853            pduSessionId: 26
  3854            sNssai:
  3855              sd: sd
  3856              sst: 51
  3857            smContextRef: smContextRef
  3858          hpcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  3859          restrictedRatList:
  3860          - null
  3861          - null
  3862          serviceAreaRestriction:
  3863            maxNumOfTAs: 0
  3864            areas:
  3865            - areaCodes: areaCodes
  3866              tacs:
  3867              - null
  3868              - null
  3869            - areaCodes: areaCodes
  3870              tacs:
  3871              - null
  3872              - null
  3873          usedRfsp: 154
  3874          restrictedCoreNwTypeList:
  3875          - null
  3876          - null
  3877          udmGroupId: udmGroupId
  3878        properties:
  3879          supi:
  3880            pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  3881            type: string
  3882          supiUnauthInd:
  3883            type: boolean
  3884          gpsiList:
  3885            items:
  3886              $ref: '#/components/schemas/Gpsi'
  3887            minItems: 1
  3888            type: array
  3889          pei:
  3890            pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
  3891            type: string
  3892          udmGroupId:
  3893            type: string
  3894          ausfGroupId:
  3895            type: string
  3896          routingIndicator:
  3897            type: string
  3898          groupList:
  3899            items:
  3900              $ref: '#/components/schemas/GroupId'
  3901            minItems: 1
  3902            type: array
  3903          drxParameter:
  3904            format: byte
  3905            type: string
  3906          subRfsp:
  3907            format: int32
  3908            maximum: 256
  3909            minimum: 1
  3910            type: integer
  3911          usedRfsp:
  3912            format: int32
  3913            maximum: 256
  3914            minimum: 1
  3915            type: integer
  3916          subUeAmbr:
  3917            $ref: '#/components/schemas/Ambr'
  3918          smsSupport:
  3919            $ref: '#/components/schemas/SmsSupport'
  3920          smsfId:
  3921            format: uuid
  3922            type: string
  3923          seafData:
  3924            $ref: '#/components/schemas/SeafData'
  3925          5gMmCapability:
  3926            format: byte
  3927            type: string
  3928          pcfId:
  3929            format: uuid
  3930            type: string
  3931          pcfAmPolicyUri:
  3932            type: string
  3933          amPolicyReqTriggerList:
  3934            items:
  3935              $ref: '#/components/schemas/AMPolicyReqTrigger'
  3936            minItems: 1
  3937            type: array
  3938          hpcfId:
  3939            format: uuid
  3940            type: string
  3941          restrictedRatList:
  3942            items:
  3943              $ref: '#/components/schemas/RatType'
  3944            minItems: 1
  3945            type: array
  3946          forbiddenAreaList:
  3947            items:
  3948              $ref: '#/components/schemas/Area'
  3949            minItems: 1
  3950            type: array
  3951          serviceAreaRestriction:
  3952            $ref: '#/components/schemas/ServiceAreaRestriction'
  3953          restrictedCoreNwTypeList:
  3954            items:
  3955              $ref: '#/components/schemas/CoreNetworkType'
  3956            minItems: 1
  3957            type: array
  3958          eventSubscriptionList:
  3959            items:
  3960              $ref: '#/components/schemas/AmfEventSubscription'
  3961            minItems: 1
  3962            type: array
  3963          mmContextList:
  3964            items:
  3965              $ref: '#/components/schemas/MmContext'
  3966            maxItems: 2
  3967            minItems: 1
  3968            type: array
  3969          sessionContextList:
  3970            items:
  3971              $ref: '#/components/schemas/PduSessionContext'
  3972            minItems: 1
  3973            type: array
  3974          traceData:
  3975            $ref: '#/components/schemas/TraceData'
  3976        type: object
  3977      N2SmInformation:
  3978        example:
  3979          subjectToHo: true
  3980          pduSessionId: 29
  3981          n2InfoContent:
  3982            ngapData:
  3983              contentId: contentId
  3984            ngapMessageType: 0
  3985          sNssai:
  3986            sd: sd
  3987            sst: 51
  3988        properties:
  3989          pduSessionId:
  3990            format: int32
  3991            maximum: 255
  3992            minimum: 0
  3993            type: integer
  3994          n2InfoContent:
  3995            $ref: '#/components/schemas/N2InfoContent'
  3996          sNssai:
  3997            $ref: '#/components/schemas/Snssai'
  3998          subjectToHo:
  3999            type: boolean
  4000        required:
  4001        - pduSessionId
  4002        type: object
  4003      N2InfoContent:
  4004        example:
  4005          ngapData:
  4006            contentId: contentId
  4007          ngapMessageType: 0
  4008        properties:
  4009          ngapMessageType:
  4010            format: int32
  4011            minimum: 0
  4012            type: integer
  4013          ngapIeType:
  4014            $ref: '#/components/schemas/NgapIeType'
  4015          ngapData:
  4016            $ref: '#/components/schemas/RefToBinaryData'
  4017        required:
  4018        - ngapData
  4019        - ngapIeType
  4020        type: object
  4021      NrppaInformation:
  4022        properties:
  4023          nfId:
  4024            format: uuid
  4025            type: string
  4026          nrppaPdu:
  4027            $ref: '#/components/schemas/N2InfoContent'
  4028        required:
  4029        - nfId
  4030        - nrppaPdu
  4031        type: object
  4032      PwsInformation:
  4033        properties:
  4034          messageIdentifier:
  4035            format: int32
  4036            maximum: 65535
  4037            minimum: 0
  4038            type: integer
  4039          serialNumber:
  4040            format: int32
  4041            maximum: 65535
  4042            minimum: 0
  4043            type: integer
  4044          pwsContainer:
  4045            $ref: '#/components/schemas/N2InfoContent'
  4046          sendRanResponse:
  4047            default: false
  4048            type: boolean
  4049          omcId:
  4050            type: string
  4051        required:
  4052        - messageIdentifier
  4053        - pwsContainer
  4054        - serialNumber
  4055        type: object
  4056      N1N2MsgTxfrFailureNotification:
  4057        example:
  4058          n1n2MsgDataUri: n1n2MsgDataUri
  4059        properties:
  4060          cause:
  4061            $ref: '#/components/schemas/N1N2MessageTransferCause'
  4062          n1n2MsgDataUri:
  4063            type: string
  4064        required:
  4065        - cause
  4066        - n1n2MsgDataUri
  4067        type: object
  4068      N1N2MessageTransferError:
  4069        properties:
  4070          error:
  4071            $ref: '#/components/schemas/ProblemDetails'
  4072          errInfo:
  4073            $ref: '#/components/schemas/N1N2MsgTxfrErrDetail'
  4074        required:
  4075        - error
  4076        type: object
  4077      N1N2MsgTxfrErrDetail:
  4078        properties:
  4079          retryAfter:
  4080            format: int32
  4081            minimum: 0
  4082            type: integer
  4083          highestPrioArp:
  4084            $ref: '#/components/schemas/Arp'
  4085        type: object
  4086      N2InformationTransferRspData:
  4087        example:
  4088          pwsRspData:
  4089            serialNumber: 39500
  4090            unknownTaiList:
  4091            - tac: tac
  4092              plmnId:
  4093                mnc: mnc
  4094                mcc: mcc
  4095            - tac: tac
  4096              plmnId:
  4097                mnc: mnc
  4098                mcc: mcc
  4099            messageIdentifier: 1
  4100            ngapMessageType: 0
  4101          supportedFeatures: supportedFeatures
  4102        properties:
  4103          result:
  4104            $ref: '#/components/schemas/N2InformationTransferResult'
  4105          pwsRspData:
  4106            $ref: '#/components/schemas/PWSResponseData'
  4107          supportedFeatures:
  4108            pattern: ^[A-Fa-f0-9]*$
  4109            type: string
  4110        required:
  4111        - result
  4112        type: object
  4113      MmContext:
  4114        example:
  4115          nssaiMappingList:
  4116          - hSnssai:
  4117              sd: sd
  4118              sst: 51
  4119            mappedSnssai:
  4120              sd: sd
  4121              sst: 51
  4122          - hSnssai:
  4123              sd: sd
  4124              sst: 51
  4125            mappedSnssai:
  4126              sd: sd
  4127              sst: 51
  4128          nsInstanceList:
  4129          - null
  4130          - null
  4131          nasSecurityMode: {}
  4132          nasDownlinkCount: 0
  4133          allowedNssai:
  4134          - sd: sd
  4135            sst: 51
  4136          - sd: sd
  4137            sst: 51
  4138          nasUplinkCount: 0
  4139          expectedUEbehavior:
  4140            validityTime: 2000-01-23T04:56:07.000+00:00
  4141            expMoveTrajectory:
  4142            - eutraLocation:
  4143                geographicalInformation: geographicalInformation
  4144                globalNgenbId:
  4145                  gNbId:
  4146                    bitLength: 24
  4147                    gNBValue: gNBValue
  4148                  plmnId:
  4149                    mnc: mnc
  4150                    mcc: mcc
  4151                  n3IwfId: n3IwfId
  4152                  ngeNbId: ngeNbId
  4153                ageOfLocationInformation: 13583
  4154                tai:
  4155                  tac: tac
  4156                  plmnId:
  4157                    mnc: mnc
  4158                    mcc: mcc
  4159                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  4160                geodeticInformation: geodeticInformation
  4161                ecgi:
  4162                  eutraCellId: eutraCellId
  4163                  plmnId:
  4164                    mnc: mnc
  4165                    mcc: mcc
  4166              nrLocation:
  4167                geographicalInformation: geographicalInformation
  4168                globalGnbId:
  4169                  gNbId:
  4170                    bitLength: 24
  4171                    gNBValue: gNBValue
  4172                  plmnId:
  4173                    mnc: mnc
  4174                    mcc: mcc
  4175                  n3IwfId: n3IwfId
  4176                  ngeNbId: ngeNbId
  4177                ageOfLocationInformation: 24202
  4178                ncgi:
  4179                  plmnId:
  4180                    mnc: mnc
  4181                    mcc: mcc
  4182                  nrCellId: nrCellId
  4183                tai:
  4184                  tac: tac
  4185                  plmnId:
  4186                    mnc: mnc
  4187                    mcc: mcc
  4188                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  4189                geodeticInformation: geodeticInformation
  4190              n3gaLocation:
  4191                ueIpv4Addr: 198.51.100.1
  4192                n3gppTai:
  4193                  tac: tac
  4194                  plmnId:
  4195                    mnc: mnc
  4196                    mcc: mcc
  4197                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  4198                n3IwfId: n3IwfId
  4199                portNumber: 0
  4200            - eutraLocation:
  4201                geographicalInformation: geographicalInformation
  4202                globalNgenbId:
  4203                  gNbId:
  4204                    bitLength: 24
  4205                    gNBValue: gNBValue
  4206                  plmnId:
  4207                    mnc: mnc
  4208                    mcc: mcc
  4209                  n3IwfId: n3IwfId
  4210                  ngeNbId: ngeNbId
  4211                ageOfLocationInformation: 13583
  4212                tai:
  4213                  tac: tac
  4214                  plmnId:
  4215                    mnc: mnc
  4216                    mcc: mcc
  4217                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  4218                geodeticInformation: geodeticInformation
  4219                ecgi:
  4220                  eutraCellId: eutraCellId
  4221                  plmnId:
  4222                    mnc: mnc
  4223                    mcc: mcc
  4224              nrLocation:
  4225                geographicalInformation: geographicalInformation
  4226                globalGnbId:
  4227                  gNbId:
  4228                    bitLength: 24
  4229                    gNBValue: gNBValue
  4230                  plmnId:
  4231                    mnc: mnc
  4232                    mcc: mcc
  4233                  n3IwfId: n3IwfId
  4234                  ngeNbId: ngeNbId
  4235                ageOfLocationInformation: 24202
  4236                ncgi:
  4237                  plmnId:
  4238                    mnc: mnc
  4239                    mcc: mcc
  4240                  nrCellId: nrCellId
  4241                tai:
  4242                  tac: tac
  4243                  plmnId:
  4244                    mnc: mnc
  4245                    mcc: mcc
  4246                ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  4247                geodeticInformation: geodeticInformation
  4248              n3gaLocation:
  4249                ueIpv4Addr: 198.51.100.1
  4250                n3gppTai:
  4251                  tac: tac
  4252                  plmnId:
  4253                    mnc: mnc
  4254                    mcc: mcc
  4255                ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  4256                n3IwfId: n3IwfId
  4257                portNumber: 0
  4258          s1UeNetworkCapability: s1UeNetworkCapability
  4259          ueSecurityCapability: ueSecurityCapability
  4260        properties:
  4261          accessType:
  4262            $ref: '#/components/schemas/AccessType'
  4263          nasSecurityMode:
  4264            $ref: '#/components/schemas/NasSecurityMode'
  4265          nasDownlinkCount:
  4266            format: int32
  4267            minimum: 0
  4268            type: integer
  4269          nasUplinkCount:
  4270            format: int32
  4271            minimum: 0
  4272            type: integer
  4273          ueSecurityCapability:
  4274            format: byte
  4275            type: string
  4276          s1UeNetworkCapability:
  4277            format: byte
  4278            type: string
  4279          allowedNssai:
  4280            items:
  4281              $ref: '#/components/schemas/Snssai'
  4282            minItems: 1
  4283            type: array
  4284          nssaiMappingList:
  4285            items:
  4286              $ref: '#/components/schemas/NssaiMapping'
  4287            minItems: 1
  4288            type: array
  4289          nsInstanceList:
  4290            items:
  4291              $ref: '#/components/schemas/NsiId'
  4292            minItems: 1
  4293            type: array
  4294          expectedUEbehavior:
  4295            $ref: '#/components/schemas/ExpectedUeBehavior'
  4296        required:
  4297        - accessType
  4298        type: object
  4299      SeafData:
  4300        example:
  4301          keyAmfChangeInd: true
  4302          ngKsi:
  4303            ksi: 0
  4304          keyAmf:
  4305            keyVal: keyVal
  4306          keyAmfHDerivationInd: true
  4307          nh: nh
  4308          ncc: 4
  4309        properties:
  4310          ngKsi:
  4311            $ref: '#/components/schemas/NgKsi'
  4312          keyAmf:
  4313            $ref: '#/components/schemas/KeyAmf'
  4314          nh:
  4315            pattern: ^[A-Fa-f0-9]+$
  4316            type: string
  4317          ncc:
  4318            format: int32
  4319            maximum: 7
  4320            minimum: 0
  4321            type: integer
  4322          keyAmfChangeInd:
  4323            type: boolean
  4324          keyAmfHDerivationInd:
  4325            type: boolean
  4326        required:
  4327        - keyAmf
  4328        - ngKsi
  4329        type: object
  4330      NasSecurityMode:
  4331        example: {}
  4332        properties:
  4333          integrityAlgorithm:
  4334            $ref: '#/components/schemas/IntegrityAlgorithm'
  4335          cipheringAlgorithm:
  4336            $ref: '#/components/schemas/CipheringAlgorithm'
  4337        required:
  4338        - cipheringAlgorithm
  4339        - integrityAlgorithm
  4340        type: object
  4341      PduSessionContext:
  4342        example:
  4343          hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4344          allocatedEbiList:
  4345          - epsBearerId: 2
  4346            arp:
  4347              priorityLevel: 10
  4348          - epsBearerId: 2
  4349            arp:
  4350              priorityLevel: 10
  4351          vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4352          dnn: dnn
  4353          nsInstance: nsInstance
  4354          pduSessionId: 26
  4355          sNssai:
  4356            sd: sd
  4357            sst: 51
  4358          smContextRef: smContextRef
  4359        properties:
  4360          pduSessionId:
  4361            format: int32
  4362            maximum: 255
  4363            minimum: 0
  4364            type: integer
  4365          smContextRef:
  4366            type: string
  4367          sNssai:
  4368            $ref: '#/components/schemas/Snssai'
  4369          dnn:
  4370            type: string
  4371          accessType:
  4372            $ref: '#/components/schemas/AccessType'
  4373          allocatedEbiList:
  4374            items:
  4375              $ref: '#/components/schemas/EbiArpMapping'
  4376            minItems: 1
  4377            type: array
  4378          hsmfId:
  4379            format: uuid
  4380            type: string
  4381          vsmfId:
  4382            format: uuid
  4383            type: string
  4384          nsInstance:
  4385            type: string
  4386        required:
  4387        - accessType
  4388        - allocatedEbiList
  4389        - dnn
  4390        - pduSessionId
  4391        - sNssai
  4392        - smContextRef
  4393        type: object
  4394      NssaiMapping:
  4395        example:
  4396          hSnssai:
  4397            sd: sd
  4398            sst: 51
  4399          mappedSnssai:
  4400            sd: sd
  4401            sst: 51
  4402        properties:
  4403          mappedSnssai:
  4404            $ref: '#/components/schemas/Snssai'
  4405          hSnssai:
  4406            $ref: '#/components/schemas/Snssai'
  4407        required:
  4408        - hSnssai
  4409        - mappedSnssai
  4410        type: object
  4411      UeRegStatusUpdateReqData:
  4412        example:
  4413          toReleaseSessionList:
  4414          - null
  4415          - null
  4416          pcfReselectedInd: true
  4417        properties:
  4418          transferStatus:
  4419            $ref: '#/components/schemas/UeContextTransferStatus'
  4420          toReleaseSessionList:
  4421            items:
  4422              $ref: '#/components/schemas/PduSessionId'
  4423            minItems: 1
  4424            type: array
  4425          pcfReselectedInd:
  4426            type: boolean
  4427        required:
  4428        - transferStatus
  4429        type: object
  4430      UeRegStatusUpdateRspData:
  4431        example:
  4432          regStatusTransferComplete: true
  4433        properties:
  4434          regStatusTransferComplete:
  4435            type: boolean
  4436        required:
  4437        - regStatusTransferComplete
  4438        type: object
  4439      AssignEbiError:
  4440        properties:
  4441          error:
  4442            $ref: '#/components/schemas/ProblemDetails'
  4443          failureDetails:
  4444            $ref: '#/components/schemas/AssignEbiFailed'
  4445        required:
  4446        - error
  4447        - failureDetails
  4448        type: object
  4449      UeContextCreateData:
  4450        properties:
  4451          ueContext:
  4452            $ref: '#/components/schemas/UeContext'
  4453          targetId:
  4454            $ref: '#/components/schemas/NgRanTargetId'
  4455          sourceToTargetData:
  4456            $ref: '#/components/schemas/N2InfoContent'
  4457          pduSessionList:
  4458            items:
  4459              $ref: '#/components/schemas/N2SmInformation'
  4460            minItems: 1
  4461            type: array
  4462          n2NotifyUri:
  4463            type: string
  4464          ueRadioCapability:
  4465            $ref: '#/components/schemas/N2InfoContent'
  4466          ngapCause:
  4467            $ref: '#/components/schemas/NgApCause'
  4468          supportedFeatures:
  4469            pattern: ^[A-Fa-f0-9]*$
  4470            type: string
  4471        required:
  4472        - pduSessions
  4473        - sourceToTargetData
  4474        - targetId
  4475        - ueContext
  4476        type: object
  4477      UeContextCreatedData:
  4478        example:
  4479          ueContext:
  4480            gpsiList:
  4481            - null
  4482            - null
  4483            seafData:
  4484              keyAmfChangeInd: true
  4485              ngKsi:
  4486                ksi: 0
  4487              keyAmf:
  4488                keyVal: keyVal
  4489              keyAmfHDerivationInd: true
  4490              nh: nh
  4491              ncc: 4
  4492            eventSubscriptionList:
  4493            - eventNotifyUri: eventNotifyUri
  4494              nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4495              eventList:
  4496              - subscribedDataFilterList:
  4497                - null
  4498                - null
  4499                areaList:
  4500                - presenceInfo:
  4501                    ecgiList:
  4502                    - eutraCellId: eutraCellId
  4503                      plmnId:
  4504                        mnc: mnc
  4505                        mcc: mcc
  4506                    - eutraCellId: eutraCellId
  4507                      plmnId:
  4508                        mnc: mnc
  4509                        mcc: mcc
  4510                    globalRanNodeIdList:
  4511                    - gNbId:
  4512                        bitLength: 24
  4513                        gNBValue: gNBValue
  4514                      plmnId:
  4515                        mnc: mnc
  4516                        mcc: mcc
  4517                      n3IwfId: n3IwfId
  4518                      ngeNbId: ngeNbId
  4519                    - gNbId:
  4520                        bitLength: 24
  4521                        gNBValue: gNBValue
  4522                      plmnId:
  4523                        mnc: mnc
  4524                        mcc: mcc
  4525                      n3IwfId: n3IwfId
  4526                      ngeNbId: ngeNbId
  4527                    praId: praId
  4528                    trackingAreaList:
  4529                    - tac: tac
  4530                      plmnId:
  4531                        mnc: mnc
  4532                        mcc: mcc
  4533                    - tac: tac
  4534                      plmnId:
  4535                        mnc: mnc
  4536                        mcc: mcc
  4537                    ncgiList:
  4538                    - plmnId:
  4539                        mnc: mnc
  4540                        mcc: mcc
  4541                      nrCellId: nrCellId
  4542                    - plmnId:
  4543                        mnc: mnc
  4544                        mcc: mcc
  4545                      nrCellId: nrCellId
  4546                  ladnInfo:
  4547                    ladn: ladn
  4548                - presenceInfo:
  4549                    ecgiList:
  4550                    - eutraCellId: eutraCellId
  4551                      plmnId:
  4552                        mnc: mnc
  4553                        mcc: mcc
  4554                    - eutraCellId: eutraCellId
  4555                      plmnId:
  4556                        mnc: mnc
  4557                        mcc: mcc
  4558                    globalRanNodeIdList:
  4559                    - gNbId:
  4560                        bitLength: 24
  4561                        gNBValue: gNBValue
  4562                      plmnId:
  4563                        mnc: mnc
  4564                        mcc: mcc
  4565                      n3IwfId: n3IwfId
  4566                      ngeNbId: ngeNbId
  4567                    - gNbId:
  4568                        bitLength: 24
  4569                        gNBValue: gNBValue
  4570                      plmnId:
  4571                        mnc: mnc
  4572                        mcc: mcc
  4573                      n3IwfId: n3IwfId
  4574                      ngeNbId: ngeNbId
  4575                    praId: praId
  4576                    trackingAreaList:
  4577                    - tac: tac
  4578                      plmnId:
  4579                        mnc: mnc
  4580                        mcc: mcc
  4581                    - tac: tac
  4582                      plmnId:
  4583                        mnc: mnc
  4584                        mcc: mcc
  4585                    ncgiList:
  4586                    - plmnId:
  4587                        mnc: mnc
  4588                        mcc: mcc
  4589                      nrCellId: nrCellId
  4590                    - plmnId:
  4591                        mnc: mnc
  4592                        mcc: mcc
  4593                      nrCellId: nrCellId
  4594                  ladnInfo:
  4595                    ladn: ladn
  4596                locationFilterList:
  4597                - null
  4598                - null
  4599                immediateFlag: true
  4600              - subscribedDataFilterList:
  4601                - null
  4602                - null
  4603                areaList:
  4604                - presenceInfo:
  4605                    ecgiList:
  4606                    - eutraCellId: eutraCellId
  4607                      plmnId:
  4608                        mnc: mnc
  4609                        mcc: mcc
  4610                    - eutraCellId: eutraCellId
  4611                      plmnId:
  4612                        mnc: mnc
  4613                        mcc: mcc
  4614                    globalRanNodeIdList:
  4615                    - gNbId:
  4616                        bitLength: 24
  4617                        gNBValue: gNBValue
  4618                      plmnId:
  4619                        mnc: mnc
  4620                        mcc: mcc
  4621                      n3IwfId: n3IwfId
  4622                      ngeNbId: ngeNbId
  4623                    - gNbId:
  4624                        bitLength: 24
  4625                        gNBValue: gNBValue
  4626                      plmnId:
  4627                        mnc: mnc
  4628                        mcc: mcc
  4629                      n3IwfId: n3IwfId
  4630                      ngeNbId: ngeNbId
  4631                    praId: praId
  4632                    trackingAreaList:
  4633                    - tac: tac
  4634                      plmnId:
  4635                        mnc: mnc
  4636                        mcc: mcc
  4637                    - tac: tac
  4638                      plmnId:
  4639                        mnc: mnc
  4640                        mcc: mcc
  4641                    ncgiList:
  4642                    - plmnId:
  4643                        mnc: mnc
  4644                        mcc: mcc
  4645                      nrCellId: nrCellId
  4646                    - plmnId:
  4647                        mnc: mnc
  4648                        mcc: mcc
  4649                      nrCellId: nrCellId
  4650                  ladnInfo:
  4651                    ladn: ladn
  4652                - presenceInfo:
  4653                    ecgiList:
  4654                    - eutraCellId: eutraCellId
  4655                      plmnId:
  4656                        mnc: mnc
  4657                        mcc: mcc
  4658                    - eutraCellId: eutraCellId
  4659                      plmnId:
  4660                        mnc: mnc
  4661                        mcc: mcc
  4662                    globalRanNodeIdList:
  4663                    - gNbId:
  4664                        bitLength: 24
  4665                        gNBValue: gNBValue
  4666                      plmnId:
  4667                        mnc: mnc
  4668                        mcc: mcc
  4669                      n3IwfId: n3IwfId
  4670                      ngeNbId: ngeNbId
  4671                    - gNbId:
  4672                        bitLength: 24
  4673                        gNBValue: gNBValue
  4674                      plmnId:
  4675                        mnc: mnc
  4676                        mcc: mcc
  4677                      n3IwfId: n3IwfId
  4678                      ngeNbId: ngeNbId
  4679                    praId: praId
  4680                    trackingAreaList:
  4681                    - tac: tac
  4682                      plmnId:
  4683                        mnc: mnc
  4684                        mcc: mcc
  4685                    - tac: tac
  4686                      plmnId:
  4687                        mnc: mnc
  4688                        mcc: mcc
  4689                    ncgiList:
  4690                    - plmnId:
  4691                        mnc: mnc
  4692                        mcc: mcc
  4693                      nrCellId: nrCellId
  4694                    - plmnId:
  4695                        mnc: mnc
  4696                        mcc: mcc
  4697                      nrCellId: nrCellId
  4698                  ladnInfo:
  4699                    ladn: ladn
  4700                locationFilterList:
  4701                - null
  4702                - null
  4703                immediateFlag: true
  4704              subsChangeNotifyUri: subsChangeNotifyUri
  4705              pei: pei
  4706              anyUE: true
  4707              groupId: groupId
  4708              options:
  4709                expiry: 2000-01-23T04:56:07.000+00:00
  4710                maxReports: 7
  4711              supi: supi
  4712              notifyCorrelationId: notifyCorrelationId
  4713              subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  4714              gpsi: gpsi
  4715            - eventNotifyUri: eventNotifyUri
  4716              nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4717              eventList:
  4718              - subscribedDataFilterList:
  4719                - null
  4720                - null
  4721                areaList:
  4722                - presenceInfo:
  4723                    ecgiList:
  4724                    - eutraCellId: eutraCellId
  4725                      plmnId:
  4726                        mnc: mnc
  4727                        mcc: mcc
  4728                    - eutraCellId: eutraCellId
  4729                      plmnId:
  4730                        mnc: mnc
  4731                        mcc: mcc
  4732                    globalRanNodeIdList:
  4733                    - gNbId:
  4734                        bitLength: 24
  4735                        gNBValue: gNBValue
  4736                      plmnId:
  4737                        mnc: mnc
  4738                        mcc: mcc
  4739                      n3IwfId: n3IwfId
  4740                      ngeNbId: ngeNbId
  4741                    - gNbId:
  4742                        bitLength: 24
  4743                        gNBValue: gNBValue
  4744                      plmnId:
  4745                        mnc: mnc
  4746                        mcc: mcc
  4747                      n3IwfId: n3IwfId
  4748                      ngeNbId: ngeNbId
  4749                    praId: praId
  4750                    trackingAreaList:
  4751                    - tac: tac
  4752                      plmnId:
  4753                        mnc: mnc
  4754                        mcc: mcc
  4755                    - tac: tac
  4756                      plmnId:
  4757                        mnc: mnc
  4758                        mcc: mcc
  4759                    ncgiList:
  4760                    - plmnId:
  4761                        mnc: mnc
  4762                        mcc: mcc
  4763                      nrCellId: nrCellId
  4764                    - plmnId:
  4765                        mnc: mnc
  4766                        mcc: mcc
  4767                      nrCellId: nrCellId
  4768                  ladnInfo:
  4769                    ladn: ladn
  4770                - presenceInfo:
  4771                    ecgiList:
  4772                    - eutraCellId: eutraCellId
  4773                      plmnId:
  4774                        mnc: mnc
  4775                        mcc: mcc
  4776                    - eutraCellId: eutraCellId
  4777                      plmnId:
  4778                        mnc: mnc
  4779                        mcc: mcc
  4780                    globalRanNodeIdList:
  4781                    - gNbId:
  4782                        bitLength: 24
  4783                        gNBValue: gNBValue
  4784                      plmnId:
  4785                        mnc: mnc
  4786                        mcc: mcc
  4787                      n3IwfId: n3IwfId
  4788                      ngeNbId: ngeNbId
  4789                    - gNbId:
  4790                        bitLength: 24
  4791                        gNBValue: gNBValue
  4792                      plmnId:
  4793                        mnc: mnc
  4794                        mcc: mcc
  4795                      n3IwfId: n3IwfId
  4796                      ngeNbId: ngeNbId
  4797                    praId: praId
  4798                    trackingAreaList:
  4799                    - tac: tac
  4800                      plmnId:
  4801                        mnc: mnc
  4802                        mcc: mcc
  4803                    - tac: tac
  4804                      plmnId:
  4805                        mnc: mnc
  4806                        mcc: mcc
  4807                    ncgiList:
  4808                    - plmnId:
  4809                        mnc: mnc
  4810                        mcc: mcc
  4811                      nrCellId: nrCellId
  4812                    - plmnId:
  4813                        mnc: mnc
  4814                        mcc: mcc
  4815                      nrCellId: nrCellId
  4816                  ladnInfo:
  4817                    ladn: ladn
  4818                locationFilterList:
  4819                - null
  4820                - null
  4821                immediateFlag: true
  4822              - subscribedDataFilterList:
  4823                - null
  4824                - null
  4825                areaList:
  4826                - presenceInfo:
  4827                    ecgiList:
  4828                    - eutraCellId: eutraCellId
  4829                      plmnId:
  4830                        mnc: mnc
  4831                        mcc: mcc
  4832                    - eutraCellId: eutraCellId
  4833                      plmnId:
  4834                        mnc: mnc
  4835                        mcc: mcc
  4836                    globalRanNodeIdList:
  4837                    - gNbId:
  4838                        bitLength: 24
  4839                        gNBValue: gNBValue
  4840                      plmnId:
  4841                        mnc: mnc
  4842                        mcc: mcc
  4843                      n3IwfId: n3IwfId
  4844                      ngeNbId: ngeNbId
  4845                    - gNbId:
  4846                        bitLength: 24
  4847                        gNBValue: gNBValue
  4848                      plmnId:
  4849                        mnc: mnc
  4850                        mcc: mcc
  4851                      n3IwfId: n3IwfId
  4852                      ngeNbId: ngeNbId
  4853                    praId: praId
  4854                    trackingAreaList:
  4855                    - tac: tac
  4856                      plmnId:
  4857                        mnc: mnc
  4858                        mcc: mcc
  4859                    - tac: tac
  4860                      plmnId:
  4861                        mnc: mnc
  4862                        mcc: mcc
  4863                    ncgiList:
  4864                    - plmnId:
  4865                        mnc: mnc
  4866                        mcc: mcc
  4867                      nrCellId: nrCellId
  4868                    - plmnId:
  4869                        mnc: mnc
  4870                        mcc: mcc
  4871                      nrCellId: nrCellId
  4872                  ladnInfo:
  4873                    ladn: ladn
  4874                - presenceInfo:
  4875                    ecgiList:
  4876                    - eutraCellId: eutraCellId
  4877                      plmnId:
  4878                        mnc: mnc
  4879                        mcc: mcc
  4880                    - eutraCellId: eutraCellId
  4881                      plmnId:
  4882                        mnc: mnc
  4883                        mcc: mcc
  4884                    globalRanNodeIdList:
  4885                    - gNbId:
  4886                        bitLength: 24
  4887                        gNBValue: gNBValue
  4888                      plmnId:
  4889                        mnc: mnc
  4890                        mcc: mcc
  4891                      n3IwfId: n3IwfId
  4892                      ngeNbId: ngeNbId
  4893                    - gNbId:
  4894                        bitLength: 24
  4895                        gNBValue: gNBValue
  4896                      plmnId:
  4897                        mnc: mnc
  4898                        mcc: mcc
  4899                      n3IwfId: n3IwfId
  4900                      ngeNbId: ngeNbId
  4901                    praId: praId
  4902                    trackingAreaList:
  4903                    - tac: tac
  4904                      plmnId:
  4905                        mnc: mnc
  4906                        mcc: mcc
  4907                    - tac: tac
  4908                      plmnId:
  4909                        mnc: mnc
  4910                        mcc: mcc
  4911                    ncgiList:
  4912                    - plmnId:
  4913                        mnc: mnc
  4914                        mcc: mcc
  4915                      nrCellId: nrCellId
  4916                    - plmnId:
  4917                        mnc: mnc
  4918                        mcc: mcc
  4919                      nrCellId: nrCellId
  4920                  ladnInfo:
  4921                    ladn: ladn
  4922                locationFilterList:
  4923                - null
  4924                - null
  4925                immediateFlag: true
  4926              subsChangeNotifyUri: subsChangeNotifyUri
  4927              pei: pei
  4928              anyUE: true
  4929              groupId: groupId
  4930              options:
  4931                expiry: 2000-01-23T04:56:07.000+00:00
  4932                maxReports: 7
  4933              supi: supi
  4934              notifyCorrelationId: notifyCorrelationId
  4935              subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  4936              gpsi: gpsi
  4937            drxParameter: drxParameter
  4938            5gMmCapability: 5gMmCapability
  4939            subUeAmbr:
  4940              uplink: uplink
  4941              downlink: downlink
  4942            forbiddenAreaList:
  4943            - areaCodes: areaCodes
  4944              tacs:
  4945              - null
  4946              - null
  4947            - areaCodes: areaCodes
  4948              tacs:
  4949              - null
  4950              - null
  4951            pei: pei
  4952            pcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4953            ausfGroupId: ausfGroupId
  4954            smsfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  4955            amPolicyReqTriggerList:
  4956            - null
  4957            - null
  4958            mmContextList:
  4959            - nssaiMappingList:
  4960              - hSnssai:
  4961                  sd: sd
  4962                  sst: 51
  4963                mappedSnssai:
  4964                  sd: sd
  4965                  sst: 51
  4966              - hSnssai:
  4967                  sd: sd
  4968                  sst: 51
  4969                mappedSnssai:
  4970                  sd: sd
  4971                  sst: 51
  4972              nsInstanceList:
  4973              - null
  4974              - null
  4975              nasSecurityMode: {}
  4976              nasDownlinkCount: 0
  4977              allowedNssai:
  4978              - sd: sd
  4979                sst: 51
  4980              - sd: sd
  4981                sst: 51
  4982              nasUplinkCount: 0
  4983              expectedUEbehavior:
  4984                validityTime: 2000-01-23T04:56:07.000+00:00
  4985                expMoveTrajectory:
  4986                - eutraLocation:
  4987                    geographicalInformation: geographicalInformation
  4988                    globalNgenbId:
  4989                      gNbId:
  4990                        bitLength: 24
  4991                        gNBValue: gNBValue
  4992                      plmnId:
  4993                        mnc: mnc
  4994                        mcc: mcc
  4995                      n3IwfId: n3IwfId
  4996                      ngeNbId: ngeNbId
  4997                    ageOfLocationInformation: 13583
  4998                    tai:
  4999                      tac: tac
  5000                      plmnId:
  5001                        mnc: mnc
  5002                        mcc: mcc
  5003                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5004                    geodeticInformation: geodeticInformation
  5005                    ecgi:
  5006                      eutraCellId: eutraCellId
  5007                      plmnId:
  5008                        mnc: mnc
  5009                        mcc: mcc
  5010                  nrLocation:
  5011                    geographicalInformation: geographicalInformation
  5012                    globalGnbId:
  5013                      gNbId:
  5014                        bitLength: 24
  5015                        gNBValue: gNBValue
  5016                      plmnId:
  5017                        mnc: mnc
  5018                        mcc: mcc
  5019                      n3IwfId: n3IwfId
  5020                      ngeNbId: ngeNbId
  5021                    ageOfLocationInformation: 24202
  5022                    ncgi:
  5023                      plmnId:
  5024                        mnc: mnc
  5025                        mcc: mcc
  5026                      nrCellId: nrCellId
  5027                    tai:
  5028                      tac: tac
  5029                      plmnId:
  5030                        mnc: mnc
  5031                        mcc: mcc
  5032                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5033                    geodeticInformation: geodeticInformation
  5034                  n3gaLocation:
  5035                    ueIpv4Addr: 198.51.100.1
  5036                    n3gppTai:
  5037                      tac: tac
  5038                      plmnId:
  5039                        mnc: mnc
  5040                        mcc: mcc
  5041                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5042                    n3IwfId: n3IwfId
  5043                    portNumber: 0
  5044                - eutraLocation:
  5045                    geographicalInformation: geographicalInformation
  5046                    globalNgenbId:
  5047                      gNbId:
  5048                        bitLength: 24
  5049                        gNBValue: gNBValue
  5050                      plmnId:
  5051                        mnc: mnc
  5052                        mcc: mcc
  5053                      n3IwfId: n3IwfId
  5054                      ngeNbId: ngeNbId
  5055                    ageOfLocationInformation: 13583
  5056                    tai:
  5057                      tac: tac
  5058                      plmnId:
  5059                        mnc: mnc
  5060                        mcc: mcc
  5061                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5062                    geodeticInformation: geodeticInformation
  5063                    ecgi:
  5064                      eutraCellId: eutraCellId
  5065                      plmnId:
  5066                        mnc: mnc
  5067                        mcc: mcc
  5068                  nrLocation:
  5069                    geographicalInformation: geographicalInformation
  5070                    globalGnbId:
  5071                      gNbId:
  5072                        bitLength: 24
  5073                        gNBValue: gNBValue
  5074                      plmnId:
  5075                        mnc: mnc
  5076                        mcc: mcc
  5077                      n3IwfId: n3IwfId
  5078                      ngeNbId: ngeNbId
  5079                    ageOfLocationInformation: 24202
  5080                    ncgi:
  5081                      plmnId:
  5082                        mnc: mnc
  5083                        mcc: mcc
  5084                      nrCellId: nrCellId
  5085                    tai:
  5086                      tac: tac
  5087                      plmnId:
  5088                        mnc: mnc
  5089                        mcc: mcc
  5090                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5091                    geodeticInformation: geodeticInformation
  5092                  n3gaLocation:
  5093                    ueIpv4Addr: 198.51.100.1
  5094                    n3gppTai:
  5095                      tac: tac
  5096                      plmnId:
  5097                        mnc: mnc
  5098                        mcc: mcc
  5099                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5100                    n3IwfId: n3IwfId
  5101                    portNumber: 0
  5102              s1UeNetworkCapability: s1UeNetworkCapability
  5103              ueSecurityCapability: ueSecurityCapability
  5104            - nssaiMappingList:
  5105              - hSnssai:
  5106                  sd: sd
  5107                  sst: 51
  5108                mappedSnssai:
  5109                  sd: sd
  5110                  sst: 51
  5111              - hSnssai:
  5112                  sd: sd
  5113                  sst: 51
  5114                mappedSnssai:
  5115                  sd: sd
  5116                  sst: 51
  5117              nsInstanceList:
  5118              - null
  5119              - null
  5120              nasSecurityMode: {}
  5121              nasDownlinkCount: 0
  5122              allowedNssai:
  5123              - sd: sd
  5124                sst: 51
  5125              - sd: sd
  5126                sst: 51
  5127              nasUplinkCount: 0
  5128              expectedUEbehavior:
  5129                validityTime: 2000-01-23T04:56:07.000+00:00
  5130                expMoveTrajectory:
  5131                - eutraLocation:
  5132                    geographicalInformation: geographicalInformation
  5133                    globalNgenbId:
  5134                      gNbId:
  5135                        bitLength: 24
  5136                        gNBValue: gNBValue
  5137                      plmnId:
  5138                        mnc: mnc
  5139                        mcc: mcc
  5140                      n3IwfId: n3IwfId
  5141                      ngeNbId: ngeNbId
  5142                    ageOfLocationInformation: 13583
  5143                    tai:
  5144                      tac: tac
  5145                      plmnId:
  5146                        mnc: mnc
  5147                        mcc: mcc
  5148                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5149                    geodeticInformation: geodeticInformation
  5150                    ecgi:
  5151                      eutraCellId: eutraCellId
  5152                      plmnId:
  5153                        mnc: mnc
  5154                        mcc: mcc
  5155                  nrLocation:
  5156                    geographicalInformation: geographicalInformation
  5157                    globalGnbId:
  5158                      gNbId:
  5159                        bitLength: 24
  5160                        gNBValue: gNBValue
  5161                      plmnId:
  5162                        mnc: mnc
  5163                        mcc: mcc
  5164                      n3IwfId: n3IwfId
  5165                      ngeNbId: ngeNbId
  5166                    ageOfLocationInformation: 24202
  5167                    ncgi:
  5168                      plmnId:
  5169                        mnc: mnc
  5170                        mcc: mcc
  5171                      nrCellId: nrCellId
  5172                    tai:
  5173                      tac: tac
  5174                      plmnId:
  5175                        mnc: mnc
  5176                        mcc: mcc
  5177                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5178                    geodeticInformation: geodeticInformation
  5179                  n3gaLocation:
  5180                    ueIpv4Addr: 198.51.100.1
  5181                    n3gppTai:
  5182                      tac: tac
  5183                      plmnId:
  5184                        mnc: mnc
  5185                        mcc: mcc
  5186                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5187                    n3IwfId: n3IwfId
  5188                    portNumber: 0
  5189                - eutraLocation:
  5190                    geographicalInformation: geographicalInformation
  5191                    globalNgenbId:
  5192                      gNbId:
  5193                        bitLength: 24
  5194                        gNBValue: gNBValue
  5195                      plmnId:
  5196                        mnc: mnc
  5197                        mcc: mcc
  5198                      n3IwfId: n3IwfId
  5199                      ngeNbId: ngeNbId
  5200                    ageOfLocationInformation: 13583
  5201                    tai:
  5202                      tac: tac
  5203                      plmnId:
  5204                        mnc: mnc
  5205                        mcc: mcc
  5206                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5207                    geodeticInformation: geodeticInformation
  5208                    ecgi:
  5209                      eutraCellId: eutraCellId
  5210                      plmnId:
  5211                        mnc: mnc
  5212                        mcc: mcc
  5213                  nrLocation:
  5214                    geographicalInformation: geographicalInformation
  5215                    globalGnbId:
  5216                      gNbId:
  5217                        bitLength: 24
  5218                        gNBValue: gNBValue
  5219                      plmnId:
  5220                        mnc: mnc
  5221                        mcc: mcc
  5222                      n3IwfId: n3IwfId
  5223                      ngeNbId: ngeNbId
  5224                    ageOfLocationInformation: 24202
  5225                    ncgi:
  5226                      plmnId:
  5227                        mnc: mnc
  5228                        mcc: mcc
  5229                      nrCellId: nrCellId
  5230                    tai:
  5231                      tac: tac
  5232                      plmnId:
  5233                        mnc: mnc
  5234                        mcc: mcc
  5235                    ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5236                    geodeticInformation: geodeticInformation
  5237                  n3gaLocation:
  5238                    ueIpv4Addr: 198.51.100.1
  5239                    n3gppTai:
  5240                      tac: tac
  5241                      plmnId:
  5242                        mnc: mnc
  5243                        mcc: mcc
  5244                    ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5245                    n3IwfId: n3IwfId
  5246                    portNumber: 0
  5247              s1UeNetworkCapability: s1UeNetworkCapability
  5248              ueSecurityCapability: ueSecurityCapability
  5249            supiUnauthInd: true
  5250            routingIndicator: routingIndicator
  5251            groupList:
  5252            - null
  5253            - null
  5254            pcfAmPolicyUri: pcfAmPolicyUri
  5255            traceData:
  5256              eventList: eventList
  5257              collectionEntityIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5258              collectionEntityIpv4Addr: 198.51.100.1
  5259              traceRef: traceRef
  5260              interfaceList: interfaceList
  5261              neTypeList: neTypeList
  5262            supi: supi
  5263            subRfsp: 21
  5264            sessionContextList:
  5265            - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  5266              allocatedEbiList:
  5267              - epsBearerId: 2
  5268                arp:
  5269                  priorityLevel: 10
  5270              - epsBearerId: 2
  5271                arp:
  5272                  priorityLevel: 10
  5273              vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  5274              dnn: dnn
  5275              nsInstance: nsInstance
  5276              pduSessionId: 26
  5277              sNssai:
  5278                sd: sd
  5279                sst: 51
  5280              smContextRef: smContextRef
  5281            - hsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  5282              allocatedEbiList:
  5283              - epsBearerId: 2
  5284                arp:
  5285                  priorityLevel: 10
  5286              - epsBearerId: 2
  5287                arp:
  5288                  priorityLevel: 10
  5289              vsmfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  5290              dnn: dnn
  5291              nsInstance: nsInstance
  5292              pduSessionId: 26
  5293              sNssai:
  5294                sd: sd
  5295                sst: 51
  5296              smContextRef: smContextRef
  5297            hpcfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  5298            restrictedRatList:
  5299            - null
  5300            - null
  5301            serviceAreaRestriction:
  5302              maxNumOfTAs: 0
  5303              areas:
  5304              - areaCodes: areaCodes
  5305                tacs:
  5306                - null
  5307                - null
  5308              - areaCodes: areaCodes
  5309                tacs:
  5310                - null
  5311                - null
  5312            usedRfsp: 154
  5313            restrictedCoreNwTypeList:
  5314            - null
  5315            - null
  5316            udmGroupId: udmGroupId
  5317          pcfReselectedInd: true
  5318          targetToSourceData:
  5319            ngapData:
  5320              contentId: contentId
  5321            ngapMessageType: 0
  5322          supportedFeatures: supportedFeatures
  5323          pduSessionList:
  5324          - subjectToHo: true
  5325            pduSessionId: 29
  5326            n2InfoContent:
  5327              ngapData:
  5328                contentId: contentId
  5329              ngapMessageType: 0
  5330            sNssai:
  5331              sd: sd
  5332              sst: 51
  5333          - subjectToHo: true
  5334            pduSessionId: 29
  5335            n2InfoContent:
  5336              ngapData:
  5337                contentId: contentId
  5338              ngapMessageType: 0
  5339            sNssai:
  5340              sd: sd
  5341              sst: 51
  5342          ngapCause:
  5343            value: 0
  5344            group: 0
  5345          failedSessionList:
  5346          - subjectToHo: true
  5347            pduSessionId: 29
  5348            n2InfoContent:
  5349              ngapData:
  5350                contentId: contentId
  5351              ngapMessageType: 0
  5352            sNssai:
  5353              sd: sd
  5354              sst: 51
  5355          - subjectToHo: true
  5356            pduSessionId: 29
  5357            n2InfoContent:
  5358              ngapData:
  5359                contentId: contentId
  5360              ngapMessageType: 0
  5361            sNssai:
  5362              sd: sd
  5363              sst: 51
  5364        properties:
  5365          ueContext:
  5366            $ref: '#/components/schemas/UeContext'
  5367          targetToSourceData:
  5368            $ref: '#/components/schemas/N2InfoContent'
  5369          pduSessionList:
  5370            items:
  5371              $ref: '#/components/schemas/N2SmInformation'
  5372            minItems: 1
  5373            type: array
  5374          ngapCause:
  5375            $ref: '#/components/schemas/NgApCause'
  5376          failedSessionList:
  5377            items:
  5378              $ref: '#/components/schemas/N2SmInformation'
  5379            minItems: 1
  5380            type: array
  5381          supportedFeatures:
  5382            pattern: ^[A-Fa-f0-9]*$
  5383            type: string
  5384          pcfReselectedInd:
  5385            type: boolean
  5386        required:
  5387        - pduSessions
  5388        - targetToSourceData
  5389        - ueContext
  5390        type: object
  5391      UeContextCreateError:
  5392        properties:
  5393          error:
  5394            $ref: '#/components/schemas/ProblemDetails'
  5395          ngapCause:
  5396            $ref: '#/components/schemas/NgApCause'
  5397        required:
  5398        - error
  5399        type: object
  5400      NgRanTargetId:
  5401        properties:
  5402          ranNodeId:
  5403            $ref: '#/components/schemas/GlobalRanNodeId'
  5404          tai:
  5405            $ref: '#/components/schemas/Tai'
  5406        required:
  5407        - ranNodeId
  5408        - tai
  5409        type: object
  5410      PWSResponseData:
  5411        example:
  5412          serialNumber: 39500
  5413          unknownTaiList:
  5414          - tac: tac
  5415            plmnId:
  5416              mnc: mnc
  5417              mcc: mcc
  5418          - tac: tac
  5419            plmnId:
  5420              mnc: mnc
  5421              mcc: mcc
  5422          messageIdentifier: 1
  5423          ngapMessageType: 0
  5424        properties:
  5425          ngapMessageType:
  5426            format: int32
  5427            minimum: 0
  5428            type: integer
  5429          serialNumber:
  5430            format: int32
  5431            maximum: 65535
  5432            minimum: 0
  5433            type: integer
  5434          messageIdentifier:
  5435            format: int32
  5436            type: integer
  5437          unknownTaiList:
  5438            items:
  5439              $ref: '#/components/schemas/Tai'
  5440            minItems: 1
  5441            type: array
  5442        required:
  5443        - messageIdentifier
  5444        - ngapMessageType
  5445        - serialNumber
  5446        type: object
  5447      PWSErrorData:
  5448        properties:
  5449          namfCause:
  5450            format: int32
  5451            type: integer
  5452        required:
  5453        - namfCause
  5454        type: object
  5455      N2InformationTransferError:
  5456        properties:
  5457          error:
  5458            $ref: '#/components/schemas/ProblemDetails'
  5459          pwdErrorInfo:
  5460            $ref: '#/components/schemas/PWSErrorData'
  5461        required:
  5462        - error
  5463        type: object
  5464      NgKsi:
  5465        example:
  5466          ksi: 0
  5467        properties:
  5468          tsc:
  5469            $ref: '#/components/schemas/ScType'
  5470          ksi:
  5471            format: int32
  5472            maximum: 6
  5473            minimum: 0
  5474            type: integer
  5475        required:
  5476        - ksi
  5477        - tsc
  5478        type: object
  5479      KeyAmf:
  5480        example:
  5481          keyVal: keyVal
  5482        properties:
  5483          keyType:
  5484            $ref: '#/components/schemas/KeyAmfType'
  5485          keyVal:
  5486            type: string
  5487        required:
  5488        - keyType
  5489        - keyVal
  5490        type: object
  5491      ExpectedUeBehavior:
  5492        example:
  5493          validityTime: 2000-01-23T04:56:07.000+00:00
  5494          expMoveTrajectory:
  5495          - eutraLocation:
  5496              geographicalInformation: geographicalInformation
  5497              globalNgenbId:
  5498                gNbId:
  5499                  bitLength: 24
  5500                  gNBValue: gNBValue
  5501                plmnId:
  5502                  mnc: mnc
  5503                  mcc: mcc
  5504                n3IwfId: n3IwfId
  5505                ngeNbId: ngeNbId
  5506              ageOfLocationInformation: 13583
  5507              tai:
  5508                tac: tac
  5509                plmnId:
  5510                  mnc: mnc
  5511                  mcc: mcc
  5512              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5513              geodeticInformation: geodeticInformation
  5514              ecgi:
  5515                eutraCellId: eutraCellId
  5516                plmnId:
  5517                  mnc: mnc
  5518                  mcc: mcc
  5519            nrLocation:
  5520              geographicalInformation: geographicalInformation
  5521              globalGnbId:
  5522                gNbId:
  5523                  bitLength: 24
  5524                  gNBValue: gNBValue
  5525                plmnId:
  5526                  mnc: mnc
  5527                  mcc: mcc
  5528                n3IwfId: n3IwfId
  5529                ngeNbId: ngeNbId
  5530              ageOfLocationInformation: 24202
  5531              ncgi:
  5532                plmnId:
  5533                  mnc: mnc
  5534                  mcc: mcc
  5535                nrCellId: nrCellId
  5536              tai:
  5537                tac: tac
  5538                plmnId:
  5539                  mnc: mnc
  5540                  mcc: mcc
  5541              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5542              geodeticInformation: geodeticInformation
  5543            n3gaLocation:
  5544              ueIpv4Addr: 198.51.100.1
  5545              n3gppTai:
  5546                tac: tac
  5547                plmnId:
  5548                  mnc: mnc
  5549                  mcc: mcc
  5550              ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5551              n3IwfId: n3IwfId
  5552              portNumber: 0
  5553          - eutraLocation:
  5554              geographicalInformation: geographicalInformation
  5555              globalNgenbId:
  5556                gNbId:
  5557                  bitLength: 24
  5558                  gNBValue: gNBValue
  5559                plmnId:
  5560                  mnc: mnc
  5561                  mcc: mcc
  5562                n3IwfId: n3IwfId
  5563                ngeNbId: ngeNbId
  5564              ageOfLocationInformation: 13583
  5565              tai:
  5566                tac: tac
  5567                plmnId:
  5568                  mnc: mnc
  5569                  mcc: mcc
  5570              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5571              geodeticInformation: geodeticInformation
  5572              ecgi:
  5573                eutraCellId: eutraCellId
  5574                plmnId:
  5575                  mnc: mnc
  5576                  mcc: mcc
  5577            nrLocation:
  5578              geographicalInformation: geographicalInformation
  5579              globalGnbId:
  5580                gNbId:
  5581                  bitLength: 24
  5582                  gNBValue: gNBValue
  5583                plmnId:
  5584                  mnc: mnc
  5585                  mcc: mcc
  5586                n3IwfId: n3IwfId
  5587                ngeNbId: ngeNbId
  5588              ageOfLocationInformation: 24202
  5589              ncgi:
  5590                plmnId:
  5591                  mnc: mnc
  5592                  mcc: mcc
  5593                nrCellId: nrCellId
  5594              tai:
  5595                tac: tac
  5596                plmnId:
  5597                  mnc: mnc
  5598                  mcc: mcc
  5599              ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  5600              geodeticInformation: geodeticInformation
  5601            n3gaLocation:
  5602              ueIpv4Addr: 198.51.100.1
  5603              n3gppTai:
  5604                tac: tac
  5605                plmnId:
  5606                  mnc: mnc
  5607                  mcc: mcc
  5608              ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  5609              n3IwfId: n3IwfId
  5610              portNumber: 0
  5611        properties:
  5612          expMoveTrajectory:
  5613            items:
  5614              $ref: '#/components/schemas/UserLocation'
  5615            minItems: 1
  5616            type: array
  5617          validityTime:
  5618            format: date-time
  5619            type: string
  5620        required:
  5621        - expMoveTrajectory
  5622        - validityTime
  5623        type: object
  5624      N2RanInformation:
  5625        properties:
  5626          n2InfoContent:
  5627            $ref: '#/components/schemas/N2InfoContent'
  5628        required:
  5629        - n2InfoContent
  5630        type: object
  5631      EpsBearerId:
  5632        format: int32
  5633        maximum: 15
  5634        minimum: 0
  5635        type: integer
  5636      Ppi:
  5637        format: int32
  5638        maximum: 7
  5639        minimum: 0
  5640        type: integer
  5641      NasCount:
  5642        format: int32
  5643        minimum: 0
  5644        type: integer
  5645      5GMmCapability:
  5646        format: byte
  5647        type: string
  5648      UeSecurityCapability:
  5649        format: byte
  5650        type: string
  5651      S1UeNetworkCapability:
  5652        format: byte
  5653        type: string
  5654      DrxParameter:
  5655        format: byte
  5656        type: string
  5657      OmcIdentifier:
  5658        type: string
  5659      StatusChange:
  5660        enum:
  5661        - AMF_UNAVAILABLE
  5662        - AMF_AVAILABLE
  5663        type: string
  5664      N2InformationClass:
  5665        enum:
  5666        - SM
  5667        - NRPPa
  5668        - PWS
  5669        - PWS-BCAL
  5670        - PWS-RF
  5671        - RAN
  5672        type: string
  5673      N1MessageClass:
  5674        enum:
  5675        - 5GMM
  5676        - SM
  5677        - LPP
  5678        - SMS
  5679        - UPDP
  5680        type: string
  5681      N1N2MessageTransferCause:
  5682        enum:
  5683        - ATTEMPTING_TO_REACH_UE
  5684        - N1_N2_TRANSFER_INITIATED
  5685        - WAITING_FOR_ASYNCHRONOUS_TRANSFER
  5686        - UE_NOT_RESPONDING
  5687        - N1_MSG_NOT_TRANSFERRED
  5688        - UE_NOT_REACHABLE_FOR_SESSION
  5689        type: string
  5690      UeContextTransferStatus:
  5691        enum:
  5692        - TRANSFERRED
  5693        - NOT_TRANSFERRED
  5694        type: string
  5695      N2InformationTransferResult:
  5696        enum:
  5697        - N2_INFO_TRANSFER_INITIATED
  5698        type: string
  5699      CipheringAlgorithm:
  5700        enum:
  5701        - NEA0
  5702        - NEA1
  5703        - NEA2
  5704        - NEA3
  5705        type: string
  5706      IntegrityAlgorithm:
  5707        enum:
  5708        - NIA0
  5709        - NIA1
  5710        - NIA2
  5711        - NIA3
  5712        type: string
  5713      SmsSupport:
  5714        enum:
  5715        - 3GPP
  5716        - NON_3GPP
  5717        - BOTH
  5718        - NONE
  5719        type: string
  5720      ScType:
  5721        enum:
  5722        - NATIVE
  5723        - MAPPED
  5724        type: string
  5725      KeyAmfType:
  5726        enum:
  5727        - KAMF
  5728        - KPRIMEAMF
  5729        type: string
  5730      TransferReason:
  5731        enum:
  5732        - INIT_REG
  5733        - MOBI_REG
  5734        - MOBI_REG_UE_VALIDATED
  5735        type: string
  5736      AMPolicyReqTrigger:
  5737        enum:
  5738        - LOCATION_CHANGE
  5739        - PRA_CHANGE
  5740        - SARI_CHANGE
  5741        - RFSP_INDEX_CHANGE
  5742        type: string
  5743      RatSelector:
  5744        enum:
  5745        - E-UTRA
  5746        - NR
  5747        type: string
  5748      NgapIeType:
  5749        enum:
  5750        - PDU_RES_SETUP_REQ
  5751        - PDU_RES_REL_CMD
  5752        - PDU_RES_MOD_REQ
  5753        - HANDOVER_CMD
  5754        - HANDOVER_REQUIRED
  5755        - HANDOVER_PREP_FAIL
  5756        - SRC_TO_TAR_CONTAINER
  5757        - TAR_TO_SRC_CONTAINER
  5758        - RAN_STATUS_TRANS_CONTAINER
  5759        - SON_CONFIG_TRANSFER
  5760        - NRPPA_PDU
  5761        - UE_RADIO_CAPABILITY
  5762        type: string
  5763      N2InfoNotifyReason:
  5764        enum:
  5765        - HANDOVER_COMPLETED
  5766        type: string
  5767      ProblemDetails:
  5768        properties:
  5769          type:
  5770            type: string
  5771          title:
  5772            type: string
  5773          status:
  5774            format: int32
  5775            type: integer
  5776          detail:
  5777            type: string
  5778          instance:
  5779            type: string
  5780          cause:
  5781            type: string
  5782          invalidParams:
  5783            items:
  5784              $ref: '#/components/schemas/InvalidParam'
  5785            minItems: 1
  5786            type: array
  5787        type: object
  5788      Uri:
  5789        type: string
  5790      InvalidParam:
  5791        properties:
  5792          param:
  5793            type: string
  5794          reason:
  5795            type: string
  5796        required:
  5797        - param
  5798        type: object
  5799      Guami:
  5800        example:
  5801          plmnId:
  5802            mnc: mnc
  5803            mcc: mcc
  5804          amfId: amfId
  5805        properties:
  5806          plmnId:
  5807            $ref: '#/components/schemas/PlmnId'
  5808          amfId:
  5809            pattern: ^[A-Fa-f0-9]{6}$
  5810            type: string
  5811        required:
  5812        - amfId
  5813        - plmnId
  5814        type: object
  5815      PlmnId:
  5816        example:
  5817          mnc: mnc
  5818          mcc: mcc
  5819        properties:
  5820          mcc:
  5821            pattern: ^\d{3}$
  5822            type: string
  5823          mnc:
  5824            pattern: ^\d{2,3}$
  5825            type: string
  5826        required:
  5827        - mcc
  5828        - mnc
  5829        type: object
  5830      Mcc:
  5831        pattern: ^\d{3}$
  5832        type: string
  5833      Mnc:
  5834        pattern: ^\d{2,3}$
  5835        type: string
  5836      AmfId:
  5837        pattern: ^[A-Fa-f0-9]{6}$
  5838        type: string
  5839      AmfName:
  5840        type: string
  5841      PduSessionId:
  5842        format: int32
  5843        maximum: 255
  5844        minimum: 0
  5845        type: integer
  5846      Arp:
  5847        example:
  5848          priorityLevel: 10
  5849        properties:
  5850          priorityLevel:
  5851            format: int32
  5852            maximum: 15
  5853            minimum: 1
  5854            nullable: true
  5855            type: integer
  5856          preemptCap:
  5857            $ref: '#/components/schemas/PreemptionCapability'
  5858          preemptVuln:
  5859            $ref: '#/components/schemas/PreemptionVulnerability'
  5860        required:
  5861        - preemptCap
  5862        - preemptVuln
  5863        - priorityLevel
  5864        type: object
  5865      ArpPriorityLevel:
  5866        format: int32
  5867        maximum: 15
  5868        minimum: 1
  5869        nullable: true
  5870        type: integer
  5871      PreemptionCapability:
  5872        enum:
  5873        - NOT_PREEMPT
  5874        - MAY_PREEMPT
  5875        type: string
  5876      PreemptionVulnerability:
  5877        enum:
  5878        - NOT_PREEMPTABLE
  5879        - PREEMPTABLE
  5880        type: string
  5881      EbiArpMapping:
  5882        example:
  5883          epsBearerId: 2
  5884          arp:
  5885            priorityLevel: 10
  5886        properties:
  5887          epsBearerId:
  5888            format: int32
  5889            maximum: 15
  5890            minimum: 0
  5891            type: integer
  5892          arp:
  5893            $ref: '#/components/schemas/Arp'
  5894        required:
  5895        - arp
  5896        - epsBearerId
  5897        type: object
  5898      EpsBearerId_2:
  5899        format: int32
  5900        maximum: 15
  5901        minimum: 0
  5902        type: integer
  5903      Supi:
  5904        pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  5905        type: string
  5906      NgApCause:
  5907        example:
  5908          value: 0
  5909          group: 0
  5910        properties:
  5911          group:
  5912            format: int32
  5913            minimum: 0
  5914            type: integer
  5915          value:
  5916            format: int32
  5917            minimum: 0
  5918            type: integer
  5919        required:
  5920        - group
  5921        - value
  5922        type: object
  5923      Uinteger:
  5924        format: int32
  5925        minimum: 0
  5926        type: integer
  5927      Tai:
  5928        example:
  5929          tac: tac
  5930          plmnId:
  5931            mnc: mnc
  5932            mcc: mcc
  5933        properties:
  5934          plmnId:
  5935            $ref: '#/components/schemas/PlmnId'
  5936          tac:
  5937            pattern: (^[A-Fa-f0-9]{4}$)|(^[A-Fa-f0-9]{6}$)
  5938            type: string
  5939        required:
  5940        - plmnId
  5941        - tac
  5942        type: object
  5943      Tac:
  5944        pattern: (^[A-Fa-f0-9]{4}$)|(^[A-Fa-f0-9]{6}$)
  5945        type: string
  5946      Ecgi:
  5947        example:
  5948          eutraCellId: eutraCellId
  5949          plmnId:
  5950            mnc: mnc
  5951            mcc: mcc
  5952        properties:
  5953          plmnId:
  5954            $ref: '#/components/schemas/PlmnId'
  5955          eutraCellId:
  5956            pattern: ^[A-Fa-f0-9]{7}$
  5957            type: string
  5958        required:
  5959        - eutraCellId
  5960        - plmnId
  5961        type: object
  5962      EutraCellId:
  5963        pattern: ^[A-Fa-f0-9]{7}$
  5964        type: string
  5965      Ncgi:
  5966        example:
  5967          plmnId:
  5968            mnc: mnc
  5969            mcc: mcc
  5970          nrCellId: nrCellId
  5971        properties:
  5972          plmnId:
  5973            $ref: '#/components/schemas/PlmnId'
  5974          nrCellId:
  5975            pattern: ^[A-Fa-f0-9]{9}$
  5976            type: string
  5977        required:
  5978        - nrCellId
  5979        - plmnId
  5980        type: object
  5981      NrCellId:
  5982        pattern: ^[A-Fa-f0-9]{9}$
  5983        type: string
  5984      GlobalRanNodeId:
  5985        example:
  5986          gNbId:
  5987            bitLength: 24
  5988            gNBValue: gNBValue
  5989          plmnId:
  5990            mnc: mnc
  5991            mcc: mcc
  5992          n3IwfId: n3IwfId
  5993          ngeNbId: ngeNbId
  5994        oneOf:
  5995        - required:
  5996          - n3IwfId
  5997        - required:
  5998          - gNbId
  5999        - required:
  6000          - ngeNbId
  6001        properties:
  6002          plmnId:
  6003            $ref: '#/components/schemas/PlmnId'
  6004          n3IwfId:
  6005            type: string
  6006          gNbId:
  6007            $ref: '#/components/schemas/GNbId'
  6008          ngeNbId:
  6009            pattern: ^(MacroNGeNB-[A-Fa-f0-9]{5}|LMacroNGeNB-[A-Fa-f0-9]{6}|SMacroNGeNB-[A-Fa-f0-9]{5})$
  6010            type: string
  6011        required:
  6012        - plmnId
  6013        type: object
  6014      N3IwfId:
  6015        type: string
  6016      GNbId:
  6017        example:
  6018          bitLength: 24
  6019          gNBValue: gNBValue
  6020        properties:
  6021          bitLength:
  6022            format: int32
  6023            maximum: 32
  6024            minimum: 22
  6025            type: integer
  6026          gNBValue:
  6027            pattern: ^[A-Fa-f0-9]{6,8}$
  6028            type: string
  6029        required:
  6030        - bitLength
  6031        - gNBValue
  6032        type: object
  6033      NgeNbId:
  6034        pattern: ^(MacroNGeNB-[A-Fa-f0-9]{5}|LMacroNGeNB-[A-Fa-f0-9]{6}|SMacroNGeNB-[A-Fa-f0-9]{5})$
  6035        type: string
  6036      SupportedFeatures:
  6037        pattern: ^[A-Fa-f0-9]*$
  6038        type: string
  6039      AccessType:
  6040        enum:
  6041        - 3GPP_ACCESS
  6042        - NON_3GPP_ACCESS
  6043        type: string
  6044      NfInstanceId:
  6045        format: uuid
  6046        type: string
  6047      CorrelationID:
  6048        maxLength: 255
  6049        minLength: 1
  6050        type: string
  6051      RefToBinaryData:
  6052        example:
  6053          contentId: contentId
  6054        properties:
  6055          contentId:
  6056            type: string
  6057        required:
  6058        - contentId
  6059        type: object
  6060      5Qi:
  6061        format: int32
  6062        maximum: 255
  6063        minimum: 0
  6064        type: integer
  6065      TimeZone:
  6066        type: string
  6067      UserLocation:
  6068        example:
  6069          eutraLocation:
  6070            geographicalInformation: geographicalInformation
  6071            globalNgenbId:
  6072              gNbId:
  6073                bitLength: 24
  6074                gNBValue: gNBValue
  6075              plmnId:
  6076                mnc: mnc
  6077                mcc: mcc
  6078              n3IwfId: n3IwfId
  6079              ngeNbId: ngeNbId
  6080            ageOfLocationInformation: 13583
  6081            tai:
  6082              tac: tac
  6083              plmnId:
  6084                mnc: mnc
  6085                mcc: mcc
  6086            ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  6087            geodeticInformation: geodeticInformation
  6088            ecgi:
  6089              eutraCellId: eutraCellId
  6090              plmnId:
  6091                mnc: mnc
  6092                mcc: mcc
  6093          nrLocation:
  6094            geographicalInformation: geographicalInformation
  6095            globalGnbId:
  6096              gNbId:
  6097                bitLength: 24
  6098                gNBValue: gNBValue
  6099              plmnId:
  6100                mnc: mnc
  6101                mcc: mcc
  6102              n3IwfId: n3IwfId
  6103              ngeNbId: ngeNbId
  6104            ageOfLocationInformation: 24202
  6105            ncgi:
  6106              plmnId:
  6107                mnc: mnc
  6108                mcc: mcc
  6109              nrCellId: nrCellId
  6110            tai:
  6111              tac: tac
  6112              plmnId:
  6113                mnc: mnc
  6114                mcc: mcc
  6115            ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  6116            geodeticInformation: geodeticInformation
  6117          n3gaLocation:
  6118            ueIpv4Addr: 198.51.100.1
  6119            n3gppTai:
  6120              tac: tac
  6121              plmnId:
  6122                mnc: mnc
  6123                mcc: mcc
  6124            ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  6125            n3IwfId: n3IwfId
  6126            portNumber: 0
  6127        properties:
  6128          eutraLocation:
  6129            $ref: '#/components/schemas/EutraLocation'
  6130          nrLocation:
  6131            $ref: '#/components/schemas/NrLocation'
  6132          n3gaLocation:
  6133            $ref: '#/components/schemas/N3gaLocation'
  6134        type: object
  6135      EutraLocation:
  6136        example:
  6137          geographicalInformation: geographicalInformation
  6138          globalNgenbId:
  6139            gNbId:
  6140              bitLength: 24
  6141              gNBValue: gNBValue
  6142            plmnId:
  6143              mnc: mnc
  6144              mcc: mcc
  6145            n3IwfId: n3IwfId
  6146            ngeNbId: ngeNbId
  6147          ageOfLocationInformation: 13583
  6148          tai:
  6149            tac: tac
  6150            plmnId:
  6151              mnc: mnc
  6152              mcc: mcc
  6153          ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  6154          geodeticInformation: geodeticInformation
  6155          ecgi:
  6156            eutraCellId: eutraCellId
  6157            plmnId:
  6158              mnc: mnc
  6159              mcc: mcc
  6160        properties:
  6161          tai:
  6162            $ref: '#/components/schemas/Tai'
  6163          ecgi:
  6164            $ref: '#/components/schemas/Ecgi'
  6165          ageOfLocationInformation:
  6166            format: int32
  6167            maximum: 32767
  6168            minimum: 0
  6169            type: integer
  6170          ueLocationTimestamp:
  6171            format: date-time
  6172            type: string
  6173          geographicalInformation:
  6174            pattern: ^[0-9A-F]{16}$
  6175            type: string
  6176          geodeticInformation:
  6177            pattern: ^[0-9A-F]{20}$
  6178            type: string
  6179          globalNgenbId:
  6180            $ref: '#/components/schemas/GlobalRanNodeId'
  6181        required:
  6182        - ecgi
  6183        - tai
  6184        type: object
  6185      DateTime:
  6186        format: date-time
  6187        type: string
  6188      NrLocation:
  6189        example:
  6190          geographicalInformation: geographicalInformation
  6191          globalGnbId:
  6192            gNbId:
  6193              bitLength: 24
  6194              gNBValue: gNBValue
  6195            plmnId:
  6196              mnc: mnc
  6197              mcc: mcc
  6198            n3IwfId: n3IwfId
  6199            ngeNbId: ngeNbId
  6200          ageOfLocationInformation: 24202
  6201          ncgi:
  6202            plmnId:
  6203              mnc: mnc
  6204              mcc: mcc
  6205            nrCellId: nrCellId
  6206          tai:
  6207            tac: tac
  6208            plmnId:
  6209              mnc: mnc
  6210              mcc: mcc
  6211          ueLocationTimestamp: 2000-01-23T04:56:07.000+00:00
  6212          geodeticInformation: geodeticInformation
  6213        properties:
  6214          tai:
  6215            $ref: '#/components/schemas/Tai'
  6216          ncgi:
  6217            $ref: '#/components/schemas/Ncgi'
  6218          ageOfLocationInformation:
  6219            format: int32
  6220            maximum: 32767
  6221            minimum: 0
  6222            type: integer
  6223          ueLocationTimestamp:
  6224            format: date-time
  6225            type: string
  6226          geographicalInformation:
  6227            pattern: ^[0-9A-F]{16}$
  6228            type: string
  6229          geodeticInformation:
  6230            pattern: ^[0-9A-F]{20}$
  6231            type: string
  6232          globalGnbId:
  6233            $ref: '#/components/schemas/GlobalRanNodeId'
  6234        required:
  6235        - ncgi
  6236        - tai
  6237        type: object
  6238      N3gaLocation:
  6239        example:
  6240          ueIpv4Addr: 198.51.100.1
  6241          n3gppTai:
  6242            tac: tac
  6243            plmnId:
  6244              mnc: mnc
  6245              mcc: mcc
  6246          ueIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  6247          n3IwfId: n3IwfId
  6248          portNumber: 0
  6249        properties:
  6250          n3gppTai:
  6251            $ref: '#/components/schemas/Tai'
  6252          n3IwfId:
  6253            pattern: ^[A-Fa-f0-9]+$
  6254            type: string
  6255          ueIpv4Addr:
  6256            example: 198.51.100.1
  6257            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])$
  6258            type: string
  6259          ueIpv6Addr:
  6260            $ref: '#/components/schemas/Ipv6Addr'
  6261          portNumber:
  6262            format: int32
  6263            minimum: 0
  6264            type: integer
  6265        type: object
  6266      Ipv4Addr:
  6267        example: 198.51.100.1
  6268        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])$
  6269        type: string
  6270      Ipv6Addr:
  6271        allOf:
  6272        - 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})))$
  6273        - pattern: ^((([^:]+:){7}([^:]+))|((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?))$
  6274        example: 2001:db8:85a3::8a2e:370:7334
  6275        type: string
  6276      AllowedNssai:
  6277        properties:
  6278          allowedSnssaiList:
  6279            items:
  6280              $ref: '#/components/schemas/AllowedSnssai'
  6281            minItems: 1
  6282            type: array
  6283          accessType:
  6284            $ref: '#/components/schemas/AccessType'
  6285        required:
  6286        - accessType
  6287        - allowedSnssaiList
  6288        type: object
  6289      AllowedSnssai:
  6290        properties:
  6291          allowedSnssai:
  6292            $ref: '#/components/schemas/Snssai'
  6293          nsiInformationList:
  6294            items:
  6295              $ref: '#/components/schemas/NsiInformation'
  6296            minItems: 1
  6297            type: array
  6298          mappedHomeSnssai:
  6299            $ref: '#/components/schemas/Snssai'
  6300        required:
  6301        - allowedSnssai
  6302        type: object
  6303      NsiInformation:
  6304        properties:
  6305          nrfId:
  6306            type: string
  6307          nsiId:
  6308            type: string
  6309        required:
  6310        - nrfId
  6311        type: object
  6312      NsiId:
  6313        type: string
  6314      ConfiguredSnssai:
  6315        properties:
  6316          configuredSnssai:
  6317            $ref: '#/components/schemas/Snssai'
  6318          mappedHomeSnssai:
  6319            $ref: '#/components/schemas/Snssai'
  6320        required:
  6321        - configuredSnssai
  6322        type: object
  6323      Snssai:
  6324        example:
  6325          sd: sd
  6326          sst: 51
  6327        properties:
  6328          sst:
  6329            format: int32
  6330            maximum: 255
  6331            minimum: 0
  6332            type: integer
  6333          sd:
  6334            pattern: ^[A-Fa-f0-9]{6}$
  6335            type: string
  6336        required:
  6337        - sst
  6338        type: object
  6339      Gpsi:
  6340        pattern: ^(msisdn-[0-9]{5,15}|extid-[^@]+@[^@]+|.+)$
  6341        type: string
  6342      Pei:
  6343        pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
  6344        type: string
  6345      NfGroupId:
  6346        type: string
  6347      GroupId:
  6348        pattern: ^[A-Fa-f0-9]{8}-[0-9]{3}-[0-9]{2,3}-([A-Fa-f0-9][A-Fa-f0-9]){1,10}$
  6349        type: string
  6350      RfspIndex:
  6351        format: int32
  6352        maximum: 256
  6353        minimum: 1
  6354        type: integer
  6355      Ambr:
  6356        example:
  6357          uplink: uplink
  6358          downlink: downlink
  6359        properties:
  6360          uplink:
  6361            pattern: ^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$
  6362            type: string
  6363          downlink:
  6364            pattern: ^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$
  6365            type: string
  6366        required:
  6367        - downlink
  6368        - uplink
  6369        type: object
  6370      BitRate:
  6371        pattern: ^\d+(\.\d+)? (bps|Kbps|Mbps|Gbps|Tbps)$
  6372        type: string
  6373      RatType:
  6374        enum:
  6375        - NR
  6376        - EUTRA
  6377        - WLAN
  6378        - VIRTUAL
  6379        type: string
  6380      Area:
  6381        example:
  6382          areaCodes: areaCodes
  6383          tacs:
  6384          - null
  6385          - null
  6386        oneOf:
  6387        - required:
  6388          - tacs
  6389        - required:
  6390          - areaCode
  6391        properties:
  6392          tacs:
  6393            items:
  6394              $ref: '#/components/schemas/Tac'
  6395            minItems: 1
  6396            type: array
  6397          areaCodes:
  6398            type: string
  6399        type: object
  6400      AreaCode:
  6401        type: string
  6402      ServiceAreaRestriction:
  6403        allOf:
  6404        - oneOf:
  6405          - not:
  6406              required:
  6407              - restrictionType
  6408          - required:
  6409            - areas
  6410        - anyOf:
  6411          - not:
  6412              properties:
  6413                restrictionType:
  6414                  enum:
  6415                  - NOT_ALLOWED_AREAS
  6416                  type: string
  6417              required:
  6418              - restrictionType
  6419          - not:
  6420              required:
  6421              - maxNumOfTAs
  6422        example:
  6423          maxNumOfTAs: 0
  6424          areas:
  6425          - areaCodes: areaCodes
  6426            tacs:
  6427            - null
  6428            - null
  6429          - areaCodes: areaCodes
  6430            tacs:
  6431            - null
  6432            - null
  6433        properties:
  6434          restrictionType:
  6435            $ref: '#/components/schemas/RestrictionType'
  6436          areas:
  6437            items:
  6438              $ref: '#/components/schemas/Area'
  6439            type: array
  6440          maxNumOfTAs:
  6441            format: int32
  6442            minimum: 0
  6443            type: integer
  6444        type: object
  6445      RestrictionType:
  6446        enum:
  6447        - ALLOWED_AREAS
  6448        - NOT_ALLOWED_AREAS
  6449        type: string
  6450      CoreNetworkType:
  6451        enum:
  6452        - 5GC
  6453        - EPC
  6454        type: string
  6455      AmfEventSubscription:
  6456        example:
  6457          eventNotifyUri: eventNotifyUri
  6458          nfId: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
  6459          eventList:
  6460          - subscribedDataFilterList:
  6461            - null
  6462            - null
  6463            areaList:
  6464            - presenceInfo:
  6465                ecgiList:
  6466                - eutraCellId: eutraCellId
  6467                  plmnId:
  6468                    mnc: mnc
  6469                    mcc: mcc
  6470                - eutraCellId: eutraCellId
  6471                  plmnId:
  6472                    mnc: mnc
  6473                    mcc: mcc
  6474                globalRanNodeIdList:
  6475                - gNbId:
  6476                    bitLength: 24
  6477                    gNBValue: gNBValue
  6478                  plmnId:
  6479                    mnc: mnc
  6480                    mcc: mcc
  6481                  n3IwfId: n3IwfId
  6482                  ngeNbId: ngeNbId
  6483                - gNbId:
  6484                    bitLength: 24
  6485                    gNBValue: gNBValue
  6486                  plmnId:
  6487                    mnc: mnc
  6488                    mcc: mcc
  6489                  n3IwfId: n3IwfId
  6490                  ngeNbId: ngeNbId
  6491                praId: praId
  6492                trackingAreaList:
  6493                - tac: tac
  6494                  plmnId:
  6495                    mnc: mnc
  6496                    mcc: mcc
  6497                - tac: tac
  6498                  plmnId:
  6499                    mnc: mnc
  6500                    mcc: mcc
  6501                ncgiList:
  6502                - plmnId:
  6503                    mnc: mnc
  6504                    mcc: mcc
  6505                  nrCellId: nrCellId
  6506                - plmnId:
  6507                    mnc: mnc
  6508                    mcc: mcc
  6509                  nrCellId: nrCellId
  6510              ladnInfo:
  6511                ladn: ladn
  6512            - presenceInfo:
  6513                ecgiList:
  6514                - eutraCellId: eutraCellId
  6515                  plmnId:
  6516                    mnc: mnc
  6517                    mcc: mcc
  6518                - eutraCellId: eutraCellId
  6519                  plmnId:
  6520                    mnc: mnc
  6521                    mcc: mcc
  6522                globalRanNodeIdList:
  6523                - gNbId:
  6524                    bitLength: 24
  6525                    gNBValue: gNBValue
  6526                  plmnId:
  6527                    mnc: mnc
  6528                    mcc: mcc
  6529                  n3IwfId: n3IwfId
  6530                  ngeNbId: ngeNbId
  6531                - gNbId:
  6532                    bitLength: 24
  6533                    gNBValue: gNBValue
  6534                  plmnId:
  6535                    mnc: mnc
  6536                    mcc: mcc
  6537                  n3IwfId: n3IwfId
  6538                  ngeNbId: ngeNbId
  6539                praId: praId
  6540                trackingAreaList:
  6541                - tac: tac
  6542                  plmnId:
  6543                    mnc: mnc
  6544                    mcc: mcc
  6545                - tac: tac
  6546                  plmnId:
  6547                    mnc: mnc
  6548                    mcc: mcc
  6549                ncgiList:
  6550                - plmnId:
  6551                    mnc: mnc
  6552                    mcc: mcc
  6553                  nrCellId: nrCellId
  6554                - plmnId:
  6555                    mnc: mnc
  6556                    mcc: mcc
  6557                  nrCellId: nrCellId
  6558              ladnInfo:
  6559                ladn: ladn
  6560            locationFilterList:
  6561            - null
  6562            - null
  6563            immediateFlag: true
  6564          - subscribedDataFilterList:
  6565            - null
  6566            - null
  6567            areaList:
  6568            - presenceInfo:
  6569                ecgiList:
  6570                - eutraCellId: eutraCellId
  6571                  plmnId:
  6572                    mnc: mnc
  6573                    mcc: mcc
  6574                - eutraCellId: eutraCellId
  6575                  plmnId:
  6576                    mnc: mnc
  6577                    mcc: mcc
  6578                globalRanNodeIdList:
  6579                - gNbId:
  6580                    bitLength: 24
  6581                    gNBValue: gNBValue
  6582                  plmnId:
  6583                    mnc: mnc
  6584                    mcc: mcc
  6585                  n3IwfId: n3IwfId
  6586                  ngeNbId: ngeNbId
  6587                - gNbId:
  6588                    bitLength: 24
  6589                    gNBValue: gNBValue
  6590                  plmnId:
  6591                    mnc: mnc
  6592                    mcc: mcc
  6593                  n3IwfId: n3IwfId
  6594                  ngeNbId: ngeNbId
  6595                praId: praId
  6596                trackingAreaList:
  6597                - tac: tac
  6598                  plmnId:
  6599                    mnc: mnc
  6600                    mcc: mcc
  6601                - tac: tac
  6602                  plmnId:
  6603                    mnc: mnc
  6604                    mcc: mcc
  6605                ncgiList:
  6606                - plmnId:
  6607                    mnc: mnc
  6608                    mcc: mcc
  6609                  nrCellId: nrCellId
  6610                - plmnId:
  6611                    mnc: mnc
  6612                    mcc: mcc
  6613                  nrCellId: nrCellId
  6614              ladnInfo:
  6615                ladn: ladn
  6616            - presenceInfo:
  6617                ecgiList:
  6618                - eutraCellId: eutraCellId
  6619                  plmnId:
  6620                    mnc: mnc
  6621                    mcc: mcc
  6622                - eutraCellId: eutraCellId
  6623                  plmnId:
  6624                    mnc: mnc
  6625                    mcc: mcc
  6626                globalRanNodeIdList:
  6627                - gNbId:
  6628                    bitLength: 24
  6629                    gNBValue: gNBValue
  6630                  plmnId:
  6631                    mnc: mnc
  6632                    mcc: mcc
  6633                  n3IwfId: n3IwfId
  6634                  ngeNbId: ngeNbId
  6635                - gNbId:
  6636                    bitLength: 24
  6637                    gNBValue: gNBValue
  6638                  plmnId:
  6639                    mnc: mnc
  6640                    mcc: mcc
  6641                  n3IwfId: n3IwfId
  6642                  ngeNbId: ngeNbId
  6643                praId: praId
  6644                trackingAreaList:
  6645                - tac: tac
  6646                  plmnId:
  6647                    mnc: mnc
  6648                    mcc: mcc
  6649                - tac: tac
  6650                  plmnId:
  6651                    mnc: mnc
  6652                    mcc: mcc
  6653                ncgiList:
  6654                - plmnId:
  6655                    mnc: mnc
  6656                    mcc: mcc
  6657                  nrCellId: nrCellId
  6658                - plmnId:
  6659                    mnc: mnc
  6660                    mcc: mcc
  6661                  nrCellId: nrCellId
  6662              ladnInfo:
  6663                ladn: ladn
  6664            locationFilterList:
  6665            - null
  6666            - null
  6667            immediateFlag: true
  6668          subsChangeNotifyUri: subsChangeNotifyUri
  6669          pei: pei
  6670          anyUE: true
  6671          groupId: groupId
  6672          options:
  6673            expiry: 2000-01-23T04:56:07.000+00:00
  6674            maxReports: 7
  6675          supi: supi
  6676          notifyCorrelationId: notifyCorrelationId
  6677          subsChangeNotifyCorrelationId: subsChangeNotifyCorrelationId
  6678          gpsi: gpsi
  6679        properties:
  6680          eventList:
  6681            items:
  6682              $ref: '#/components/schemas/AmfEvent'
  6683            minItems: 1
  6684            type: array
  6685          eventNotifyUri:
  6686            type: string
  6687          notifyCorrelationId:
  6688            type: string
  6689          nfId:
  6690            format: uuid
  6691            type: string
  6692          subsChangeNotifyUri:
  6693            type: string
  6694          subsChangeNotifyCorrelationId:
  6695            type: string
  6696          supi:
  6697            pattern: ^(imsi-[0-9]{5,15}|nai-.+|.+)$
  6698            type: string
  6699          groupId:
  6700            pattern: ^[A-Fa-f0-9]{8}-[0-9]{3}-[0-9]{2,3}-([A-Fa-f0-9][A-Fa-f0-9]){1,10}$
  6701            type: string
  6702          gpsi:
  6703            pattern: ^(msisdn-[0-9]{5,15}|extid-[^@]+@[^@]+|.+)$
  6704            type: string
  6705          pei:
  6706            pattern: ^(imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$
  6707            type: string
  6708          anyUE:
  6709            type: boolean
  6710          options:
  6711            $ref: '#/components/schemas/AmfEventMode'
  6712        required:
  6713        - eventNotifyUri
  6714        - events
  6715        - nfId
  6716        - notifyCorrelationId
  6717        type: object
  6718      AmfEvent:
  6719        example:
  6720          subscribedDataFilterList:
  6721          - null
  6722          - null
  6723          areaList:
  6724          - presenceInfo:
  6725              ecgiList:
  6726              - eutraCellId: eutraCellId
  6727                plmnId:
  6728                  mnc: mnc
  6729                  mcc: mcc
  6730              - eutraCellId: eutraCellId
  6731                plmnId:
  6732                  mnc: mnc
  6733                  mcc: mcc
  6734              globalRanNodeIdList:
  6735              - gNbId:
  6736                  bitLength: 24
  6737                  gNBValue: gNBValue
  6738                plmnId:
  6739                  mnc: mnc
  6740                  mcc: mcc
  6741                n3IwfId: n3IwfId
  6742                ngeNbId: ngeNbId
  6743              - gNbId:
  6744                  bitLength: 24
  6745                  gNBValue: gNBValue
  6746                plmnId:
  6747                  mnc: mnc
  6748                  mcc: mcc
  6749                n3IwfId: n3IwfId
  6750                ngeNbId: ngeNbId
  6751              praId: praId
  6752              trackingAreaList:
  6753              - tac: tac
  6754                plmnId:
  6755                  mnc: mnc
  6756                  mcc: mcc
  6757              - tac: tac
  6758                plmnId:
  6759                  mnc: mnc
  6760                  mcc: mcc
  6761              ncgiList:
  6762              - plmnId:
  6763                  mnc: mnc
  6764                  mcc: mcc
  6765                nrCellId: nrCellId
  6766              - plmnId:
  6767                  mnc: mnc
  6768                  mcc: mcc
  6769                nrCellId: nrCellId
  6770            ladnInfo:
  6771              ladn: ladn
  6772          - presenceInfo:
  6773              ecgiList:
  6774              - eutraCellId: eutraCellId
  6775                plmnId:
  6776                  mnc: mnc
  6777                  mcc: mcc
  6778              - eutraCellId: eutraCellId
  6779                plmnId:
  6780                  mnc: mnc
  6781                  mcc: mcc
  6782              globalRanNodeIdList:
  6783              - gNbId:
  6784                  bitLength: 24
  6785                  gNBValue: gNBValue
  6786                plmnId:
  6787                  mnc: mnc
  6788                  mcc: mcc
  6789                n3IwfId: n3IwfId
  6790                ngeNbId: ngeNbId
  6791              - gNbId:
  6792                  bitLength: 24
  6793                  gNBValue: gNBValue
  6794                plmnId:
  6795                  mnc: mnc
  6796                  mcc: mcc
  6797                n3IwfId: n3IwfId
  6798                ngeNbId: ngeNbId
  6799              praId: praId
  6800              trackingAreaList:
  6801              - tac: tac
  6802                plmnId:
  6803                  mnc: mnc
  6804                  mcc: mcc
  6805              - tac: tac
  6806                plmnId:
  6807                  mnc: mnc
  6808                  mcc: mcc
  6809              ncgiList:
  6810              - plmnId:
  6811                  mnc: mnc
  6812                  mcc: mcc
  6813                nrCellId: nrCellId
  6814              - plmnId:
  6815                  mnc: mnc
  6816                  mcc: mcc
  6817                nrCellId: nrCellId
  6818            ladnInfo:
  6819              ladn: ladn
  6820          locationFilterList:
  6821          - null
  6822          - null
  6823          immediateFlag: true
  6824        properties:
  6825          type:
  6826            $ref: '#/components/schemas/AmfEventType'
  6827          immediateFlag:
  6828            type: boolean
  6829          areaList:
  6830            items:
  6831              $ref: '#/components/schemas/AmfEventArea'
  6832            minItems: 1
  6833            type: array
  6834          locationFilterList:
  6835            items:
  6836              $ref: '#/components/schemas/LocationFilter'
  6837            minItems: 1
  6838            type: array
  6839          subscribedDataFilterList:
  6840            items:
  6841              $ref: '#/components/schemas/SubscribedDataFilter'
  6842            minItems: 1
  6843            type: array
  6844        required:
  6845        - type
  6846        type: object
  6847      AmfEventType:
  6848        enum:
  6849        - LOCATION_REPORT
  6850        - PRESENCE_IN_AOI_REPORT
  6851        - TIMEZONE_REPORT
  6852        - ACCESS_TYPE_REPORT
  6853        - REGISTRATION_STATE_REPORT
  6854        - CONNECTIVITY_STATE_REPORT
  6855        - REACHABILITY_REPORT
  6856        - SUBSCRIBED_DATA_REPORT
  6857        - COMMUNICATION_FAILURE_REPORT
  6858        - UES_IN_AREA_REPORT
  6859        - SUBSCRIPTION_ID_CHANGE
  6860        - SUBSCRIPTION_ID_ADDITION
  6861        type: string
  6862      AmfEventArea:
  6863        example:
  6864          presenceInfo:
  6865            ecgiList:
  6866            - eutraCellId: eutraCellId
  6867              plmnId:
  6868                mnc: mnc
  6869                mcc: mcc
  6870            - eutraCellId: eutraCellId
  6871              plmnId:
  6872                mnc: mnc
  6873                mcc: mcc
  6874            globalRanNodeIdList:
  6875            - gNbId:
  6876                bitLength: 24
  6877                gNBValue: gNBValue
  6878              plmnId:
  6879                mnc: mnc
  6880                mcc: mcc
  6881              n3IwfId: n3IwfId
  6882              ngeNbId: ngeNbId
  6883            - gNbId:
  6884                bitLength: 24
  6885                gNBValue: gNBValue
  6886              plmnId:
  6887                mnc: mnc
  6888                mcc: mcc
  6889              n3IwfId: n3IwfId
  6890              ngeNbId: ngeNbId
  6891            praId: praId
  6892            trackingAreaList:
  6893            - tac: tac
  6894              plmnId:
  6895                mnc: mnc
  6896                mcc: mcc
  6897            - tac: tac
  6898              plmnId:
  6899                mnc: mnc
  6900                mcc: mcc
  6901            ncgiList:
  6902            - plmnId:
  6903                mnc: mnc
  6904                mcc: mcc
  6905              nrCellId: nrCellId
  6906            - plmnId:
  6907                mnc: mnc
  6908                mcc: mcc
  6909              nrCellId: nrCellId
  6910          ladnInfo:
  6911            ladn: ladn
  6912        properties:
  6913          presenceInfo:
  6914            $ref: '#/components/schemas/PresenceInfo'
  6915          ladnInfo:
  6916            $ref: '#/components/schemas/LadnInfo'
  6917        type: object
  6918      LadnInfo:
  6919        example:
  6920          ladn: ladn
  6921        properties:
  6922          ladn:
  6923            type: string
  6924          presence:
  6925            $ref: '#/components/schemas/PresenceState'
  6926        required:
  6927        - ladn
  6928        type: object
  6929      LocationFilter:
  6930        enum:
  6931        - TAI
  6932        - CELL_ID
  6933        - N3IWF
  6934        - UE_IP
  6935        - UDP_PORT
  6936        type: string
  6937      SubscribedDataFilter:
  6938        enum:
  6939        - SARI
  6940        - RFSP_INDEX
  6941        type: string
  6942      AmfEventMode:
  6943        example:
  6944          expiry: 2000-01-23T04:56:07.000+00:00
  6945          maxReports: 7
  6946        properties:
  6947          trigger:
  6948            $ref: '#/components/schemas/AmfEventTrigger'
  6949          maxReports:
  6950            format: int32
  6951            type: integer
  6952          expiry:
  6953            format: date-time
  6954            type: string
  6955        required:
  6956        - trigger
  6957        type: object
  6958      AmfEventTrigger:
  6959        enum:
  6960        - ONE_TIME
  6961        - CONTINUOUS
  6962        type: string
  6963      TraceData:
  6964        example:
  6965          eventList: eventList
  6966          collectionEntityIpv6Addr: 2001:db8:85a3::8a2e:370:7334
  6967          collectionEntityIpv4Addr: 198.51.100.1
  6968          traceRef: traceRef
  6969          interfaceList: interfaceList
  6970          neTypeList: neTypeList
  6971        nullable: true
  6972        properties:
  6973          traceRef:
  6974            pattern: ^[0-9]{3}[0-9]{2,3}-[A-Fa-f0-9]{6}$
  6975            type: string
  6976          traceDepth:
  6977            $ref: '#/components/schemas/TraceDepth'
  6978          neTypeList:
  6979            pattern: ^[A-Fa-f0-9]+$
  6980            type: string
  6981          eventList:
  6982            pattern: ^[A-Fa-f0-9]+$
  6983            type: string
  6984          collectionEntityIpv4Addr:
  6985            example: 198.51.100.1
  6986            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])$
  6987            type: string
  6988          collectionEntityIpv6Addr:
  6989            $ref: '#/components/schemas/Ipv6Addr'
  6990          interfaceList:
  6991            pattern: ^[A-Fa-f0-9]+$
  6992            type: string
  6993        required:
  6994        - eventList
  6995        - neTypeList
  6996        - traceDepth
  6997        - traceRef
  6998        type: object
  6999      TraceDepth:
  7000        enum:
  7001        - MINIMUM
  7002        - MEDIUM
  7003        - MAXIMUM
  7004        - MINIMUM_WO_VENDOR_EXTENSION
  7005        - MEDIUM_WO_VENDOR_EXTENSION
  7006        - MAXIMUM_WO_VENDOR_EXTENSION
  7007        type: string
  7008      Uint16:
  7009        format: int32
  7010        maximum: 65535
  7011        minimum: 0
  7012        type: integer
  7013      Dnn:
  7014        type: string
  7015      Bytes:
  7016        format: byte
  7017        type: string
  7018      PresenceInfo:
  7019        example:
  7020          ecgiList:
  7021          - eutraCellId: eutraCellId
  7022            plmnId:
  7023              mnc: mnc
  7024              mcc: mcc
  7025          - eutraCellId: eutraCellId
  7026            plmnId:
  7027              mnc: mnc
  7028              mcc: mcc
  7029          globalRanNodeIdList:
  7030          - gNbId:
  7031              bitLength: 24
  7032              gNBValue: gNBValue
  7033            plmnId:
  7034              mnc: mnc
  7035              mcc: mcc
  7036            n3IwfId: n3IwfId
  7037            ngeNbId: ngeNbId
  7038          - gNbId:
  7039              bitLength: 24
  7040              gNBValue: gNBValue
  7041            plmnId:
  7042              mnc: mnc
  7043              mcc: mcc
  7044            n3IwfId: n3IwfId
  7045            ngeNbId: ngeNbId
  7046          praId: praId
  7047          trackingAreaList:
  7048          - tac: tac
  7049            plmnId:
  7050              mnc: mnc
  7051              mcc: mcc
  7052          - tac: tac
  7053            plmnId:
  7054              mnc: mnc
  7055              mcc: mcc
  7056          ncgiList:
  7057          - plmnId:
  7058              mnc: mnc
  7059              mcc: mcc
  7060            nrCellId: nrCellId
  7061          - plmnId:
  7062              mnc: mnc
  7063              mcc: mcc
  7064            nrCellId: nrCellId
  7065        properties:
  7066          praId:
  7067            type: string
  7068          presenceState:
  7069            $ref: '#/components/schemas/PresenceState'
  7070          trackingAreaList:
  7071            items:
  7072              $ref: '#/components/schemas/Tai'
  7073            minItems: 1
  7074            type: array
  7075          ecgiList:
  7076            items:
  7077              $ref: '#/components/schemas/Ecgi'
  7078            minItems: 1
  7079            type: array
  7080          ncgiList:
  7081            items:
  7082              $ref: '#/components/schemas/Ncgi'
  7083            minItems: 1
  7084            type: array
  7085          globalRanNodeIdList:
  7086            items:
  7087              $ref: '#/components/schemas/GlobalRanNodeId'
  7088            minItems: 1
  7089            type: array
  7090        type: object
  7091      PresenceState:
  7092        enum:
  7093        - IN_AREA
  7094        - OUT_OF_AREA
  7095        - UNKNOWN
  7096        - INACTIVE
  7097        type: string
  7098      CreateUEContext_requestBody:
  7099        properties:
  7100          jsonData:
  7101            $ref: '#/components/schemas/UeContextCreateData'
  7102          binaryDataN1Message:
  7103            format: binary
  7104            type: string
  7105          binaryDataN2Information:
  7106            format: binary
  7107            type: string
  7108          binaryDataN2InformationExt1:
  7109            format: binary
  7110            type: string
  7111        type: object
  7112      CreateUEContext_response_201:
  7113        properties:
  7114          jsonData:
  7115            $ref: '#/components/schemas/UeContextCreatedData'
  7116          binaryDataN1Message:
  7117            format: binary
  7118            type: string
  7119          binaryDataN2Information:
  7120            format: binary
  7121            type: string
  7122        type: object
  7123      UEContextTransfer_requestBody:
  7124        properties:
  7125          jsonData:
  7126            $ref: '#/components/schemas/UeContextTransferReqData'
  7127          binaryDataN1Message:
  7128            format: binary
  7129            type: string
  7130        type: object
  7131      UEContextTransfer_response_200:
  7132        properties:
  7133          jsonData:
  7134            $ref: '#/components/schemas/UeContextTransferRspData'
  7135          binaryDataN2Information:
  7136            format: binary
  7137            type: string
  7138        type: object
  7139      N1N2MessageTransfer_requestBody:
  7140        properties:
  7141          jsonData:
  7142            $ref: '#/components/schemas/N1N2MessageTransferReqData'
  7143          binaryDataN1Message:
  7144            format: binary
  7145            type: string
  7146          binaryDataN2Information:
  7147            format: binary
  7148            type: string
  7149        type: object
  7150      NonUeN2MessageTransfer_requestBody:
  7151        properties:
  7152          jsonData:
  7153            $ref: '#/components/schemas/N2InformationTransferReqData'
  7154          binaryDataN2Information:
  7155            format: binary
  7156            type: string
  7157        type: object
  7158    securitySchemes:
  7159      oAuth2ClientCredentials:
  7160        flows:
  7161          clientCredentials:
  7162            scopes:
  7163              namf-comm: Access to the Namf_Communication API
  7164            tokenUrl: '{nrfApiRoot}/oauth2/token'
  7165        type: oauth2