1 Star 0 Fork 2

yuxi-o / 5GC_APIs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TS29518_Namf_Communication.yaml 89.52 KB
一键复制 编辑 原始数据 按行查看 历史
Jesus de Gregorio 提交于 2020-04-05 16:19 . Rel-16 Mar'20
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622
openapi: 3.0.0
info:
version: 1.1.0.alpha-4
title: Namf_Communication
description: |
AMF Communication Service
© 2020, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
security:
- {}
- oAuth2ClientCredentials:
- namf-comm
externalDocs:
description: 3GPP TS 29.518 V16.3.0; 5G System; Access and Mobility Management Services
url: 'http://www.3gpp.org/ftp/Specs/archive/29_series/29.518/'
servers:
- url: '{apiRoot}/namf-comm/v1'
variables:
apiRoot:
default: https://example.com
description: apiRoot as defined in clause clause 4.4 of 3GPP TS 29.501
paths:
/ue-contexts/{ueContextId}:
put:
summary: Namf_Communication CreateUEContext service Operation
tags:
- Individual ueContext (Document)
operationId: CreateUEContext
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/UeContextCreateData'
binaryDataN2Information:
type: string
format: binary
binaryDataN2InformationExt1:
type: string
format: binary
binaryDataN2InformationExt2:
type: string
format: binary
binaryDataN2InformationExt3:
type: string
format: binary
binaryDataN2InformationExt4:
type: string
format: binary
binaryDataN2InformationExt5:
type: string
format: binary
binaryDataN2InformationExt6:
type: string
format: binary
binaryDataN2InformationExt7:
type: string
format: binary
binaryDataN2InformationExt8:
type: string
format: binary
binaryDataN2InformationExt9:
type: string
format: binary
binaryDataN2InformationExt10:
type: string
format: binary
binaryDataN2InformationExt11:
type: string
format: binary
binaryDataN2InformationExt12:
type: string
format: binary
binaryDataN2InformationExt13:
type: string
format: binary
binaryDataN2InformationExt14:
type: string
format: binary
binaryDataN2InformationExt15:
type: string
format: binary
binaryDataN2InformationExt16:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt1:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt2:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt3:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt4:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt5:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt6:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt7:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt8:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt9:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt10:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt11:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt12:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt13:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt14:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt15:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt16:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
required: true
callbacks:
onN2MessageNotify:
'{$request.body#/n2NotifyUri}':
post:
summary: Namf_Communication N2 Info Notify (UE Specific) service Operation
tags:
- N2 Info Notify
operationId: N2InfoNotify
requestBody:
description: UE Specific N2 Information Notification
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationNotification'
responses:
'200':
description: N2 Information Notification Response.
content:
application/json:
schema:
$ref: '#/components/schemas/N2InfoNotificationRspData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N2InfoNotificationRspData'
binaryDataN2Information:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
responses:
'201':
description: UE context successfully created.
headers:
Location:
description: 'Contains the URI of the newly created resource, according to the structure: {apiRoot}/namf-comm/<apiVersion>/ue-contexts/{ueContextId}'
required: true
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextCreatedData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/UeContextCreatedData'
binaryDataN2Information:
type: string
format: binary
binaryDataN2InformationExt1:
type: string
format: binary
binaryDataN2InformationExt2:
type: string
format: binary
binaryDataN2InformationExt3:
type: string
format: binary
binaryDataN2InformationExt4:
type: string
format: binary
binaryDataN2InformationExt5:
type: string
format: binary
binaryDataN2InformationExt6:
type: string
format: binary
binaryDataN2InformationExt7:
type: string
format: binary
binaryDataN2InformationExt8:
type: string
format: binary
binaryDataN2InformationExt9:
type: string
format: binary
binaryDataN2InformationExt10:
type: string
format: binary
binaryDataN2InformationExt11:
type: string
format: binary
binaryDataN2InformationExt12:
type: string
format: binary
binaryDataN2InformationExt13:
type: string
format: binary
binaryDataN2InformationExt14:
type: string
format: binary
binaryDataN2InformationExt15:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt1:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt2:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt3:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt4:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt5:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt6:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt7:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt8:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt9:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt10:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt11:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt12:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt13:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt14:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt15:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextCreateError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextCreateError'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextCreateError'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
/ue-contexts/{ueContextId}/release:
post:
summary: Namf_Communication ReleaseUEContext service Operation
tags:
- Individual ueContext (Document)
operationId: ReleaseUEContext
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UEContextRelease'
required: true
responses:
'204':
description: UE Context successfully released
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
/ue-contexts/{ueContextId}/assign-ebi:
post:
summary: Namf_Communication EBI Assignment service Operation
tags:
- Individual ueContext (Document)
operationId: EBIAssignment
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AssignEbiData'
required: true
responses:
'200':
description: EBI Assignment successfully performed.
content:
application/json:
schema:
$ref: '#/components/schemas/AssignedEbiData'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/AssignEbiError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/AssignEbiError'
'409':
description: Conflict
content:
application/json:
schema:
$ref: '#/components/schemas/AssignEbiError'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/AssignEbiError'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
/ue-contexts/{ueContextId}/transfer:
post:
summary: Namf_Communication UEContextTransfer service Operation
tags:
- Individual ueContext (Document)
operationId: UEContextTransfer
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextTransferReqData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/UeContextTransferReqData'
binaryDataN1Message:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN1Message:
contentType: application/vnd.3gpp.5gnas
headers:
Content-Id:
schema:
type: string
required: true
responses:
'200':
description: UE context transfer successfully initiated.
content:
application/json:
schema:
$ref: '#/components/schemas/UeContextTransferRspData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/UeContextTransferRspData'
binaryDataN2Information:
type: string
format: binary
binaryDataN2InformationExt1:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryDataN2InformationExt1:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
/ue-contexts/{ueContextId}/transfer-update:
post:
summary: Namf_Communication RegistrationStatusUpdate service Operation
tags:
- Individual ueContext (Document)
operationId: RegistrationStatusUpdate
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UeRegStatusUpdateReqData'
required: true
responses:
'200':
description: UE context transfer status successfully updated.
content:
application/json:
schema:
$ref: '#/components/schemas/UeRegStatusUpdateRspData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
$ref: 'TS29571_CommonData.yaml#/components/responses/default'
/ue-contexts/{ueContextId}/n1-n2-messages:
post:
summary: Namf_Communication N1N2 Message Transfer (UE Specific) service Operation
tags:
- n1N2Message collection (Document)
operationId: N1N2MessageTransfer
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|cid-.{1,255}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MessageTransferReqData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N1N2MessageTransferReqData'
binaryDataN1Message:
type: string
format: binary
binaryDataN2Information:
type: string
format: binary
binaryMtData:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN1Message:
contentType: application/vnd.3gpp.5gnas
headers:
Content-Id:
schema:
type: string
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
binaryMtData:
contentType: application/vnd.3gpp.5gnas
headers:
Content-Id:
schema:
type: string
required: true
responses:
'202':
description: N1N2 Message Transfer accepted.
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MessageTransferRspData'
headers:
Location:
description: 'The URI of the resource located on the AMF to which the status of the N1N2 message transfer is held'
required: true
schema:
type: string
'200':
description: N1N2 Message Transfer successfully initiated.
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MessageTransferRspData'
'307':
description: Temporary Redirect
content:
application/problem+json:
schema:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ProblemDetails'
headers:
Location:
description: 'The URI of the resource located on the target NF Service Consumer (e.g. AMF) to which the request is redirected'
required: true
schema:
type: string
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'409':
description: Conflicts
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MessageTransferError'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
'504':
description: Gateway Timeout
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MessageTransferError'
default:
description: Unexpected error
callbacks:
onN1N2TransferFailure:
'{$request.body#/n1n2FailureTxfNotifURI}':
post:
summary: Namf_Communication N1N2Transfer Failure Notification service Operation
tags:
- N1N2 Transfer Failure Notification
operationId: N1N2TransferFailureNotification
requestBody:
description: N1N2Transfer Failure Notification
content:
application/json:
schema:
$ref: '#/components/schemas/N1N2MsgTxfrFailureNotification'
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/ue-contexts/{ueContextId}/n1-n2-messages/subscriptions:
post:
summary: Namf_Communication N1N2 Message Subscribe (UE Specific) service Operation
tags:
- N1N2 Subscriptions Collection for Individual UE Contexts (Document)
operationId: N1N2MessageSubscribe
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UeN1N2InfoSubscriptionCreateData'
required: true
responses:
'201':
description: N1N2 Message Subscription successfully created.
headers:
Location:
description: 'Contains the URI of the newly created resource, according to the structure: {apiRoot}/namf-comm/<apiVersion>/{ueContextId}/ue-contexts/n1-n2-messages/subscriptions/{subscriptionId}'
required: true
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/UeN1N2InfoSubscriptionCreatedData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
callbacks:
onN1N2MessageNotify:
'{$request.body#/n1NotifyCallbackUri}':
post:
summary: Namf_Communication N1 Message Notify service Operation
tags:
- N1 Message Notify
operationId: N1MessageNotify
requestBody:
description: N1 Message Notification
content:
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N1MessageNotification'
binaryDataN1Message:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN1Message:
contentType: application/vnd.3gpp.5gnas
headers:
Content-Id:
schema:
type: string
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
'{$request.body#/n2NotifyCallbackUri}':
post:
summary: Namf_Communication N2 Info Notify (UE Specific) service Operation
tags:
- N2 Info Notify
operationId: N2InfoNotify
requestBody:
description: UE Specific N2 Information Notification
content:
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N2InformationNotification'
binaryDataN1Message:
type: string
format: binary
binaryDataN2Information:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN1Message:
contentType: application/vnd.3gpp.5gnas
headers:
Content-Id:
schema:
type: string
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/ue-contexts/{ueContextId}/n1-n2-messages/subscriptions/{subscriptionId}:
delete:
summary: Namf_Communication N1N2 Message UnSubscribe (UE Specific) service Operation
tags:
- N1N2 Individual Subscription (Document)
operationId: N1N2MessageUnSubscribe
parameters:
- name: ueContextId
in: path
description: UE Context Identifier
required: true
schema:
type: string
pattern: '^(5g-guti-[0-9]{5,6}[0-9a-fA-F]{14}|imsi-[0-9]{5,15}|nai-.+|gli-.+|gci-.+|imei-[0-9]{15}|imeisv-[0-9]{16}|.+)$'
- name: subscriptionId
in: path
description: Subscription Identifier
required: true
schema:
type: string
responses:
'204':
description: N1N2 Message Subscription successfully removed.
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/non-ue-n2-messages/transfer:
post:
summary: Namf_Communication Non UE N2 Message Transfer service Operation
tags:
- Non UE N2Messages collection (Document)
operationId: NonUeN2MessageTransfer
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferReqData'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N2InformationTransferReqData'
binaryDataN2Information:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
required: true
responses:
'200':
description: Non UE N2 Message Transfer successfully initiated.
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferRspData'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferError'
'403':
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferError'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferError'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferError'
'503':
description: Service Unavailable
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationTransferError'
default:
description: Unexpected error
/non-ue-n2-messages/subscriptions:
post:
summary: Namf_Communication Non UE N2 Info Subscribe service Operation
tags:
- Non UE N2Messages Subscriptions collection (Document)
operationId: NonUeN2InfoSubscribe
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/NonUeN2InfoSubscriptionCreateData'
required: true
responses:
'201':
description: Non UE N2 Info Subscription successfully created.
headers:
Location:
description: 'Contains the URI of the newly created resource, according to the structure: {apiRoot}/namf-comm/<apiVersion>/non-ue-n2-messages/subscriptions/{n2NotifySubscriptionId}'
required: true
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/NonUeN2InfoSubscriptionCreatedData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
callbacks:
onN2InfoNotify:
'{$request.body#/n2NotifyCallbackUri}':
post:
summary: Namf_Communication Non UE N2 Info Notify service Operation
tags:
- Non UE N2 Info Notify
operationId: NonUeN2InfoNotify
requestBody:
description: Non UE N2 Information Notification
content:
application/json:
schema:
$ref: '#/components/schemas/N2InformationNotification'
multipart/related: # message with binary body part(s)
schema:
type: object
properties: # Request parts
jsonData:
$ref: '#/components/schemas/N2InformationNotification'
binaryDataN2Information:
type: string
format: binary
encoding:
jsonData:
contentType: application/json
binaryDataN2Information:
contentType: application/vnd.3gpp.ngap
headers:
Content-Id:
schema:
type: string
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/non-ue-n2-messages/subscriptions/{n2NotifySubscriptionId}:
delete:
summary: Namf_Communication Non UE N2 Info UnSubscribe service Operation
tags:
- Non UE N2 Message Notification Individual Subscription (Document)
operationId: NonUeN2InfoUnSubscribe
parameters:
- name: n2NotifySubscriptionId
in: path
description: N2 info Subscription Identifier
required: true
schema:
type: string
responses:
'204':
description: Non UE N2 INfo Subscription successfully removed.
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/subscriptions:
post:
summary: Namf_Communication AMF Status Change Subscribe service Operation
tags:
- subscriptions collection (Document)
operationId: AMFStatusChangeSubscribe
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionData'
required: true
responses:
'201':
description: N1N2 Message Subscription successfully created.
headers:
Location:
description: 'Contains the URI of the newly created resource, according to the structure: {apiRoot}/namf-comm/<apiVersion>/subscriptions/{subscriptionId}'
required: true
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
callbacks:
onAmfStatusChange:
'{$request.body#/amfStatusUri}':
post:
summary: Amf Status Change Notify service Operation
tags:
- Amf Status Change Notify
operationId: AmfStatusChangeNotify
requestBody:
description: Amf Status Change Notification
content:
application/json:
schema:
$ref: '#/components/schemas/AmfStatusChangeNotification'
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
/subscriptions/{subscriptionId}:
delete:
summary: Namf_Communication AMF Status Change UnSubscribe service Operation
tags:
- individual subscription (Document)
operationId: AMFStatusChangeUnSubscribe
parameters:
- name: subscriptionId
in: path
description: AMF Status Change Subscription Identifier
required: true
schema:
type: string
responses:
'204':
description: N1N2 Message Subscription successfully removed.
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'404':
$ref: 'TS29571_CommonData.yaml#/components/responses/404'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
put:
summary: Namf_Communication AMF Status Change Subscribe Modify service Operation
tags:
- individual subscription (Document)
operationId: AMFStatusChangeSubscribeModfy
parameters:
- name: subscriptionId
in: path
description: AMF Status Change Subscription Identifier
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionData'
required: true
responses:
'202':
description: N1N2 Message Subscription successfully updated.
content:
application/json:
schema:
$ref: '#/components/schemas/SubscriptionData'
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
default:
description: Unexpected error
callbacks:
OnAmfStatusChange:
'{$request.body#/amfStatusUri}':
post:
summary: Amf Status Change Notify service Operation
tags:
- Amf Status Change Notify
operationId: AmfStatusChangeNOtify
requestBody:
description: Amf Status Change Notification
content:
application/json:
schema:
$ref: '#/components/schemas/AmfStatusChangeNotification'
responses:
'204':
description: Expected response to a successful callback processing
'400':
$ref: 'TS29571_CommonData.yaml#/components/responses/400'
'403':
$ref: 'TS29571_CommonData.yaml#/components/responses/403'
'411':
$ref: 'TS29571_CommonData.yaml#/components/responses/411'
'413':
$ref: 'TS29571_CommonData.yaml#/components/responses/413'
'415':
$ref: 'TS29571_CommonData.yaml#/components/responses/415'
'429':
$ref: 'TS29571_CommonData.yaml#/components/responses/429'
'500':
$ref: 'TS29571_CommonData.yaml#/components/responses/500'
'503':
$ref: 'TS29571_CommonData.yaml#/components/responses/503'
components:
securitySchemes:
oAuth2ClientCredentials:
type: oauth2
flows:
clientCredentials:
tokenUrl: '{nrfApiRoot}/oauth2/token'
scopes:
namf-comm: Access to the Namf_Communication API
schemas:
#
# STRUCTURED DATA TYPES
#
SubscriptionData:
type: object
properties:
amfStatusUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
guamiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Guami'
minItems: 1
required:
- amfStatusUri
AmfStatusChangeNotification:
type: object
properties:
amfStatusInfoList:
type: array
items:
$ref: '#/components/schemas/AmfStatusInfo'
minItems: 1
required:
- amfStatusInfoList
AmfStatusInfo:
type: object
properties:
guamiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Guami'
minItems: 1
statusChange:
$ref: '#/components/schemas/StatusChange'
targetAmfRemoval:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AmfName'
targetAmfFailure:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AmfName'
required:
- guamiList
- statusChange
AssignEbiData:
type: object
properties:
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
arpList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Arp'
minItems: 1
releasedEbiList:
type: array
items:
$ref: '#/components/schemas/EpsBearerId'
minItems: 1
oldGuami:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Guami'
required:
- pduSessionId
AssignedEbiData:
type: object
properties:
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
assignedEbiList:
type: array
items:
$ref: 'TS29502_Nsmf_PDUSession.yaml#/components/schemas/EbiArpMapping'
minItems: 0
failedArpList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Arp'
minItems: 1
releasedEbiList:
type: array
items:
$ref: '#/components/schemas/EpsBearerId'
minItems: 1
required:
- pduSessionId
- assignedEbiList
AssignEbiFailed:
type: object
properties:
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
failedArpList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Arp'
minItems: 1
required:
- pduSessionId
UEContextRelease:
type: object
properties:
supi:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Supi'
unauthenticatedSupi:
type: boolean
default: false
ngapCause:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NgApCause'
required:
- ngapCause
N2InformationTransferReqData:
type: object
properties:
taiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Tai'
minItems: 1
ratSelector:
$ref: '#/components/schemas/RatSelector'
globalRanNodeList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GlobalRanNodeId'
minItems: 1
n2Information:
$ref: '#/components/schemas/N2InfoContainer'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- n2Information
NonUeN2InfoSubscriptionCreateData:
type: object
properties:
globalRanNodeList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GlobalRanNodeId'
minItems: 1
anTypeList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
minItems: 1
n2InformationClass:
$ref: '#/components/schemas/N2InformationClass'
n2NotifyCallbackUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
nfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- n2InformationClass
- n2NotifyCallbackUri
NonUeN2InfoSubscriptionCreatedData:
type: object
properties:
n2NotifySubscriptionId:
type: string
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
n2InformationClass:
$ref: '#/components/schemas/N2InformationClass'
required:
- n2NotifySubscriptionId
UeN1N2InfoSubscriptionCreateData:
type: object
properties:
n2InformationClass:
$ref: '#/components/schemas/N2InformationClass'
n2NotifyCallbackUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
n1MessageClass:
$ref: '#/components/schemas/N1MessageClass'
n1NotifyCallbackUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
nfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
oldGuami:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Guami'
UeN1N2InfoSubscriptionCreatedData:
type: object
properties:
n1n2NotifySubscriptionId:
type: string
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- n1n2NotifySubscriptionId
N2InformationNotification:
type: object
properties:
n2NotifySubscriptionId:
type: string
n2InfoContainer:
$ref: '#/components/schemas/N2InfoContainer'
toReleaseSessionList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
minItems: 1
lcsCorrelationId:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/CorrelationID'
notifyReason:
$ref: '#/components/schemas/N2InfoNotifyReason'
smfChangeInfoList:
type: array
items:
$ref: '#/components/schemas/SmfChangeInfo'
minItems: 1
ranNodeId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GlobalRanNodeId'
initialAmfName:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AmfName'
anN2IPv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
anN2IPv6Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
required:
- n2NotifySubscriptionId
N2InfoContainer:
type: object
properties:
n2InformationClass:
$ref: '#/components/schemas/N2InformationClass'
smInfo:
$ref: '#/components/schemas/N2SmInformation'
ranInfo:
$ref: '#/components/schemas/N2RanInformation'
nrppaInfo:
$ref: '#/components/schemas/NrppaInformation'
pwsInfo:
$ref: '#/components/schemas/PwsInformation'
required:
- n2InformationClass
N1MessageNotification:
type: object
properties:
n1NotifySubscriptionId:
type: string
n1MessageContainer:
$ref: '#/components/schemas/N1MessageContainer'
lcsCorrelationId:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/CorrelationID'
registrationCtxtContainer:
$ref: '#/components/schemas/RegistrationContextContainer'
newLmfIdentification:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/LMFIdentification'
required:
- n1MessageContainer
N1MessageContainer:
type: object
properties:
n1MessageClass:
$ref: '#/components/schemas/N1MessageClass'
n1MessageContent:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RefToBinaryData'
nfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
serviceInstanceId:
type: string
required:
- n1MessageClass
- n1MessageContent
N1N2MessageTransferReqData:
type: object
properties:
n1MessageContainer:
$ref: '#/components/schemas/N1MessageContainer'
n2InfoContainer:
$ref: '#/components/schemas/N2InfoContainer'
mtData:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RefToBinaryData'
skipInd:
type: boolean
default: false
lastMsgIndication:
type: boolean
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
lcsCorrelationId:
$ref: 'TS29572_Nlmf_Location.yaml#/components/schemas/CorrelationID'
ppi:
$ref: '#/components/schemas/Ppi'
arp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Arp'
5qi:
$ref: 'TS29571_CommonData.yaml#/components/schemas/5Qi'
n1n2FailureTxfNotifURI:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
smfReallocationInd:
type: boolean
default: false
areaOfValidity:
$ref: '#/components/schemas/AreaOfValidity'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
oldGuami:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Guami'
maAcceptedInd:
type: boolean
default: false
extBufSupport:
type: boolean
default: false
targetAccess:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
N1N2MessageTransferRspData:
type: object
properties:
cause:
$ref: '#/components/schemas/N1N2MessageTransferCause'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- cause
RegistrationContextContainer:
type: object
properties:
ueContext:
$ref: '#/components/schemas/UeContext'
localTimeZone:
$ref: 'TS29571_CommonData.yaml#/components/schemas/TimeZone'
anType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
anN2ApId:
type: integer
ranNodeId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GlobalRanNodeId'
initialAmfName:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AmfName'
userLocation:
$ref: 'TS29571_CommonData.yaml#/components/schemas/UserLocation'
rrcEstCause:
type: string
pattern: '^[0-9a-fA-F]+$'
ueContextRequest:
type: boolean
default: false
initialAmfN2ApId:
type: integer
anN2IPv4Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv4Addr'
anN2IPv6Addr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ipv6Addr'
allowedNssai:
$ref: 'TS29531_Nnssf_NSSelection.yaml#/components/schemas/AllowedNssai'
configuredNssai:
type: array
items:
$ref: 'TS29531_Nnssf_NSSelection.yaml#/components/schemas/ConfiguredSnssai'
minItems: 1
rejectedNssaiInPlmn:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
minItems: 1
rejectedNssaiInTa:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
minItems: 1
required:
- ueContext
- anType
- anN2ApId
- ranNodeId
- initialAmfName
- userLocation
AreaOfValidity:
type: object
properties:
taiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Tai'
minItems: 0
required:
- taiList
UeContextTransferReqData:
type: object
properties:
reason:
$ref: '#/components/schemas/TransferReason'
accessType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
plmnId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PlmnId'
regRequest:
$ref: '#/components/schemas/N1MessageContainer'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- reason
- accessType
UeContextTransferRspData:
type: object
properties:
ueContext:
$ref: '#/components/schemas/UeContext'
ueRadioCapability:
$ref: '#/components/schemas/N2InfoContent'
ueNbiotRadioCapability:
$ref: '#/components/schemas/N2InfoContent'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- ueContext
UeContext:
type: object
properties:
supi:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Supi'
supiUnauthInd:
type: boolean
gpsiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Gpsi'
minItems: 1
pei:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Pei'
udmGroupId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfGroupId'
ausfGroupId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfGroupId'
routingIndicator:
type: string
groupList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GroupId'
minItems: 1
drxParameter:
$ref: '#/components/schemas/DrxParameter'
subRfsp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RfspIndex'
usedRfsp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RfspIndex'
subUeAmbr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Ambr'
smsfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
seafData:
$ref: '#/components/schemas/SeafData'
5gMmCapability:
$ref: '#/components/schemas/5GMmCapability'
pcfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
pcfSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfSetId'
pcfAmpServiceSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfServiceSetId'
pcfUepServiceSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfServiceSetId'
pcfBinding:
$ref: '#/components/schemas/SbiBindingLevel'
pcfAmPolicyUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
amPolicyReqTriggerList:
type: array
items:
$ref: '#/components/schemas/PolicyReqTrigger'
minItems: 1
pcfUePolicyUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
uePolicyReqTriggerList:
type: array
items:
$ref: '#/components/schemas/PolicyReqTrigger'
minItems: 1
hpcfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
restrictedRatList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RatType'
minItems: 1
forbiddenAreaList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Area'
minItems: 1
serviceAreaRestriction:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ServiceAreaRestriction'
restrictedCoreNwTypeList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/CoreNetworkType'
minItems: 1
eventSubscriptionList:
type: array
items:
$ref: 'TS29518_Namf_EventExposure.yaml#/components/schemas/AmfEventSubscription'
minItems: 1
mmContextList:
type: array
items:
$ref: '#/components/schemas/MmContext'
minItems: 1
maxItems: 2
sessionContextList:
type: array
items:
$ref: '#/components/schemas/PduSessionContext'
minItems: 1
traceData:
$ref: 'TS29571_CommonData.yaml#/components/schemas/TraceData'
serviceGapExpiryTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
stnSr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/StnSr'
cMsisdn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/CMsisdn'
msClassmark2:
$ref: '#/components/schemas/MSClassmark2'
supportedCodecList:
type: array
items:
$ref: '#/components/schemas/SupportedCodec'
minItems: 1
smallDataRateStatusInfos:
type: array
items:
$ref: '#/components/schemas/SmallDataRateStatusInfo'
minItems: 1
restrictedPrimaryRatList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RatType'
minItems: 1
restrictedSecondaryRatList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RatType'
minItems: 1
v2xContext:
items:
$ref: '#/components/schemas/V2xContext'
lteCatMInd:
type: boolean
default: false
moExpDataCounter:
$ref: 'TS29571_CommonData.yaml#/components/schemas/MoExpDataCounter'
N2SmInformation:
type: object
properties:
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
n2InfoContent:
$ref: '#/components/schemas/N2InfoContent'
sNssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
homePlmnSnssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
subjectToHo:
type: boolean
required:
- pduSessionId
N2InfoContent:
type: object
properties:
ngapMessageType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
ngapIeType:
$ref: '#/components/schemas/NgapIeType'
ngapData:
$ref: 'TS29571_CommonData.yaml#/components/schemas/RefToBinaryData'
required:
- ngapData
NrppaInformation:
type: object
properties:
nfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
nrppaPdu:
$ref: '#/components/schemas/N2InfoContent'
serviceInstanceId:
type: string
required:
- nfId
- nrppaPdu
PwsInformation:
type: object
properties:
messageIdentifier:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uint16'
serialNumber:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uint16'
pwsContainer:
$ref: '#/components/schemas/N2InfoContent'
sendRanResponse:
type: boolean
default: false
omcId:
$ref: '#/components/schemas/OmcIdentifier'
required:
- messageIdentifier
- serialNumber
- pwsContainer
N1N2MsgTxfrFailureNotification:
type: object
properties:
cause:
$ref: '#/components/schemas/N1N2MessageTransferCause'
n1n2MsgDataUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
required:
- cause
- n1n2MsgDataUri
N1N2MessageTransferError:
type: object
properties:
error:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ProblemDetails'
errInfo:
$ref: '#/components/schemas/N1N2MsgTxfrErrDetail'
required:
- error
N1N2MsgTxfrErrDetail:
type: object
properties:
retryAfter:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
highestPrioArp:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Arp'
maxWaitingTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec'
N2InformationTransferRspData:
type: object
properties:
result:
$ref: '#/components/schemas/N2InformationTransferResult'
pwsRspData:
$ref: '#/components/schemas/PWSResponseData'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- result
MmContext:
type: object
properties:
accessType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
nasSecurityMode:
$ref: '#/components/schemas/NasSecurityMode'
nasDownlinkCount:
$ref: '#/components/schemas/NasCount'
nasUplinkCount:
$ref: '#/components/schemas/NasCount'
ueSecurityCapability:
$ref: '#/components/schemas/UeSecurityCapability'
s1UeNetworkCapability:
$ref: '#/components/schemas/S1UeNetworkCapability'
allowedNssai:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
minItems: 1
nssaiMappingList:
type: array
items:
$ref: '#/components/schemas/NssaiMapping'
minItems: 1
nsInstanceList:
type: array
items:
$ref: 'TS29531_Nnssf_NSSelection.yaml#/components/schemas/NsiId'
minItems: 1
expectedUEbehavior:
$ref: '#/components/schemas/ExpectedUeBehavior'
plmnAssiUeRadioCapId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PlmnAssiUeRadioCapId'
manAssiUeRadioCapId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ManAssiUeRadioCapId'
ucmfDicEntryId:
type: string
required:
- accessType
SeafData:
type: object
properties:
ngKsi:
$ref: '#/components/schemas/NgKsi'
keyAmf:
$ref: '#/components/schemas/KeyAmf'
nh:
type: string
pattern: '^[A-Fa-f0-9]+$'
ncc:
type: integer
minimum: 0
maximum: 7
keyAmfChangeInd:
type: boolean
keyAmfHDerivationInd:
type: boolean
required:
- ngKsi
- keyAmf
NasSecurityMode:
type: object
properties:
integrityAlgorithm:
$ref: '#/components/schemas/IntegrityAlgorithm'
cipheringAlgorithm:
$ref: '#/components/schemas/CipheringAlgorithm'
required:
- integrityAlgorithm
- cipheringAlgorithm
PduSessionContext:
type: object
properties:
pduSessionId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
smContextRef:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
sNssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
dnn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnn'
accessType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
additionalAccessType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/AccessType'
allocatedEbiList:
type: array
items:
$ref: 'TS29502_Nsmf_PDUSession.yaml#/components/schemas/EbiArpMapping'
minItems: 1
hsmfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
hsmfSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfSetId'
hsmfServiceSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfServiceSetId'
smfBinding:
$ref: '#/components/schemas/SbiBindingLevel'
vsmfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
vsmfSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfSetId'
vsmfServiceSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfServiceSetId'
vsmfBinding:
$ref: '#/components/schemas/SbiBindingLevel'
ismfId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId'
ismfSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfSetId'
ismfServiceSetId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NfServiceSetId'
ismfBinding:
$ref: '#/components/schemas/SbiBindingLevel'
nsInstance:
$ref: 'TS29531_Nnssf_NSSelection.yaml#/components/schemas/NsiId'
smfServiceInstanceId:
type: string
maPduSession:
type: boolean
default: false
cnAssistedRanPara:
$ref: 'TS29502_Nsmf_PDUSession.yaml#/components/schemas/CnAssistedRanPara'
required:
- pduSessionId
- smContextRef
- sNssai
- dnn
- accessType
NssaiMapping:
type: object
properties:
mappedSnssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
hSnssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
required:
- mappedSnssai
- hSnssai
UeRegStatusUpdateReqData:
type: object
properties:
transferStatus:
$ref: '#/components/schemas/UeContextTransferStatus'
toReleaseSessionList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
minItems: 1
pcfReselectedInd:
type: boolean
smfChangeInfoList:
type: array
items:
$ref: '#/components/schemas/SmfChangeInfo'
minItems: 1
required:
- transferStatus
UeRegStatusUpdateRspData:
type: object
properties:
regStatusTransferComplete:
type: boolean
required:
- regStatusTransferComplete
AssignEbiError:
type: object
properties:
error:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ProblemDetails'
failureDetails:
$ref: '#/components/schemas/AssignEbiFailed'
required:
- error
- failureDetails
UeContextCreateData:
type: object
properties:
ueContext:
$ref: '#/components/schemas/UeContext'
targetId:
$ref: '#/components/schemas/NgRanTargetId'
sourceToTargetData:
$ref: '#/components/schemas/N2InfoContent'
pduSessionList:
type: array
items:
$ref: '#/components/schemas/N2SmInformation'
minItems: 1
mmeControlFteid:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
n2NotifyUri:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uri'
ueRadioCapability:
$ref: '#/components/schemas/N2InfoContent'
ngapCause:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NgApCause'
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
required:
- ueContext
- targetId
- sourceToTargetData
- pduSessionList
UeContextCreatedData:
type: object
properties:
ueContext:
$ref: '#/components/schemas/UeContext'
targetToSourceData:
$ref: '#/components/schemas/N2InfoContent'
pduSessionList:
type: array
items:
$ref: '#/components/schemas/N2SmInformation'
minItems: 1
failedSessionList:
type: array
items:
$ref: '#/components/schemas/N2SmInformation'
minItems: 1
supportedFeatures:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SupportedFeatures'
pcfReselectedInd:
type: boolean
required:
- ueContext
- targetToSourceData
- pduSessionList
UeContextCreateError:
type: object
properties:
error:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ProblemDetails'
ngapCause:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NgApCause'
required:
- error
NgRanTargetId:
type: object
properties:
ranNodeId:
$ref: 'TS29571_CommonData.yaml#/components/schemas/GlobalRanNodeId'
tai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Tai'
required:
- ranNodeId
- tai
PWSResponseData:
type: object
properties:
ngapMessageType:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
serialNumber:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uint16'
messageIdentifier:
type: integer
unknownTaiList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Tai'
minItems: 1
required:
- ngapMessageType
- serialNumber
- messageIdentifier
PWSErrorData:
type: object
properties:
namfCause:
type: integer
required:
- namfCause
N2InformationTransferError:
type: object
properties:
error:
$ref: 'TS29571_CommonData.yaml#/components/schemas/ProblemDetails'
pwdErrorInfo:
$ref: '#/components/schemas/PWSErrorData'
required:
- error
NgKsi:
type: object
properties:
tsc:
$ref: '#/components/schemas/ScType'
ksi:
type: integer
minimum: 0
maximum: 6
required:
- tsc
- ksi
KeyAmf:
type: object
properties:
keyType:
$ref: '#/components/schemas/KeyAmfType'
keyVal:
type: string
required:
- keyType
- keyVal
ExpectedUeBehavior:
type: object
properties:
expMoveTrajectory:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/UserLocation'
minItems: 1
validityTime:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DateTime'
required:
- expMoveTrajectory
- validityTime
N2RanInformation:
type: object
properties:
n2InfoContent:
$ref: '#/components/schemas/N2InfoContent'
required:
- n2InfoContent
N2InfoNotificationRspData:
type: object
properties:
n2InfoContent:
$ref: '#/components/schemas/N2InfoContent'
SmallDataRateStatusInfo:
type: object
properties:
Snssai:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Snssai'
Dnn:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Dnn'
SmallDataRateStatus:
$ref: 'TS29571_CommonData.yaml#/components/schemas/SmallDataRateStatus'
required:
- Snssai
- Dnn
- SmallDataRateStatus
SmfChangeInfo:
type: object
properties:
pduSessionIdList:
type: array
items:
$ref: 'TS29571_CommonData.yaml#/components/schemas/PduSessionId'
minItems: 1
smfChangeInd:
$ref: '#/components/schemas/SmfChangeIndication'
required:
- pduSessionIdList
- smfChangeInd
V2xContext:
type: object
properties:
nrV2xServicesAuth:
$ref: 'TS29571_CommonData.yaml#/components/schemas/NrV2xAuth'
lteV2xServicesAuth:
$ref: 'TS29571_CommonData.yaml#/components/schemas/LteV2xAuth'
nrUeSidelinkAmbr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/BitRate'
lteUeSidelinkAmbr:
$ref: 'TS29571_CommonData.yaml#/components/schemas/BitRate'
Pc5QoSPara:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Pc5QoSPara'
#
# SIMPLE DATA TYPES
#
EpsBearerId:
type: integer
minimum: 0
maximum: 15
Ppi:
type: integer
minimum: 0
maximum: 7
NasCount:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Uinteger'
5GMmCapability:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
UeSecurityCapability:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
S1UeNetworkCapability:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
DrxParameter:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
OmcIdentifier:
type: string
MSClassmark2:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
SupportedCodec:
$ref: 'TS29571_CommonData.yaml#/components/schemas/Bytes'
#
# ENUMERATIONS
#
StatusChange:
anyOf:
- type: string
enum:
- AMF_UNAVAILABLE
- AMF_AVAILABLE
- type: string
N2InformationClass:
anyOf:
- type: string
enum:
- SM
- NRPPa
- PWS
- PWS-BCAL
- PWS-RF
- RAN
- type: string
N1MessageClass:
anyOf:
- type: string
enum:
- 5GMM
- SM
- LPP
- SMS
- UPDP
- LCS
- type: string
N1N2MessageTransferCause:
anyOf:
- type: string
enum:
- ATTEMPTING_TO_REACH_UE
- N1_N2_TRANSFER_INITIATED
- WAITING_FOR_ASYNCHRONOUS_TRANSFER
- UE_NOT_RESPONDING
- N1_MSG_NOT_TRANSFERRED
- UE_NOT_REACHABLE_FOR_SESSION
- TEMPORARY_REJECT_REGISTRATION_ONGOING
- TEMPORARY_REJECT_HANDOVER_ONGOING
- type: string
UeContextTransferStatus:
anyOf:
- type: string
enum:
- TRANSFERRED
- NOT_TRANSFERRED
- type: string
N2InformationTransferResult:
anyOf:
- type: string
enum:
- N2_INFO_TRANSFER_INITIATED
- type: string
CipheringAlgorithm:
anyOf:
- type: string
enum:
- NEA0
- NEA1
- NEA2
- NEA3
- type: string
IntegrityAlgorithm:
anyOf:
- type: string
enum:
- NIA0
- NIA1
- NIA2
- NIA3
- type: string
SmsSupport:
anyOf:
- type: string
enum:
- 3GPP
- NON_3GPP
- BOTH
- NONE
- type: string
ScType:
anyOf:
- type: string
enum:
- NATIVE
- MAPPED
- type: string
KeyAmfType:
anyOf:
- type: string
enum:
- KAMF
- KPRIMEAMF
- type: string
TransferReason:
anyOf:
- type: string
enum:
- INIT_REG
- MOBI_REG
- MOBI_REG_UE_VALIDATED
- type: string
PolicyReqTrigger:
anyOf:
- type: string
enum:
- LOCATION_CHANGE
- PRA_CHANGE
- SARI_CHANGE
- RFSP_INDEX_CHANGE
- ALLOWED_NSSAI_CHANGE
- type: string
RatSelector:
anyOf:
- type: string
enum:
- E-UTRA
- NR
- type: string
NgapIeType:
anyOf:
- type: string
enum:
- PDU_RES_SETUP_REQ
- PDU_RES_REL_CMD
- PDU_RES_MOD_REQ
- HANDOVER_CMD
- HANDOVER_REQUIRED
- HANDOVER_PREP_FAIL
- SRC_TO_TAR_CONTAINER
- TAR_TO_SRC_CONTAINER
- RAN_STATUS_TRANS_CONTAINER
- SON_CONFIG_TRANSFER
- NRPPA_PDU
- UE_RADIO_CAPABILITY
- RIM_INFO_TRANSFER
- SECONDARY_RAT_USAGE
- type: string
N2InfoNotifyReason:
anyOf:
- type: string
enum:
- HANDOVER_COMPLETED
- type: string
SmfChangeIndication:
anyOf:
- type: string
enum:
- CHANGED
- REMOVED
- type: string
SbiBindingLevel:
anyOf:
- type: string
enum:
- NF_INSTANCE_BINDING
- NF_SET_BINDING
- NF_SERVICE_SET_BINDING
- type: string
1
https://gitee.com/yuxio/v5GC_APIs.git
git@gitee.com:yuxio/v5GC_APIs.git
yuxio
v5GC_APIs
5GC_APIs
master

搜索帮助