Not able to see input parametes from Swagger generated json schema in postman Inbox x

I want to pass the input parameters defined under parameters>>schema. But, I could see “get-software-information body object” in body instead of parameters which are defined under definitions GetSoftwareInformationRPCInputSchema.

Is this swagger generated file is an incorrect format?

How can I know the input parameters available for this RPC from this schema in postman to test with all each parameter?

Json Schema:

{
“swagger”: “2.0”,
“info”: {
“version”: “1.0.0”,
“description”: “check-rpc-version API generated from check-rpc-version@2018-01-01.yang”,
“title”: “check-rpc-version API”
},
“host”: “localhost:8080”,
“basePath”: “/restconf”,
“schemes”: [
“http”
],
“paths”: {
"/operations/get-software-information/": {
“post”: {
“responses”: {
“200”: {
“description”: “Successful operation”,
“schema”: {
"$ref": “#/definitions/GetSoftwareInformationRPCOutputSchema”
}
},
“400”: {
“description”: “Internal Error”
}
},
“description”: “Create operation of resource: get-software-information”,
“parameters”: [
{
“required”: true,
“description”: “get-software-informationbody object”,
“schema”: {
"$ref": “#/definitions/GetSoftwareInformationRPCInputSchema”
},
“name”: “get-software-information”,
“in”: “body”
}
],
“produces”: [
“application/json”
],
“summary”: “Create get-software-information by ID”,
“consumes”: [
“application/json”
],
“operationId”: “createGetSoftwareInformationById”
}
}
},
“definitions”: {
“CommandForwarding”: {
“properties”: {
“reSelector”: {
“properties”: {
“case1”: {
“properties”: {
“re0”: {
“type”: “string”,
“description”: “RE0”
}
}
},
“case3”: {
“properties”: {
“routingEngine”: {
“enum”: [
“local”,
“other”,
“master”,
“backup”,
“both”
],
“type”: “string”,
“description”: “Specific routing engine”
}
}
},
“case2”: {
“properties”: {
“re1”: {
“type”: “string”,
“description”: “RE1”
}
}
}
}
},
“GetSoftwareInformationRPCInputSchema”: {
“allOf”: [
{
"$ref": “#/definitions/CommandForwarding”
},
{
“properties”: {
“level”: {
“enum”: [
“brief”,
“detail”
],
“type”: “string”
}
}
}
]
},
“GetSoftwareInformationRPCOutputSchema”: {
“properties”: {
“outputC”: {
“properties”: {
“outputTag”: {
“properties”: {
“output”: {
“type”: “string”
}
}
},
“multichassisTag”: {
“properties”: {
“multiRoutingEngineResults”: {}
}
},
“actualTag”: {
“properties”: {
“softwareInformation”: {}
}
}
}
}
}
}
}
}