Amazon API Gateway · JSON Structure

V2 Apis Structure

Apis schema from Amazon API Gateway v2 API

Type: object Properties: 1
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

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

Properties

Items

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "Items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ApiId": {
            "type": "string",
            "description": "Identifier of the API.",
            "example": "abc123"
          },
          "Name": {
            "type": "string",
            "description": "Name of the API.",
            "example": "my-resource"
          },
          "ProtocolType": {
            "type": "string",
            "enum": [
              "HTTP",
              "WEBSOCKET"
            ],
            "description": "API protocol (HTTP or WEBSOCKET).",
            "example": "HTTP"
          },
          "ApiEndpoint": {
            "type": "string",
            "description": "Default endpoint for the API.",
            "example": "example-value"
          },
          "RouteSelectionExpression": {
            "type": "string",
            "description": "Route selection expression for the API.",
            "example": "example-value"
          },
          "CreatedDate": {
            "type": "datetime",
            "description": "Timestamp when the API was created.",
            "example": "2025-03-15T14:30:00Z"
          }
        }
      },
      "example": [
        "example-value"
      ]
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v2-apis-structure.json",
  "name": "Apis",
  "description": "Apis schema from Amazon API Gateway v2 API"
}