Amazon API Gateway · Schema

CreateDocumentationPartRequest

GatewayHTTP APIREST APIServerlessWebSocket

Properties

Name Type Description
location object
properties string
View JSON Schema on GitHub

JSON Schema

amazon-api-gateway-createdocumentationpartrequest-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateDocumentationPartRequest",
  "type": "object",
  "properties": {
    "location": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "API",
            "AUTHORIZER",
            "MODEL",
            "RESOURCE",
            "METHOD",
            "PATH_PARAMETER",
            "QUERY_PARAMETER",
            "REQUEST_HEADER",
            "REQUEST_BODY",
            "RESPONSE",
            "RESPONSE_HEADER",
            "RESPONSE_BODY"
          ]
        },
        "path": {
          "type": "string"
        },
        "method": {
          "type": "string"
        },
        "statusCode": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "properties": {
      "type": "string"
    }
  },
  "required": [
    "location",
    "properties"
  ]
}