Request/Response schemas not showing up in documentation

I have exported my AWS API Gateway API to Postman format and imported the collection.
In API Gateway I have set up ā€œModelsā€ scheams for Requests and Responses.
These donā€™t seem to be showing up in the Postman documentation. Does postman support request/response schemas?

Extract from the import json

  "/application": {
  "post": {
    "consumes": [
      "application/json"
    ],
    "produces": [
      "application/json"
    ],
    "parameters": [
      {
        "in": "body",
        "name": "ApplicationCreateRequest",
        "required": true,
        "schema": {
          "$ref": "#/definitions/ApplicationCreateRequest"
        }
      }
    ],
    "responses": {
      "200": {
        "description": "200 response",
        "schema": {
          "$ref": "#/definitions/ApplicationResponse"
        }
      }
    },
    "security": [
      {
        "auth": []
      }
    ]
  }

}

1 Like

I am suffering same issue.
Is there any way to show the request/response schema on documentation?