Amazon API Gateway · JSON Structure

V1 Stages Structure

Stages schema from Amazon API Gateway v1 API

Type: object Properties: 1
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Stages 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

item

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v1-stages-structure.json",
  "name": "Stages",
  "description": "Stages schema from Amazon API Gateway v1 API"
}