Michal Banka | 028e1c2 | 2021-05-10 11:00:39 +0200 | [diff] [blame] | 1 | openapi: 3.0.1 |
| 2 | info: |
| 3 | title: 3GPP 5GC NRM |
| 4 | version: 16.6.0 |
| 5 | description: >- |
| 6 | OAS 3.0.1 specification of the 5GC NRM |
| 7 | © 2020, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). |
| 8 | All rights reserved. |
| 9 | externalDocs: |
| 10 | description: 3GPP TS 28.541 V16.6.0; 5G NRM, 5GC NRM |
| 11 | url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.541/ |
| 12 | paths: {} |
| 13 | components: |
| 14 | schemas: |
| 15 | |
| 16 | #-------- Definition of types----------------------------------------------------- |
| 17 | |
| 18 | AmfIdentifier: |
| 19 | type: object |
| 20 | description: 'AmfIdentifier comprise of amfRegionId, amfSetId and amfPointer' |
| 21 | properties: |
| 22 | amfRegionId: |
| 23 | $ref: '#/components/schemas/AmfRegionId' |
| 24 | amfSetId: |
| 25 | $ref: '#/components/schemas/AmfSetId' |
| 26 | amfPointer: |
| 27 | $ref: '#/components/schemas/AmfPointer' |
| 28 | AmfRegionId: |
| 29 | type: integer |
| 30 | description: AmfRegionId is defined in TS 23.003 |
| 31 | maximum: 255 |
| 32 | AmfSetId: |
| 33 | type: string |
| 34 | description: AmfSetId is defined in TS 23.003 |
| 35 | maximum: 1023 |
| 36 | AmfPointer: |
| 37 | type: integer |
| 38 | description: AmfPointer is defined in TS 23.003 |
| 39 | maximum: 63 |
| 40 | IpEndPoint: |
| 41 | type: object |
| 42 | properties: |
| 43 | ipv4Address: |
| 44 | $ref: 'genericNrm.yaml#/components/schemas/Ipv4Addr' |
| 45 | ipv6Address: |
| 46 | $ref: 'genericNrm.yaml#/components/schemas/Ipv6Addr' |
| 47 | ipv6Prefix: |
| 48 | $ref: 'genericNrm.yaml#/components/schemas/Ipv6Prefix' |
| 49 | transport: |
| 50 | $ref: 'genericNrm.yaml#/components/schemas/TransportProtocol' |
| 51 | port: |
| 52 | type: integer |
| 53 | NFProfileList: |
| 54 | type: array |
| 55 | description: List of NF profile |
| 56 | items: |
| 57 | $ref: '#/components/schemas/NFProfile' |
| 58 | NFProfile: |
| 59 | type: object |
| 60 | description: 'NF profile stored in NRF, defined in TS 29.510' |
| 61 | properties: |
| 62 | nFInstanceId: |
| 63 | type: string |
| 64 | description: uuid of NF instance |
| 65 | nFType: |
| 66 | $ref: 'genericNrm.yaml#/components/schemas/NFType' |
| 67 | nFStatus: |
| 68 | $ref: '#/components/schemas/NFStatus' |
| 69 | plmn: |
| 70 | $ref: 'nrNrm.yaml#/components/schemas/PlmnId' |
| 71 | sNssais: |
| 72 | $ref: 'nrNrm.yaml#/components/schemas/Snssai' |
| 73 | fqdn: |
| 74 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 75 | interPlmnFqdn: |
| 76 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 77 | nfServices: |
| 78 | type: array |
| 79 | items: |
| 80 | $ref: '#/components/schemas/NFService' |
| 81 | NFService: |
| 82 | type: object |
| 83 | description: NF Service is defined in TS 29.510 |
| 84 | properties: |
| 85 | serviceInstanceId: |
| 86 | type: string |
| 87 | serviceName: |
| 88 | type: string |
| 89 | version: |
| 90 | type: string |
| 91 | schema: |
| 92 | type: string |
| 93 | fqdn: |
| 94 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 95 | interPlmnFqdn: |
| 96 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 97 | ipEndPoints: |
| 98 | type: array |
| 99 | items: |
| 100 | $ref: '#/components/schemas/IpEndPoint' |
| 101 | apiPrfix: |
| 102 | type: string |
| 103 | allowedPlmns: |
| 104 | $ref: 'nrNrm.yaml#/components/schemas/PlmnId' |
| 105 | allowedNfTypes: |
| 106 | type: array |
| 107 | items: |
| 108 | $ref: 'genericNrm.yaml#/components/schemas/NFType' |
| 109 | allowedNssais: |
| 110 | type: array |
| 111 | items: |
| 112 | $ref: 'nrNrm.yaml#/components/schemas/Snssai' |
| 113 | NFStatus: |
| 114 | type: string |
| 115 | description: any of enumrated value |
| 116 | enum: |
| 117 | - REGISTERED |
| 118 | - SUSPENDED |
| 119 | CNSIIdList: |
| 120 | type: array |
| 121 | items: |
| 122 | $ref: '#/components/schemas/CNSIId' |
| 123 | CNSIId: |
| 124 | type: string |
| 125 | description: CNSI Id is defined in TS 29.531, only for Core Network |
| 126 | TACList: |
| 127 | type: array |
| 128 | items: |
| 129 | $ref: 'nrNrm.yaml#/components/schemas/NrTac' |
| 130 | WeightFactor: |
| 131 | type: integer |
| 132 | UdmInfo: |
| 133 | type: object |
| 134 | properties: |
| 135 | nFSrvGroupId: |
| 136 | type: string |
| 137 | AusfInfo: |
| 138 | type: object |
| 139 | properties: |
| 140 | nFSrvGroupId: |
| 141 | type: string |
| 142 | UpfInfo: |
| 143 | type: object |
| 144 | properties: |
| 145 | smfServingAreas: |
| 146 | type: string |
| 147 | AmfInfo: |
| 148 | type: object |
| 149 | properties: |
| 150 | priority: |
| 151 | type: integer |
| 152 | SupportedDataSetId: |
| 153 | type: string |
| 154 | description: any of enumrated value |
| 155 | enum: |
| 156 | - SUBSCRIPTION |
| 157 | - POLICY |
| 158 | - EXPOSURE |
| 159 | - APPLICATION |
| 160 | Udrinfo: |
| 161 | type: object |
| 162 | properties: |
| 163 | supportedDataSetIds: |
| 164 | type: array |
| 165 | items: |
| 166 | $ref: '#/components/schemas/SupportedDataSetId' |
| 167 | nFSrvGroupId: |
| 168 | type: string |
| 169 | NFInfo: |
| 170 | oneOf: |
| 171 | - $ref: '#/components/schemas/UdmInfo' |
| 172 | - $ref: '#/components/schemas/AusfInfo' |
| 173 | - $ref: '#/components/schemas/UpfInfo' |
| 174 | - $ref: '#/components/schemas/AmfInfo' |
| 175 | - $ref: '#/components/schemas/Udrinfo' |
| 176 | ManagedNFProfile: |
| 177 | type: object |
| 178 | properties: |
| 179 | nfInstanceID: |
| 180 | type: string |
| 181 | nfType: |
| 182 | $ref: 'genericNrm.yaml#/components/schemas/NFType' |
| 183 | authzInfo: |
| 184 | type: string |
| 185 | hostAddr: |
| 186 | $ref: 'genericNrm.yaml#/components/schemas/HostAddr' |
| 187 | locality: |
| 188 | type: string |
| 189 | nFInfo: |
| 190 | $ref: '#/components/schemas/NFInfo' |
| 191 | capacity: |
| 192 | type: integer |
| 193 | SEPPType: |
| 194 | type: string |
| 195 | description: any of enumrated value |
| 196 | enum: |
| 197 | - CSEPP |
| 198 | - PSEPP |
| 199 | SupportedFunc: |
| 200 | type: object |
| 201 | properties: |
| 202 | function: |
| 203 | type: string |
| 204 | policy: |
| 205 | type: string |
| 206 | SupportedFuncList: |
| 207 | type: array |
| 208 | items: |
| 209 | $ref: '#/components/schemas/SupportedFunc' |
| 210 | CommModelType: |
| 211 | type: string |
| 212 | description: any of enumrated value |
| 213 | enum: |
| 214 | - DIRECT_COMMUNICATION_WO_NRF |
| 215 | - DIRECT_COMMUNICATION_WITH_NRF |
| 216 | - INDIRECT_COMMUNICATION_WO_DEDICATED_DISCOVERY |
| 217 | - INDIRECT_COMMUNICATION_WITH_DEDICATED_DISCOVERY |
| 218 | CommModel: |
| 219 | type: object |
| 220 | properties: |
| 221 | groupId: |
| 222 | type: integer |
| 223 | commModelType: |
| 224 | $ref: '#/components/schemas/CommModelType' |
| 225 | targetNFServiceList: |
| 226 | $ref: 'comDefs.yaml#/components/schemas/DnList' |
| 227 | commModelConfiguration: |
| 228 | type: string |
| 229 | CommModelList: |
| 230 | type: array |
| 231 | items: |
| 232 | $ref: '#/components/schemas/CommModel' |
| 233 | CapabilityList: |
| 234 | type: array |
| 235 | items: |
| 236 | type: string |
| 237 | FiveQiDscpMapping: |
| 238 | type: object |
| 239 | properties: |
| 240 | fiveQIValues: |
| 241 | type: array |
| 242 | items: |
| 243 | type: integer |
| 244 | dscp: |
| 245 | type: integer |
| 246 | |
| 247 | PacketErrorRate: |
| 248 | type: object |
| 249 | properties: |
| 250 | scalar: |
| 251 | type: integer |
| 252 | exponent: |
| 253 | type: integer |
| 254 | FiveQICharacteristics: |
| 255 | type: object |
| 256 | properties: |
| 257 | fiveQIValue: |
| 258 | type: integer |
| 259 | resourceType: |
| 260 | type: string |
| 261 | enum: |
| 262 | - GBR |
| 263 | - NonGBR |
| 264 | priorityLevel: |
| 265 | type: integer |
| 266 | packetDelayBudget: |
| 267 | type: integer |
| 268 | packetErrorRate: |
| 269 | $ref: '#/components/schemas/PacketErrorRate' |
| 270 | averagingWindow: |
| 271 | type: integer |
| 272 | maximumDataBurstVolume: |
| 273 | type: integer |
| 274 | |
| 275 | |
| 276 | GtpUPathDelayThresholdsType: |
| 277 | type: object |
| 278 | properties: |
| 279 | n3AveragePacketDelayThreshold: |
| 280 | type: integer |
| 281 | n3MinPacketDelayThreshold: |
| 282 | type: integer |
| 283 | n3MaxPacketDelayThreshold: |
| 284 | type: integer |
| 285 | n9AveragePacketDelayThreshold: |
| 286 | type: integer |
| 287 | n9MinPacketDelayThreshold: |
| 288 | type: integer |
| 289 | n9MaxPacketDelayThreshold: |
| 290 | type: integer |
| 291 | QFPacketDelayThresholdsType: |
| 292 | type: object |
| 293 | properties: |
| 294 | thresholdDl: |
| 295 | type: integer |
| 296 | thresholdUl: |
| 297 | type: integer |
| 298 | thresholdRtt: |
| 299 | type: integer |
| 300 | |
| 301 | QosData: |
| 302 | type: object |
| 303 | properties: |
| 304 | qosId: |
| 305 | type: string |
| 306 | fiveQIValue: |
| 307 | type: integer |
| 308 | maxbrUl: |
| 309 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/BitRateRm' |
| 310 | maxbrDl: |
| 311 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/BitRateRm' |
| 312 | gbrUl: |
| 313 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/BitRateRm' |
| 314 | gbrDl: |
| 315 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/BitRateRm' |
| 316 | arp: |
| 317 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/Arp' |
| 318 | qosNotificationControl: |
| 319 | type: boolean |
| 320 | reflectiveQos: |
| 321 | type: boolean |
| 322 | sharingKeyDl: |
| 323 | type: string |
| 324 | sharingKeyUl: |
| 325 | type: string |
| 326 | maxPacketLossRateDl: |
| 327 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/PacketLossRateRm' |
| 328 | maxPacketLossRateUl: |
| 329 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/PacketLossRateRm' |
| 330 | extMaxDataBurstVol: |
| 331 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/ExtMaxDataBurstVolRm' |
| 332 | |
| 333 | QosDataList: |
| 334 | type: array |
| 335 | items: |
| 336 | $ref: '#/components/schemas/QosData' |
| 337 | |
| 338 | SteeringMode: |
| 339 | type: object |
| 340 | properties: |
| 341 | steerModeValue: |
| 342 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/SteerModeValue' |
| 343 | active: |
| 344 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/AccessType' |
| 345 | standby: |
| 346 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/AccessTypeRm' |
| 347 | threeGLoad: |
| 348 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/Uinteger' |
| 349 | prioAcc: |
| 350 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/AccessType' |
| 351 | |
| 352 | TrafficControlData: |
| 353 | type: object |
| 354 | properties: |
| 355 | tcId: |
| 356 | type: string |
| 357 | flowStatus: |
| 358 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29514_Npcf_PolicyAuthorization.yaml#/components/schemas/FlowStatus' |
| 359 | redirectInfo: |
| 360 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/RedirectInformation' |
| 361 | addRedirectInfo: |
| 362 | type: array |
| 363 | items: |
| 364 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/RedirectInformation' |
| 365 | minItems: 1 |
| 366 | muteNotif: |
| 367 | type: boolean |
| 368 | trafficSteeringPolIdDl: |
| 369 | type: string |
| 370 | nullable: true |
| 371 | trafficSteeringPolIdUl: |
| 372 | type: string |
| 373 | nullable: true |
| 374 | routeToLocs: |
| 375 | type: array |
| 376 | items: |
| 377 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/RouteToLocation' |
| 378 | traffCorreInd: |
| 379 | type: boolean |
| 380 | upPathChgEvent: |
| 381 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/UpPathChgEvent' |
| 382 | steerFun: |
| 383 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/SteeringFunctionality' |
| 384 | steerModeDl: |
| 385 | $ref: '#/components/schemas/SteeringMode' |
| 386 | steerModeUl: |
| 387 | $ref: '#/components/schemas/SteeringMode' |
| 388 | mulAccCtrl: |
| 389 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/MulticastAccessControl' |
| 390 | |
| 391 | TrafficControlDataList: |
| 392 | type: array |
| 393 | items: |
| 394 | $ref: '#/components/schemas/TrafficControlData' |
| 395 | |
| 396 | PccRule: |
| 397 | type: object |
| 398 | properties: |
| 399 | pccRuleId: |
| 400 | type: string |
| 401 | description: Univocally identifies the PCC rule within a PDU session. |
| 402 | flowInfoList: |
| 403 | type: array |
| 404 | items: |
| 405 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/FlowInformation' |
| 406 | applicationId: |
| 407 | type: string |
| 408 | appDescriptor: |
| 409 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/ApplicationDescriptor' |
| 410 | contentVersion: |
| 411 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29514_Npcf_PolicyAuthorization.yaml#/components/schemas/ContentVersion' |
| 412 | precedence: |
| 413 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29571_CommonData.yaml#/components/schemas/Uinteger' |
| 414 | afSigProtocol: |
| 415 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/AfSigProtocol' |
| 416 | isAppRelocatable: |
| 417 | type: boolean |
| 418 | isUeAddrPreserved: |
| 419 | type: boolean |
| 420 | qosData: |
| 421 | type: array |
| 422 | items: |
| 423 | $ref: '#/components/schemas/QosDataList' |
| 424 | altQosParams: |
| 425 | type: array |
| 426 | items: |
| 427 | $ref: '#/components/schemas/QosDataList' |
| 428 | trafficControlData: |
| 429 | type: array |
| 430 | items: |
| 431 | $ref: '#/components/schemas/TrafficControlDataList' |
| 432 | conditionData: |
| 433 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29512_Npcf_SMPolicyControl.yaml#/components/schemas/ConditionData' |
| 434 | tscaiInputDl: |
| 435 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29514_Npcf_PolicyAuthorization.yaml#/components/schemas/TscaiInputContainer' |
| 436 | tscaiInputUl: |
| 437 | $ref: 'https://forge.3gpp.org/rep/all/5G_APIs/raw/REL-16/TS29514_Npcf_PolicyAuthorization.yaml#/components/schemas/TscaiInputContainer' |
| 438 | |
| 439 | |
| 440 | #-------- Definition of concrete IOCs -------------------------------------------- |
| 441 | |
| 442 | SubNetwork-Single: |
| 443 | allOf: |
| 444 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 445 | - type: object |
| 446 | properties: |
| 447 | attributes: |
| 448 | allOf: |
| 449 | - $ref: 'genericNrm.yaml#/components/schemas/SubNetwork-Attr' |
| 450 | - $ref: 'genericNrm.yaml#/components/schemas/SubNetwork-ncO' |
| 451 | - type: object |
| 452 | properties: |
| 453 | SubNetwork: |
| 454 | $ref: '#/components/schemas/SubNetwork-Multiple' |
| 455 | ManagedElement: |
| 456 | $ref: '#/components/schemas/ManagedElement-Multiple' |
| 457 | ExternalAmfFunction: |
| 458 | $ref: '#/components/schemas/ExternalAmfFunction-Multiple' |
| 459 | ExternalNrfFunction: |
| 460 | $ref: '#/components/schemas/ExternalNrfFunction-Multiple' |
| 461 | ExternalNssfFunction: |
| 462 | $ref: '#/components/schemas/ExternalNssfFunction-Multiple' |
| 463 | AmfSet: |
| 464 | $ref: '#/components/schemas/AmfSet-Multiple' |
| 465 | AmfRegion: |
| 466 | $ref: '#/components/schemas/AmfRegion-Multiple' |
| 467 | Configurable5QISet: |
| 468 | $ref: '#/components/schemas/Configurable5QISet-Multiple' |
| 469 | Dynamic5QISet: |
| 470 | $ref: '#/components/schemas/Dynamic5QISet-Multiple' |
| 471 | |
| 472 | ManagedElement-Single: |
| 473 | allOf: |
| 474 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 475 | - type: object |
| 476 | properties: |
| 477 | attributes: |
| 478 | allOf: |
| 479 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedElement-Attr' |
| 480 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedElement-ncO' |
| 481 | - type: object |
| 482 | properties: |
| 483 | AmfFunction: |
| 484 | $ref: '#/components/schemas/AmfFunction-Multiple' |
| 485 | SmfFunction: |
| 486 | $ref: '#/components/schemas/SmfFunction-Multiple' |
| 487 | UpfFunction: |
| 488 | $ref: '#/components/schemas/UpfFunction-Multiple' |
| 489 | N3iwfFunction: |
| 490 | $ref: '#/components/schemas/N3iwfFunction-Multiple' |
| 491 | PcfFunction: |
| 492 | $ref: '#/components/schemas/PcfFunction-Multiple' |
| 493 | AusfFunction: |
| 494 | $ref: '#/components/schemas/AusfFunction-Multiple' |
| 495 | UdmFunction: |
| 496 | $ref: '#/components/schemas/UdmFunction-Multiple' |
| 497 | UdrFunction: |
| 498 | $ref: '#/components/schemas/UdrFunction-Multiple' |
| 499 | UdsfFunction: |
| 500 | $ref: '#/components/schemas/UdsfFunction-Multiple' |
| 501 | NrfFunction: |
| 502 | $ref: '#/components/schemas/NrfFunction-Multiple' |
| 503 | NssfFunction: |
| 504 | $ref: '#/components/schemas/NssfFunction-Multiple' |
| 505 | SmsfFunction: |
| 506 | $ref: '#/components/schemas/SmsfFunction-Multiple' |
| 507 | LmfFunction: |
| 508 | $ref: '#/components/schemas/LmfFunction-Multiple' |
| 509 | NgeirFunction: |
| 510 | $ref: '#/components/schemas/NgeirFunction-Multiple' |
| 511 | SeppFunction: |
| 512 | $ref: '#/components/schemas/SeppFunction-Multiple' |
| 513 | NwdafFunction: |
| 514 | $ref: '#/components/schemas/NwdafFunction-Multiple' |
| 515 | ScpFunction: |
| 516 | $ref: '#/components/schemas/ScpFunction-Multiple' |
| 517 | NefFunction: |
| 518 | $ref: '#/components/schemas/NefFunction-Multiple' |
| 519 | Configurable5QISet: |
| 520 | $ref: '#/components/schemas/Configurable5QISet-Multiple' |
| 521 | Dynamic5QISet: |
| 522 | $ref: '#/components/schemas/Dynamic5QISet-Multiple' |
| 523 | |
| 524 | AmfFunction-Single: |
| 525 | allOf: |
| 526 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 527 | - type: object |
| 528 | properties: |
| 529 | attributes: |
| 530 | allOf: |
| 531 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 532 | - type: object |
| 533 | properties: |
| 534 | plmnIdList: |
| 535 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 536 | amfIdentifier: |
| 537 | $ref: '#/components/schemas/AmfIdentifier' |
| 538 | sBIFqdn: |
| 539 | type: string |
| 540 | weightFactor: |
| 541 | $ref: '#/components/schemas/WeightFactor' |
| 542 | snssaiList: |
| 543 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 544 | amfSet: |
| 545 | $ref: 'comDefs.yaml#/components/schemas/Dn' |
| 546 | managedNFProfile: |
| 547 | $ref: '#/components/schemas/ManagedNFProfile' |
| 548 | commModelList: |
| 549 | $ref: '#/components/schemas/CommModelList' |
| 550 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 551 | - type: object |
| 552 | properties: |
| 553 | EP_N2: |
| 554 | $ref: '#/components/schemas/EP_N2-Multiple' |
| 555 | EP_N8: |
| 556 | $ref: '#/components/schemas/EP_N8-Multiple' |
| 557 | EP_N11: |
| 558 | $ref: '#/components/schemas/EP_N11-Multiple' |
| 559 | EP_N12: |
| 560 | $ref: '#/components/schemas/EP_N12-Multiple' |
| 561 | EP_N14: |
| 562 | $ref: '#/components/schemas/EP_N14-Multiple' |
| 563 | EP_N15: |
| 564 | $ref: '#/components/schemas/EP_N15-Multiple' |
| 565 | EP_N17: |
| 566 | $ref: '#/components/schemas/EP_N17-Multiple' |
| 567 | EP_N20: |
| 568 | $ref: '#/components/schemas/EP_N20-Multiple' |
| 569 | EP_N22: |
| 570 | $ref: '#/components/schemas/EP_N22-Multiple' |
| 571 | EP_N26: |
| 572 | $ref: '#/components/schemas/EP_N26-Multiple' |
| 573 | EP_NLS: |
| 574 | $ref: '#/components/schemas/EP_NLS-Multiple' |
| 575 | EP_NLG: |
| 576 | $ref: '#/components/schemas/EP_NLG-Multiple' |
| 577 | AmfSet-Single: |
| 578 | allOf: |
| 579 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 580 | - type: object |
| 581 | properties: |
| 582 | attributes: |
| 583 | allOf: |
| 584 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 585 | - type: object |
| 586 | properties: |
| 587 | plmnIdList: |
| 588 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 589 | nRTACList: |
| 590 | $ref: '#/components/schemas/TACList' |
| 591 | amfSetId: |
| 592 | $ref: '#/components/schemas/AmfSetId' |
| 593 | snssaiList: |
| 594 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 595 | AmfRegion-Single: |
| 596 | allOf: |
| 597 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 598 | - type: object |
| 599 | properties: |
| 600 | attributes: |
| 601 | allOf: |
| 602 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 603 | - type: object |
| 604 | properties: |
| 605 | plmnIdList: |
| 606 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 607 | nRTACList: |
| 608 | $ref: '#/components/schemas/TACList' |
| 609 | amfRegionId: |
| 610 | $ref: '#/components/schemas/AmfRegionId' |
| 611 | snssaiList: |
| 612 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 613 | SmfFunction-Single: |
| 614 | allOf: |
| 615 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 616 | - type: object |
| 617 | properties: |
| 618 | attributes: |
| 619 | allOf: |
| 620 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 621 | - type: object |
| 622 | properties: |
| 623 | plmnIdList: |
| 624 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 625 | nRTACList: |
| 626 | $ref: '#/components/schemas/TACList' |
| 627 | sBIFqdn: |
| 628 | type: string |
| 629 | snssaiList: |
| 630 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 631 | managedNFProfile: |
| 632 | $ref: '#/components/schemas/ManagedNFProfile' |
| 633 | commModelList: |
| 634 | $ref: '#/components/schemas/CommModelList' |
| 635 | configurable5QISetRef: |
| 636 | $ref: 'comDefs.yaml#/components/schemas/Dn' |
| 637 | dynamic5QISetRef: |
| 638 | $ref: 'comDefs.yaml#/components/schemas/Dn' |
| 639 | |
| 640 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 641 | - type: object |
| 642 | properties: |
| 643 | EP_N4: |
| 644 | $ref: '#/components/schemas/EP_N4-Multiple' |
| 645 | EP_N7: |
| 646 | $ref: '#/components/schemas/EP_N7-Multiple' |
| 647 | EP_N10: |
| 648 | $ref: '#/components/schemas/EP_N10-Multiple' |
| 649 | EP_N11: |
| 650 | $ref: '#/components/schemas/EP_N11-Multiple' |
| 651 | EP_N16: |
| 652 | $ref: '#/components/schemas/EP_N16-Multiple' |
| 653 | EP_S5C: |
| 654 | $ref: '#/components/schemas/EP_S5C-Multiple' |
| 655 | FiveQiDscpMappingSet: |
| 656 | $ref: '#/components/schemas/FiveQiDscpMappingSet-Single' |
| 657 | GtpUPathQoSMonitoringControl: |
| 658 | $ref: '#/components/schemas/GtpUPathQoSMonitoringControl-Single' |
| 659 | QFQoSMonitoringControl: |
| 660 | $ref: '#/components/schemas/QFQoSMonitoringControl-Single' |
| 661 | PredefinedPccRuleSet: |
| 662 | $ref: '#/components/schemas/PredefinedPccRuleSet-Single' |
| 663 | |
| 664 | UpfFunction-Single: |
| 665 | allOf: |
| 666 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 667 | - type: object |
| 668 | properties: |
| 669 | attributes: |
| 670 | allOf: |
| 671 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 672 | - type: object |
| 673 | properties: |
| 674 | plmnIdList: |
| 675 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 676 | nRTACList: |
| 677 | $ref: '#/components/schemas/TACList' |
| 678 | snssaiList: |
| 679 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 680 | managedNFProfile: |
| 681 | $ref: '#/components/schemas/ManagedNFProfile' |
| 682 | commModelList: |
| 683 | $ref: '#/components/schemas/CommModelList' |
| 684 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 685 | - type: object |
| 686 | properties: |
| 687 | EP_N3: |
| 688 | $ref: '#/components/schemas/EP_N3-Multiple' |
| 689 | EP_N4: |
| 690 | $ref: '#/components/schemas/EP_N4-Multiple' |
| 691 | EP_N6: |
| 692 | $ref: '#/components/schemas/EP_N6-Multiple' |
| 693 | EP_N9: |
| 694 | $ref: '#/components/schemas/EP_N9-Multiple' |
| 695 | EP_S5U: |
| 696 | $ref: '#/components/schemas/EP_S5U-Multiple' |
| 697 | N3iwfFunction-Single: |
| 698 | allOf: |
| 699 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 700 | - type: object |
| 701 | properties: |
| 702 | attributes: |
| 703 | allOf: |
| 704 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 705 | - type: object |
| 706 | properties: |
| 707 | plmnIdList: |
| 708 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 709 | commModelList: |
| 710 | $ref: '#/components/schemas/CommModelList' |
| 711 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 712 | - type: object |
| 713 | properties: |
| 714 | EP_N3: |
| 715 | $ref: '#/components/schemas/EP_N3-Multiple' |
| 716 | EP_N4: |
| 717 | $ref: '#/components/schemas/EP_N4-Multiple' |
| 718 | PcfFunction-Single: |
| 719 | allOf: |
| 720 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 721 | - type: object |
| 722 | properties: |
| 723 | attributes: |
| 724 | allOf: |
| 725 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 726 | - type: object |
| 727 | properties: |
| 728 | plmnIdList: |
| 729 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 730 | sBIFqdn: |
| 731 | type: string |
| 732 | snssaiList: |
| 733 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 734 | managedNFProfile: |
| 735 | $ref: '#/components/schemas/ManagedNFProfile' |
| 736 | commModelList: |
| 737 | $ref: '#/components/schemas/CommModelList' |
| 738 | configurable5QISetRef: |
| 739 | $ref: 'comDefs.yaml#/components/schemas/Dn' |
| 740 | dynamic5QISetRef: |
| 741 | $ref: 'comDefs.yaml#/components/schemas/Dn' |
| 742 | |
| 743 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 744 | - type: object |
| 745 | properties: |
| 746 | EP_N5: |
| 747 | $ref: '#/components/schemas/EP_N5-Multiple' |
| 748 | EP_N7: |
| 749 | $ref: '#/components/schemas/EP_N7-Multiple' |
| 750 | EP_N15: |
| 751 | $ref: '#/components/schemas/EP_N15-Multiple' |
| 752 | EP_N16: |
| 753 | $ref: '#/components/schemas/EP_N16-Multiple' |
| 754 | EP_Rx: |
| 755 | $ref: '#/components/schemas/EP_Rx-Multiple' |
| 756 | PredefinedPccRuleSet: |
| 757 | $ref: '#/components/schemas/PredefinedPccRuleSet-Single' |
| 758 | |
| 759 | AusfFunction-Single: |
| 760 | allOf: |
| 761 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 762 | - type: object |
| 763 | properties: |
| 764 | attributes: |
| 765 | allOf: |
| 766 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 767 | - type: object |
| 768 | properties: |
| 769 | plmnIdList: |
| 770 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 771 | sBIFqdn: |
| 772 | type: string |
| 773 | snssaiList: |
| 774 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 775 | managedNFProfile: |
| 776 | $ref: '#/components/schemas/ManagedNFProfile' |
| 777 | commModelList: |
| 778 | $ref: '#/components/schemas/CommModelList' |
| 779 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 780 | - type: object |
| 781 | properties: |
| 782 | EP_N12: |
| 783 | $ref: '#/components/schemas/EP_N12-Multiple' |
| 784 | EP_N13: |
| 785 | $ref: '#/components/schemas/EP_N13-Multiple' |
| 786 | UdmFunction-Single: |
| 787 | allOf: |
| 788 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 789 | - type: object |
| 790 | properties: |
| 791 | attributes: |
| 792 | allOf: |
| 793 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 794 | - type: object |
| 795 | properties: |
| 796 | plmnIdList: |
| 797 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 798 | sBIFqdn: |
| 799 | type: string |
| 800 | snssaiList: |
| 801 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 802 | managedNFProfile: |
| 803 | $ref: '#/components/schemas/ManagedNFProfile' |
| 804 | commModelList: |
| 805 | $ref: '#/components/schemas/CommModelList' |
| 806 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 807 | - type: object |
| 808 | properties: |
| 809 | EP_N8: |
| 810 | $ref: '#/components/schemas/EP_N8-Multiple' |
| 811 | EP_N10: |
| 812 | $ref: '#/components/schemas/EP_N10-Multiple' |
| 813 | EP_N13: |
| 814 | $ref: '#/components/schemas/EP_N13-Multiple' |
| 815 | UdrFunction-Single: |
| 816 | allOf: |
| 817 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 818 | - type: object |
| 819 | properties: |
| 820 | attributes: |
| 821 | allOf: |
| 822 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 823 | - type: object |
| 824 | properties: |
| 825 | plmnIdList: |
| 826 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 827 | sBIFqdn: |
| 828 | type: string |
| 829 | snssaiList: |
| 830 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 831 | managedNFProfile: |
| 832 | $ref: '#/components/schemas/ManagedNFProfile' |
| 833 | UdsfFunction-Single: |
| 834 | allOf: |
| 835 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 836 | - type: object |
| 837 | properties: |
| 838 | attributes: |
| 839 | allOf: |
| 840 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 841 | - type: object |
| 842 | properties: |
| 843 | plmnIdList: |
| 844 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 845 | sBIFqdn: |
| 846 | type: string |
| 847 | snssaiList: |
| 848 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 849 | managedNFProfile: |
| 850 | $ref: '#/components/schemas/ManagedNFProfile' |
| 851 | NrfFunction-Single: |
| 852 | allOf: |
| 853 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 854 | - type: object |
| 855 | properties: |
| 856 | attributes: |
| 857 | allOf: |
| 858 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 859 | - type: object |
| 860 | properties: |
| 861 | plmnIdList: |
| 862 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 863 | sBIFqdn: |
| 864 | type: string |
| 865 | cNSIIdList: |
| 866 | $ref: '#/components/schemas/CNSIIdList' |
| 867 | nFProfileList: |
| 868 | $ref: '#/components/schemas/NFProfileList' |
| 869 | snssaiList: |
| 870 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 871 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 872 | - type: object |
| 873 | properties: |
| 874 | EP_N27: |
| 875 | $ref: '#/components/schemas/EP_N27-Multiple' |
| 876 | NssfFunction-Single: |
| 877 | allOf: |
| 878 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 879 | - type: object |
| 880 | properties: |
| 881 | attributes: |
| 882 | allOf: |
| 883 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 884 | - type: object |
| 885 | properties: |
| 886 | plmnIdList: |
| 887 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 888 | sBIFqdn: |
| 889 | type: string |
| 890 | cNSIIdList: |
| 891 | $ref: '#/components/schemas/CNSIIdList' |
| 892 | nFProfileList: |
| 893 | $ref: '#/components/schemas/NFProfileList' |
| 894 | snssaiList: |
| 895 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 896 | commModelList: |
| 897 | $ref: '#/components/schemas/CommModelList' |
| 898 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 899 | - type: object |
| 900 | properties: |
| 901 | EP_N22: |
| 902 | $ref: '#/components/schemas/EP_N22-Multiple' |
| 903 | EP_N31: |
| 904 | $ref: '#/components/schemas/EP_N31-Multiple' |
| 905 | SmsfFunction-Single: |
| 906 | allOf: |
| 907 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 908 | - type: object |
| 909 | properties: |
| 910 | attributes: |
| 911 | allOf: |
| 912 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 913 | - type: object |
| 914 | properties: |
| 915 | plmnIdList: |
| 916 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 917 | sBIFqdn: |
| 918 | type: string |
| 919 | managedNFProfile: |
| 920 | $ref: '#/components/schemas/ManagedNFProfile' |
| 921 | commModelList: |
| 922 | $ref: '#/components/schemas/CommModelList' |
| 923 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 924 | - type: object |
| 925 | properties: |
| 926 | EP_N20: |
| 927 | $ref: '#/components/schemas/EP_N20-Multiple' |
| 928 | EP_N21: |
| 929 | $ref: '#/components/schemas/EP_N21-Multiple' |
| 930 | EP_MAP_SMSC: |
| 931 | $ref: '#/components/schemas/EP_MAP_SMSC-Multiple' |
| 932 | LmfFunction-Single: |
| 933 | allOf: |
| 934 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 935 | - type: object |
| 936 | properties: |
| 937 | attributes: |
| 938 | allOf: |
| 939 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 940 | - type: object |
| 941 | properties: |
| 942 | plmnIdList: |
| 943 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 944 | managedNFProfile: |
| 945 | $ref: '#/components/schemas/ManagedNFProfile' |
| 946 | commModelList: |
| 947 | $ref: '#/components/schemas/CommModelList' |
| 948 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 949 | - type: object |
| 950 | properties: |
| 951 | EP_NLS: |
| 952 | $ref: '#/components/schemas/EP_NLS-Multiple' |
| 953 | NgeirFunction-Single: |
| 954 | allOf: |
| 955 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 956 | - type: object |
| 957 | properties: |
| 958 | attributes: |
| 959 | allOf: |
| 960 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 961 | - type: object |
| 962 | properties: |
| 963 | plmnIdList: |
| 964 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 965 | sBIFqdn: |
| 966 | type: string |
| 967 | snssaiList: |
| 968 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 969 | managedNFProfile: |
| 970 | $ref: '#/components/schemas/ManagedNFProfile' |
| 971 | commModelList: |
| 972 | $ref: '#/components/schemas/CommModelList' |
| 973 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 974 | - type: object |
| 975 | properties: |
| 976 | EP_N17: |
| 977 | $ref: '#/components/schemas/EP_N17-Multiple' |
| 978 | SeppFunction-Single: |
| 979 | allOf: |
| 980 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 981 | - type: object |
| 982 | properties: |
| 983 | attributes: |
| 984 | allOf: |
| 985 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 986 | - type: object |
| 987 | properties: |
| 988 | plmnId: |
| 989 | $ref: 'nrNrm.yaml#/components/schemas/PlmnId' |
| 990 | sEPPType: |
| 991 | $ref: '#/components/schemas/SEPPType' |
| 992 | sEPPId: |
| 993 | type: integer |
| 994 | fqdn: |
| 995 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 996 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 997 | - type: object |
| 998 | properties: |
| 999 | EP_N32: |
| 1000 | $ref: '#/components/schemas/EP_N32-Multiple' |
| 1001 | NwdafFunction-Single: |
| 1002 | allOf: |
| 1003 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1004 | - type: object |
| 1005 | properties: |
| 1006 | attributes: |
| 1007 | allOf: |
| 1008 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1009 | - type: object |
| 1010 | properties: |
| 1011 | plmnIdList: |
| 1012 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 1013 | sBIFqdn: |
| 1014 | type: string |
| 1015 | snssaiList: |
| 1016 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 1017 | managedNFProfile: |
| 1018 | $ref: '#/components/schemas/ManagedNFProfile' |
| 1019 | commModelList: |
| 1020 | $ref: '#/components/schemas/CommModelList' |
| 1021 | ScpFunction-Single: |
| 1022 | allOf: |
| 1023 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1024 | - type: object |
| 1025 | properties: |
| 1026 | attributes: |
| 1027 | allOf: |
| 1028 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1029 | - type: object |
| 1030 | properties: |
| 1031 | supportedFuncList: |
| 1032 | $ref: '#/components/schemas/SupportedFuncList' |
| 1033 | address: |
| 1034 | $ref: 'genericNrm.yaml#/components/schemas/HostAddr' |
| 1035 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 1036 | NefFunction-Single: |
| 1037 | allOf: |
| 1038 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1039 | - type: object |
| 1040 | properties: |
| 1041 | attributes: |
| 1042 | allOf: |
| 1043 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1044 | - type: object |
| 1045 | properties: |
| 1046 | sBIFqdn: |
| 1047 | type: string |
| 1048 | snssaiList: |
| 1049 | $ref: 'nrNrm.yaml#/components/schemas/SnssaiList' |
| 1050 | managedNFProfile: |
| 1051 | $ref: '#/components/schemas/ManagedNFProfile' |
| 1052 | capabilityList: |
| 1053 | $ref: '#/components/schemas/CapabilityList' |
| 1054 | isINEF: |
| 1055 | type: boolean |
| 1056 | isCAPIFSup: |
| 1057 | type: boolean |
| 1058 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-ncO' |
| 1059 | |
| 1060 | ExternalAmfFunction-Single: |
| 1061 | allOf: |
| 1062 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1063 | - type: object |
| 1064 | properties: |
| 1065 | attributes: |
| 1066 | allOf: |
| 1067 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1068 | - type: object |
| 1069 | properties: |
| 1070 | plmnIdList: |
| 1071 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 1072 | amfIdentifier: |
| 1073 | $ref: '#/components/schemas/AmfIdentifier' |
| 1074 | ExternalNrfFunction-Single: |
| 1075 | allOf: |
| 1076 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1077 | - type: object |
| 1078 | properties: |
| 1079 | attributes: |
| 1080 | allOf: |
| 1081 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1082 | - type: object |
| 1083 | properties: |
| 1084 | plmnIdList: |
| 1085 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 1086 | ExternalNssfFunction-Single: |
| 1087 | allOf: |
| 1088 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1089 | - type: object |
| 1090 | properties: |
| 1091 | attributes: |
| 1092 | allOf: |
| 1093 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1094 | - type: object |
| 1095 | properties: |
| 1096 | plmnIdList: |
| 1097 | $ref: 'nrNrm.yaml#/components/schemas/PlmnIdList' |
| 1098 | ExternalSeppFunction-Single: |
| 1099 | allOf: |
| 1100 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1101 | - type: object |
| 1102 | properties: |
| 1103 | attributes: |
| 1104 | allOf: |
| 1105 | - $ref: 'genericNrm.yaml#/components/schemas/ManagedFunction-Attr' |
| 1106 | - type: object |
| 1107 | properties: |
| 1108 | plmnId: |
| 1109 | $ref: 'nrNrm.yaml#/components/schemas/PlmnId' |
| 1110 | sEPPId: |
| 1111 | type: integer |
| 1112 | fqdn: |
| 1113 | $ref: 'genericNrm.yaml#/components/schemas/Fqdn' |
| 1114 | |
| 1115 | |
| 1116 | EP_N2-Single: |
| 1117 | allOf: |
| 1118 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1119 | - type: object |
| 1120 | properties: |
| 1121 | attributes: |
| 1122 | allOf: |
| 1123 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1124 | - type: object |
| 1125 | properties: |
| 1126 | localAddress: |
| 1127 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1128 | remoteAddress: |
| 1129 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1130 | EP_N3-Single: |
| 1131 | allOf: |
| 1132 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1133 | - type: object |
| 1134 | properties: |
| 1135 | attributes: |
| 1136 | allOf: |
| 1137 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1138 | - type: object |
| 1139 | properties: |
| 1140 | localAddress: |
| 1141 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1142 | remoteAddress: |
| 1143 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1144 | epTransportRefs: |
| 1145 | $ref: 'comDefs.yaml#/components/schemas/DnList' |
| 1146 | EP_N4-Single: |
| 1147 | allOf: |
| 1148 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1149 | - type: object |
| 1150 | properties: |
| 1151 | attributes: |
| 1152 | allOf: |
| 1153 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1154 | - type: object |
| 1155 | properties: |
| 1156 | localAddress: |
| 1157 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1158 | remoteAddress: |
| 1159 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1160 | EP_N5-Single: |
| 1161 | allOf: |
| 1162 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1163 | - type: object |
| 1164 | properties: |
| 1165 | attributes: |
| 1166 | allOf: |
| 1167 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1168 | - type: object |
| 1169 | properties: |
| 1170 | localAddress: |
| 1171 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1172 | remoteAddress: |
| 1173 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1174 | EP_N6-Single: |
| 1175 | allOf: |
| 1176 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1177 | - type: object |
| 1178 | properties: |
| 1179 | attributes: |
| 1180 | allOf: |
| 1181 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1182 | - type: object |
| 1183 | properties: |
| 1184 | localAddress: |
| 1185 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1186 | remoteAddress: |
| 1187 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1188 | EP_N7-Single: |
| 1189 | allOf: |
| 1190 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1191 | - type: object |
| 1192 | properties: |
| 1193 | attributes: |
| 1194 | allOf: |
| 1195 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1196 | - type: object |
| 1197 | properties: |
| 1198 | localAddress: |
| 1199 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1200 | remoteAddress: |
| 1201 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1202 | EP_N8-Single: |
| 1203 | allOf: |
| 1204 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1205 | - type: object |
| 1206 | properties: |
| 1207 | attributes: |
| 1208 | allOf: |
| 1209 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1210 | - type: object |
| 1211 | properties: |
| 1212 | localAddress: |
| 1213 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1214 | remoteAddress: |
| 1215 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1216 | EP_N9-Single: |
| 1217 | allOf: |
| 1218 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1219 | - type: object |
| 1220 | properties: |
| 1221 | attributes: |
| 1222 | allOf: |
| 1223 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1224 | - type: object |
| 1225 | properties: |
| 1226 | localAddress: |
| 1227 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1228 | remoteAddress: |
| 1229 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1230 | EP_N10-Single: |
| 1231 | allOf: |
| 1232 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1233 | - type: object |
| 1234 | properties: |
| 1235 | attributes: |
| 1236 | allOf: |
| 1237 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1238 | - type: object |
| 1239 | properties: |
| 1240 | localAddress: |
| 1241 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1242 | remoteAddress: |
| 1243 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1244 | EP_N11-Single: |
| 1245 | allOf: |
| 1246 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1247 | - type: object |
| 1248 | properties: |
| 1249 | attributes: |
| 1250 | allOf: |
| 1251 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1252 | - type: object |
| 1253 | properties: |
| 1254 | localAddress: |
| 1255 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1256 | remoteAddress: |
| 1257 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1258 | EP_N12-Single: |
| 1259 | allOf: |
| 1260 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1261 | - type: object |
| 1262 | properties: |
| 1263 | attributes: |
| 1264 | allOf: |
| 1265 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1266 | - type: object |
| 1267 | properties: |
| 1268 | localAddress: |
| 1269 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1270 | remoteAddress: |
| 1271 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1272 | EP_N13-Single: |
| 1273 | allOf: |
| 1274 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1275 | - type: object |
| 1276 | properties: |
| 1277 | attributes: |
| 1278 | allOf: |
| 1279 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1280 | - type: object |
| 1281 | properties: |
| 1282 | localAddress: |
| 1283 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1284 | remoteAddress: |
| 1285 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1286 | EP_N14-Single: |
| 1287 | allOf: |
| 1288 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1289 | - type: object |
| 1290 | properties: |
| 1291 | attributes: |
| 1292 | allOf: |
| 1293 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1294 | - type: object |
| 1295 | properties: |
| 1296 | localAddress: |
| 1297 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1298 | remoteAddress: |
| 1299 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1300 | EP_N15-Single: |
| 1301 | allOf: |
| 1302 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1303 | - type: object |
| 1304 | properties: |
| 1305 | attributes: |
| 1306 | allOf: |
| 1307 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1308 | - type: object |
| 1309 | properties: |
| 1310 | localAddress: |
| 1311 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1312 | remoteAddress: |
| 1313 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1314 | EP_N16-Single: |
| 1315 | allOf: |
| 1316 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1317 | - type: object |
| 1318 | properties: |
| 1319 | attributes: |
| 1320 | allOf: |
| 1321 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1322 | - type: object |
| 1323 | properties: |
| 1324 | localAddress: |
| 1325 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1326 | remoteAddress: |
| 1327 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1328 | EP_N17-Single: |
| 1329 | allOf: |
| 1330 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1331 | - type: object |
| 1332 | properties: |
| 1333 | attributes: |
| 1334 | allOf: |
| 1335 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1336 | - type: object |
| 1337 | properties: |
| 1338 | localAddress: |
| 1339 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1340 | remoteAddress: |
| 1341 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1342 | |
| 1343 | EP_N20-Single: |
| 1344 | allOf: |
| 1345 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1346 | - type: object |
| 1347 | properties: |
| 1348 | attributes: |
| 1349 | allOf: |
| 1350 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1351 | - type: object |
| 1352 | properties: |
| 1353 | localAddress: |
| 1354 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1355 | remoteAddress: |
| 1356 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1357 | |
| 1358 | EP_N21-Single: |
| 1359 | allOf: |
| 1360 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1361 | - type: object |
| 1362 | properties: |
| 1363 | attributes: |
| 1364 | allOf: |
| 1365 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1366 | - type: object |
| 1367 | properties: |
| 1368 | localAddress: |
| 1369 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1370 | remoteAddress: |
| 1371 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1372 | EP_N22-Single: |
| 1373 | allOf: |
| 1374 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1375 | - type: object |
| 1376 | properties: |
| 1377 | attributes: |
| 1378 | allOf: |
| 1379 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1380 | - type: object |
| 1381 | properties: |
| 1382 | localAddress: |
| 1383 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1384 | remoteAddress: |
| 1385 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1386 | |
| 1387 | EP_N26-Single: |
| 1388 | allOf: |
| 1389 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1390 | - type: object |
| 1391 | properties: |
| 1392 | attributes: |
| 1393 | allOf: |
| 1394 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1395 | - type: object |
| 1396 | properties: |
| 1397 | localAddress: |
| 1398 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1399 | remoteAddress: |
| 1400 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1401 | EP_N27-Single: |
| 1402 | allOf: |
| 1403 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1404 | - type: object |
| 1405 | properties: |
| 1406 | attributes: |
| 1407 | allOf: |
| 1408 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1409 | - type: object |
| 1410 | properties: |
| 1411 | localAddress: |
| 1412 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1413 | remoteAddress: |
| 1414 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1415 | |
| 1416 | |
| 1417 | EP_N31-Single: |
| 1418 | allOf: |
| 1419 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1420 | - type: object |
| 1421 | properties: |
| 1422 | attributes: |
| 1423 | allOf: |
| 1424 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1425 | - type: object |
| 1426 | properties: |
| 1427 | localAddress: |
| 1428 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1429 | remoteAddress: |
| 1430 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1431 | EP_N32-Single: |
| 1432 | allOf: |
| 1433 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1434 | - type: object |
| 1435 | properties: |
| 1436 | attributes: |
| 1437 | allOf: |
| 1438 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1439 | - type: object |
| 1440 | properties: |
| 1441 | remotePlmnId: |
| 1442 | $ref: 'nrNrm.yaml#/components/schemas/PlmnId' |
| 1443 | remoteSeppAddress: |
| 1444 | $ref: 'genericNrm.yaml#/components/schemas/HostAddr' |
| 1445 | remoteSeppId: |
| 1446 | type: integer |
| 1447 | n32cParas: |
| 1448 | type: string |
| 1449 | n32fPolicy: |
| 1450 | type: string |
| 1451 | withIPX: |
| 1452 | type: boolean |
| 1453 | |
| 1454 | EP_S5C-Single: |
| 1455 | allOf: |
| 1456 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1457 | - type: object |
| 1458 | properties: |
| 1459 | attributes: |
| 1460 | allOf: |
| 1461 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1462 | - type: object |
| 1463 | properties: |
| 1464 | localAddress: |
| 1465 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1466 | remoteAddress: |
| 1467 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1468 | EP_S5U-Single: |
| 1469 | allOf: |
| 1470 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1471 | - type: object |
| 1472 | properties: |
| 1473 | attributes: |
| 1474 | allOf: |
| 1475 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1476 | - type: object |
| 1477 | properties: |
| 1478 | localAddress: |
| 1479 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1480 | remoteAddress: |
| 1481 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1482 | EP_Rx-Single: |
| 1483 | allOf: |
| 1484 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1485 | - type: object |
| 1486 | properties: |
| 1487 | attributes: |
| 1488 | allOf: |
| 1489 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1490 | - type: object |
| 1491 | properties: |
| 1492 | localAddress: |
| 1493 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1494 | remoteAddress: |
| 1495 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1496 | EP_MAP_SMSC-Single: |
| 1497 | allOf: |
| 1498 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1499 | - type: object |
| 1500 | properties: |
| 1501 | attributes: |
| 1502 | allOf: |
| 1503 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1504 | - type: object |
| 1505 | properties: |
| 1506 | localAddress: |
| 1507 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1508 | remoteAddress: |
| 1509 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1510 | EP_NLS-Single: |
| 1511 | allOf: |
| 1512 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1513 | - type: object |
| 1514 | properties: |
| 1515 | attributes: |
| 1516 | allOf: |
| 1517 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1518 | - type: object |
| 1519 | properties: |
| 1520 | localAddress: |
| 1521 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1522 | remoteAddress: |
| 1523 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1524 | EP_NLG-Single: |
| 1525 | allOf: |
| 1526 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1527 | - type: object |
| 1528 | properties: |
| 1529 | attributes: |
| 1530 | allOf: |
| 1531 | - $ref: 'genericNrm.yaml#/components/schemas/EP_RP-Attr' |
| 1532 | - type: object |
| 1533 | properties: |
| 1534 | localAddress: |
| 1535 | $ref: 'nrNrm.yaml#/components/schemas/LocalAddress' |
| 1536 | remoteAddress: |
| 1537 | $ref: 'nrNrm.yaml#/components/schemas/RemoteAddress' |
| 1538 | |
| 1539 | FiveQiDscpMappingSet-Single: |
| 1540 | allOf: |
| 1541 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1542 | - type: object |
| 1543 | properties: |
| 1544 | attributes: |
| 1545 | allOf: |
| 1546 | - type: object |
| 1547 | properties: |
| 1548 | FiveQiDscpMappingList: |
| 1549 | type: array |
| 1550 | items: |
| 1551 | $ref: '#/components/schemas/FiveQiDscpMapping' |
| 1552 | |
| 1553 | Configurable5QISet-Single: |
| 1554 | allOf: |
| 1555 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1556 | - type: object |
| 1557 | properties: |
| 1558 | attributes: |
| 1559 | allOf: |
| 1560 | - type: object |
| 1561 | properties: |
| 1562 | configurable5QIs: |
| 1563 | type: array |
| 1564 | items: |
| 1565 | $ref: '#/components/schemas/FiveQICharacteristics' |
| 1566 | |
| 1567 | Dynamic5QISet-Single: |
| 1568 | allOf: |
| 1569 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1570 | - type: object |
| 1571 | properties: |
| 1572 | attributes: |
| 1573 | allOf: |
| 1574 | - type: object |
| 1575 | properties: |
| 1576 | dynamic5QIs: |
| 1577 | type: array |
| 1578 | items: |
| 1579 | $ref: '#/components/schemas/FiveQICharacteristics' |
| 1580 | |
| 1581 | GtpUPathQoSMonitoringControl-Single: |
| 1582 | allOf: |
| 1583 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1584 | - type: object |
| 1585 | properties: |
| 1586 | attributes: |
| 1587 | allOf: |
| 1588 | - type: object |
| 1589 | properties: |
| 1590 | gtpUPathQoSMonitoringState: |
| 1591 | type: string |
| 1592 | enum: |
| 1593 | - ENABLED |
| 1594 | - DISABLED |
| 1595 | gtpUPathMonitoredSNSSAIs: |
| 1596 | type: array |
| 1597 | items: |
| 1598 | $ref: 'nrNrm.yaml#/components/schemas/Snssai' |
| 1599 | monitoredDSCPs: |
| 1600 | type: array |
| 1601 | items: |
| 1602 | type: integer |
| 1603 | minimum: 0 |
| 1604 | maximum: 255 |
| 1605 | isEventTriggeredGtpUPathMonitoringSupported: |
| 1606 | type: boolean |
| 1607 | isPeriodicGtpUMonitoringSupported: |
| 1608 | type: boolean |
| 1609 | isImmediateGtpUMonitoringSupported: |
| 1610 | type: boolean |
| 1611 | gtpUPathDelayThresholds: |
| 1612 | $ref: '#/components/schemas/GtpUPathDelayThresholdsType' |
| 1613 | gtpUPathMinimumWaitTime: |
| 1614 | type: integer |
| 1615 | gtpUPathMeasurementPeriod: |
| 1616 | type: integer |
| 1617 | |
| 1618 | QFQoSMonitoringControl-Single: |
| 1619 | allOf: |
| 1620 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1621 | - type: object |
| 1622 | properties: |
| 1623 | attributes: |
| 1624 | allOf: |
| 1625 | - type: object |
| 1626 | properties: |
| 1627 | qFQoSMonitoringState: |
| 1628 | type: string |
| 1629 | enum: |
| 1630 | - ENABLED |
| 1631 | - DISABLED |
| 1632 | qFMonitoredSNSSAIs: |
| 1633 | type: array |
| 1634 | items: |
| 1635 | $ref: 'nrNrm.yaml#/components/schemas/Snssai' |
| 1636 | qFMonitored5QIs: |
| 1637 | type: array |
| 1638 | items: |
| 1639 | type: integer |
| 1640 | minimum: 0 |
| 1641 | maximum: 255 |
| 1642 | isEventTriggeredQFMonitoringSupported: |
| 1643 | type: boolean |
| 1644 | isPeriodicQFMonitoringSupported: |
| 1645 | type: boolean |
| 1646 | isSessionReleasedQFMonitoringSupported: |
| 1647 | type: boolean |
| 1648 | qFPacketDelayThresholds: |
| 1649 | $ref: '#/components/schemas/QFPacketDelayThresholdsType' |
| 1650 | qFMinimumWaitTime: |
| 1651 | type: integer |
| 1652 | qFMeasurementPeriod: |
| 1653 | type: integer |
| 1654 | |
| 1655 | PredefinedPccRuleSet-Single: |
| 1656 | allOf: |
| 1657 | - $ref: 'genericNrm.yaml#/components/schemas/Top-Attr' |
| 1658 | - type: object |
| 1659 | properties: |
| 1660 | attributes: |
| 1661 | allOf: |
| 1662 | - type: object |
| 1663 | properties: |
| 1664 | predefinedPccRules: |
| 1665 | type: array |
| 1666 | items: |
| 1667 | $ref: '#/components/schemas/PccRule' |
| 1668 | |
| 1669 | #-------- Definition of JSON arrays for name-contained IOCs ---------------------- |
| 1670 | |
| 1671 | SubNetwork-Multiple: |
| 1672 | type: array |
| 1673 | items: |
| 1674 | $ref: '#/components/schemas/SubNetwork-Single' |
| 1675 | ManagedElement-Multiple: |
| 1676 | type: array |
| 1677 | items: |
| 1678 | $ref: '#/components/schemas/ManagedElement-Single' |
| 1679 | AmfFunction-Multiple: |
| 1680 | type: array |
| 1681 | items: |
| 1682 | $ref: '#/components/schemas/AmfFunction-Single' |
| 1683 | SmfFunction-Multiple: |
| 1684 | type: array |
| 1685 | items: |
| 1686 | $ref: '#/components/schemas/SmfFunction-Single' |
| 1687 | UpfFunction-Multiple: |
| 1688 | type: array |
| 1689 | items: |
| 1690 | $ref: '#/components/schemas/UpfFunction-Single' |
| 1691 | N3iwfFunction-Multiple: |
| 1692 | type: array |
| 1693 | items: |
| 1694 | $ref: '#/components/schemas/N3iwfFunction-Single' |
| 1695 | PcfFunction-Multiple: |
| 1696 | type: array |
| 1697 | items: |
| 1698 | $ref: '#/components/schemas/PcfFunction-Single' |
| 1699 | AusfFunction-Multiple: |
| 1700 | type: array |
| 1701 | items: |
| 1702 | $ref: '#/components/schemas/AusfFunction-Single' |
| 1703 | UdmFunction-Multiple: |
| 1704 | type: array |
| 1705 | items: |
| 1706 | $ref: '#/components/schemas/UdmFunction-Single' |
| 1707 | UdrFunction-Multiple: |
| 1708 | type: array |
| 1709 | items: |
| 1710 | $ref: '#/components/schemas/UdrFunction-Single' |
| 1711 | UdsfFunction-Multiple: |
| 1712 | type: array |
| 1713 | items: |
| 1714 | $ref: '#/components/schemas/UdsfFunction-Single' |
| 1715 | NrfFunction-Multiple: |
| 1716 | type: array |
| 1717 | items: |
| 1718 | $ref: '#/components/schemas/NrfFunction-Single' |
| 1719 | NssfFunction-Multiple: |
| 1720 | type: array |
| 1721 | items: |
| 1722 | $ref: '#/components/schemas/NssfFunction-Single' |
| 1723 | SmsfFunction-Multiple: |
| 1724 | type: array |
| 1725 | items: |
| 1726 | $ref: '#/components/schemas/SmsfFunction-Single' |
| 1727 | LmfFunction-Multiple: |
| 1728 | type: array |
| 1729 | items: |
| 1730 | $ref: '#/components/schemas/LmfFunction-Single' |
| 1731 | NgeirFunction-Multiple: |
| 1732 | type: array |
| 1733 | items: |
| 1734 | $ref: '#/components/schemas/NgeirFunction-Single' |
| 1735 | SeppFunction-Multiple: |
| 1736 | type: array |
| 1737 | items: |
| 1738 | $ref: '#/components/schemas/SeppFunction-Single' |
| 1739 | NwdafFunction-Multiple: |
| 1740 | type: array |
| 1741 | items: |
| 1742 | $ref: '#/components/schemas/NwdafFunction-Single' |
| 1743 | ScpFunction-Multiple: |
| 1744 | type: array |
| 1745 | items: |
| 1746 | $ref: '#/components/schemas/ScpFunction-Single' |
| 1747 | NefFunction-Multiple: |
| 1748 | type: array |
| 1749 | items: |
| 1750 | $ref: '#/components/schemas/NefFunction-Single' |
| 1751 | |
| 1752 | ExternalAmfFunction-Multiple: |
| 1753 | type: array |
| 1754 | items: |
| 1755 | $ref: '#/components/schemas/ExternalAmfFunction-Single' |
| 1756 | ExternalNrfFunction-Multiple: |
| 1757 | type: array |
| 1758 | items: |
| 1759 | $ref: '#/components/schemas/ExternalNrfFunction-Single' |
| 1760 | ExternalNssfFunction-Multiple: |
| 1761 | type: array |
| 1762 | items: |
| 1763 | $ref: '#/components/schemas/ExternalNssfFunction-Single' |
| 1764 | ExternalSeppFunction-Nultiple: |
| 1765 | type: array |
| 1766 | items: |
| 1767 | $ref: '#/components/schemas/ExternalSeppFunction-Single' |
| 1768 | |
| 1769 | AmfSet-Multiple: |
| 1770 | type: array |
| 1771 | items: |
| 1772 | $ref: '#/components/schemas/AmfSet-Single' |
| 1773 | AmfRegion-Multiple: |
| 1774 | type: array |
| 1775 | items: |
| 1776 | $ref: '#/components/schemas/AmfRegion-Single' |
| 1777 | |
| 1778 | EP_N2-Multiple: |
| 1779 | type: array |
| 1780 | items: |
| 1781 | $ref: '#/components/schemas/EP_N2-Single' |
| 1782 | EP_N3-Multiple: |
| 1783 | type: array |
| 1784 | items: |
| 1785 | $ref: '#/components/schemas/EP_N3-Single' |
| 1786 | EP_N4-Multiple: |
| 1787 | type: array |
| 1788 | items: |
| 1789 | $ref: '#/components/schemas/EP_N4-Single' |
| 1790 | EP_N5-Multiple: |
| 1791 | type: array |
| 1792 | items: |
| 1793 | $ref: '#/components/schemas/EP_N5-Single' |
| 1794 | EP_N6-Multiple: |
| 1795 | type: array |
| 1796 | items: |
| 1797 | $ref: '#/components/schemas/EP_N6-Single' |
| 1798 | EP_N7-Multiple: |
| 1799 | type: array |
| 1800 | items: |
| 1801 | $ref: '#/components/schemas/EP_N7-Single' |
| 1802 | EP_N8-Multiple: |
| 1803 | type: array |
| 1804 | items: |
| 1805 | $ref: '#/components/schemas/EP_N8-Single' |
| 1806 | EP_N9-Multiple: |
| 1807 | type: array |
| 1808 | items: |
| 1809 | $ref: '#/components/schemas/EP_N9-Single' |
| 1810 | EP_N10-Multiple: |
| 1811 | type: array |
| 1812 | items: |
| 1813 | $ref: '#/components/schemas/EP_N10-Single' |
| 1814 | EP_N11-Multiple: |
| 1815 | type: array |
| 1816 | items: |
| 1817 | $ref: '#/components/schemas/EP_N11-Single' |
| 1818 | EP_N12-Multiple: |
| 1819 | type: array |
| 1820 | items: |
| 1821 | $ref: '#/components/schemas/EP_N12-Single' |
| 1822 | EP_N13-Multiple: |
| 1823 | type: array |
| 1824 | items: |
| 1825 | $ref: '#/components/schemas/EP_N13-Single' |
| 1826 | EP_N14-Multiple: |
| 1827 | type: array |
| 1828 | items: |
| 1829 | $ref: '#/components/schemas/EP_N14-Single' |
| 1830 | EP_N15-Multiple: |
| 1831 | type: array |
| 1832 | items: |
| 1833 | $ref: '#/components/schemas/EP_N15-Single' |
| 1834 | EP_N16-Multiple: |
| 1835 | type: array |
| 1836 | items: |
| 1837 | $ref: '#/components/schemas/EP_N16-Single' |
| 1838 | EP_N17-Multiple: |
| 1839 | type: array |
| 1840 | items: |
| 1841 | $ref: '#/components/schemas/EP_N17-Single' |
| 1842 | |
| 1843 | EP_N20-Multiple: |
| 1844 | type: array |
| 1845 | items: |
| 1846 | $ref: '#/components/schemas/EP_N20-Single' |
| 1847 | EP_N21-Multiple: |
| 1848 | type: array |
| 1849 | items: |
| 1850 | $ref: '#/components/schemas/EP_N21-Single' |
| 1851 | EP_N22-Multiple: |
| 1852 | type: array |
| 1853 | items: |
| 1854 | $ref: '#/components/schemas/EP_N22-Single' |
| 1855 | |
| 1856 | EP_N26-Multiple: |
| 1857 | type: array |
| 1858 | items: |
| 1859 | $ref: '#/components/schemas/EP_N26-Single' |
| 1860 | EP_N27-Multiple: |
| 1861 | type: array |
| 1862 | items: |
| 1863 | $ref: '#/components/schemas/EP_N27-Single' |
| 1864 | |
| 1865 | EP_N31-Multiple: |
| 1866 | type: array |
| 1867 | items: |
| 1868 | $ref: '#/components/schemas/EP_N31-Single' |
| 1869 | EP_N32-Multiple: |
| 1870 | type: array |
| 1871 | items: |
| 1872 | $ref: '#/components/schemas/EP_N32-Single' |
| 1873 | |
| 1874 | EP_S5C-Multiple: |
| 1875 | type: array |
| 1876 | items: |
| 1877 | $ref: '#/components/schemas/EP_S5C-Single' |
| 1878 | EP_S5U-Multiple: |
| 1879 | type: array |
| 1880 | items: |
| 1881 | $ref: '#/components/schemas/EP_S5U-Single' |
| 1882 | EP_Rx-Multiple: |
| 1883 | type: array |
| 1884 | items: |
| 1885 | $ref: '#/components/schemas/EP_Rx-Single' |
| 1886 | EP_MAP_SMSC-Multiple: |
| 1887 | type: array |
| 1888 | items: |
| 1889 | $ref: '#/components/schemas/EP_MAP_SMSC-Single' |
| 1890 | EP_NLS-Multiple: |
| 1891 | type: array |
| 1892 | items: |
| 1893 | $ref: '#/components/schemas/EP_NLS-Single' |
| 1894 | EP_NLG-Multiple: |
| 1895 | type: array |
| 1896 | items: |
| 1897 | $ref: '#/components/schemas/EP_NLG-Single' |
| 1898 | Configurable5QISet-Multiple: |
| 1899 | type: array |
| 1900 | items: |
| 1901 | $ref: '#/components/schemas/Configurable5QISet-Single' |
| 1902 | Dynamic5QISet-Multiple: |
| 1903 | type: array |
| 1904 | items: |
| 1905 | $ref: '#/components/schemas/Dynamic5QISet-Single' |
| 1906 | |
| 1907 | |
| 1908 | |
| 1909 | #------------ Definitions in TS 28.541 for TS 28.532 ----------------------------- |
| 1910 | |
| 1911 | resources-5gcNrm: |
| 1912 | oneOf: |
| 1913 | - $ref: '#/components/schemas/SubNetwork-Single' |
| 1914 | - $ref: '#/components/schemas/ManagedElement-Single' |
| 1915 | - $ref: '#/components/schemas/AmfFunction-Single' |
| 1916 | - $ref: '#/components/schemas/SmfFunction-Single' |
| 1917 | - $ref: '#/components/schemas/UpfFunction-Single' |
| 1918 | - $ref: '#/components/schemas/N3iwfFunction-Single' |
| 1919 | - $ref: '#/components/schemas/PcfFunction-Single' |
| 1920 | - $ref: '#/components/schemas/AusfFunction-Single' |
| 1921 | - $ref: '#/components/schemas/UdmFunction-Single' |
| 1922 | - $ref: '#/components/schemas/UdrFunction-Single' |
| 1923 | - $ref: '#/components/schemas/UdsfFunction-Single' |
| 1924 | - $ref: '#/components/schemas/NrfFunction-Single' |
| 1925 | - $ref: '#/components/schemas/NssfFunction-Single' |
| 1926 | - $ref: '#/components/schemas/SmsfFunction-Single' |
| 1927 | - $ref: '#/components/schemas/LmfFunction-Single' |
| 1928 | - $ref: '#/components/schemas/NgeirFunction-Single' |
| 1929 | - $ref: '#/components/schemas/SeppFunction-Single' |
| 1930 | - $ref: '#/components/schemas/NwdafFunction-Single' |
| 1931 | - $ref: '#/components/schemas/ScpFunction-Single' |
| 1932 | - $ref: '#/components/schemas/NefFunction-Single' |
| 1933 | |
| 1934 | - $ref: '#/components/schemas/ExternalAmfFunction-Single' |
| 1935 | - $ref: '#/components/schemas/ExternalNrfFunction-Single' |
| 1936 | - $ref: '#/components/schemas/ExternalNssfFunction-Single' |
| 1937 | - $ref: '#/components/schemas/ExternalSeppFunction-Single' |
| 1938 | |
| 1939 | - $ref: '#/components/schemas/AmfSet-Single' |
| 1940 | - $ref: '#/components/schemas/AmfRegion-Single' |
| 1941 | - $ref: '#/components/schemas/QFQoSMonitoringControl-Single' |
| 1942 | - $ref: '#/components/schemas/GtpUPathQoSMonitoringControl-Single' |
| 1943 | |
| 1944 | - $ref: '#/components/schemas/EP_N2-Single' |
| 1945 | - $ref: '#/components/schemas/EP_N3-Single' |
| 1946 | - $ref: '#/components/schemas/EP_N4-Single' |
| 1947 | - $ref: '#/components/schemas/EP_N5-Single' |
| 1948 | - $ref: '#/components/schemas/EP_N6-Single' |
| 1949 | - $ref: '#/components/schemas/EP_N7-Single' |
| 1950 | - $ref: '#/components/schemas/EP_N8-Single' |
| 1951 | - $ref: '#/components/schemas/EP_N9-Single' |
| 1952 | - $ref: '#/components/schemas/EP_N10-Single' |
| 1953 | - $ref: '#/components/schemas/EP_N11-Single' |
| 1954 | - $ref: '#/components/schemas/EP_N12-Single' |
| 1955 | - $ref: '#/components/schemas/EP_N13-Single' |
| 1956 | - $ref: '#/components/schemas/EP_N14-Single' |
| 1957 | - $ref: '#/components/schemas/EP_N15-Single' |
| 1958 | - $ref: '#/components/schemas/EP_N16-Single' |
| 1959 | - $ref: '#/components/schemas/EP_N17-Single' |
| 1960 | |
| 1961 | - $ref: '#/components/schemas/EP_N20-Single' |
| 1962 | - $ref: '#/components/schemas/EP_N21-Single' |
| 1963 | - $ref: '#/components/schemas/EP_N22-Single' |
| 1964 | |
| 1965 | - $ref: '#/components/schemas/EP_N26-Single' |
| 1966 | - $ref: '#/components/schemas/EP_N27-Single' |
| 1967 | |
| 1968 | - $ref: '#/components/schemas/EP_N31-Single' |
| 1969 | - $ref: '#/components/schemas/EP_N31-Single' |
| 1970 | |
| 1971 | - $ref: '#/components/schemas/EP_S5C-Single' |
| 1972 | - $ref: '#/components/schemas/EP_S5U-Single' |
| 1973 | - $ref: '#/components/schemas/EP_Rx-Single' |
| 1974 | - $ref: '#/components/schemas/EP_MAP_SMSC-Single' |
| 1975 | - $ref: '#/components/schemas/EP_NLS-Single' |
| 1976 | - $ref: '#/components/schemas/EP_NLG-Single' |
| 1977 | - $ref: '#/components/schemas/Configurable5QISet-Single' |
| 1978 | - $ref: '#/components/schemas/FiveQiDscpMappingSet-Single' |
| 1979 | - $ref: '#/components/schemas/PredefinedPccRuleSet-Single' |
| 1980 | - $ref: '#/components/schemas/Dynamic5QISet-Single' |