...
Info | ||
---|---|---|
| ||
For example, the field "test-name" will be converted into "test_2D_name" as a UDR.
|
Open API Profile View
Setting | Description | |||||
---|---|---|---|---|---|---|
Import | Import the OpenAPI specification file from where the desktop client is running. Upon successful import, the contents of the file will be displayed in the box below. | |||||
View | Opens the selected OPEN API schema file. | |||||
Ignore Read Only Tag | Select this option to ignore the readOnly tag in the specification file.
|
Limitations
This section lists the following limitations that users may encounter when using the OpenAPI profile.:
Table of Contents | ||||
---|---|---|---|---|
|
OpenAPI specification schema which contains oneOf
tag will be decoded as a map instead of a UDR
...
Example: SubscriptionData schema contains the subscrCond with oneOf tag
Code Block |
---|
SubscriptionData: description: Information of a subscription to notifications to NRF events, included in subscription requests and responses type: object required: - nfStatusNotificationUri - subscriptionId properties: nfStatusNotificationUri: type: string reqNfInstanceId: $ref: 'TS29571_CommonData.yaml#/components/schemas/NfInstanceId' subscrCond: oneOf: - $ref: '#/components/schemas/NfInstanceIdCond' - $ref: '#/components/schemas/NfInstanceIdListCond' - $ref: '#/components/schemas/NfTypeCond' - $ref: '#/components/schemas/ServiceNameCond' - $ref: '#/components/schemas/AmfCond' - $ref: '#/components/schemas/GuamiListCond' - $ref: '#/components/schemas/NetworkSliceCond' - $ref: '#/components/schemas/NfGroupCond' - $ref: '#/components/schemas/NfSetCond' - $ref: '#/components/schemas/NfServiceSetCond' - $ref: '#/components/schemas/UpfCond' - $ref: '#/components/schemas/ScpDomainCond' - $ref: '#/components/schemas/NwdafCond' - $ref: '#/components/schemas/NefCond' |
The subscrCond
is a schema of NfSetCond
but it is decoded as a map with key value pair as shown below:
...