Amazon API Gateway · Schema

Stages

Stages schema from Amazon API Gateway v1 API

API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Properties

Name Type Description
item array
View JSON Schema on GitHub

JSON Schema

v1-stages-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "item": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "deploymentId": {
            "type": "string",
            "description": "Identifier of the deployment.",
            "example": "abc123"
          },
          "stageName": {
            "type": "string",
            "description": "Name of the stage.",
            "example": "my-resource"
          },
          "description": {
            "type": "string",
            "description": "Description of the stage.",
            "example": "A description of this resource."
          }
        }
      },
      "example": [
        "example-value"
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-schema/v1-stages-schema.json",
  "title": "Stages",
  "description": "Stages schema from Amazon API Gateway v1 API"
}