Amazon API Gateway · JSON Structure

V1 Method Structure

Method schema from Amazon API Gateway v1 API

Type: object Properties: 3
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Method is a JSON Structure definition published by Amazon API Gateway, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

httpMethod authorizationType apiKeyRequired

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "httpMethod": {
      "type": "string",
      "description": "HTTP method verb.",
      "example": "example-value"
    },
    "authorizationType": {
      "type": "string",
      "description": "Authorization type for invoking the method.",
      "example": "example-value"
    },
    "apiKeyRequired": {
      "type": "boolean",
      "description": "Whether the method requires an API key.",
      "example": true
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v1-method-structure.json",
  "name": "Method",
  "description": "Method schema from Amazon API Gateway v1 API"
}