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": []
}
]
}
}