Amazon API Gateway · JSON Structure

V1 Deployment Structure

Deployment schema from Amazon API Gateway v1 API

Type: object Properties: 3
API GatewayCloudRESTHTTPWebSocketServerlessMCPAgentCoreDeveloper Portal

Deployment 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

id description createdDate

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Deployment identifier.",
      "example": "abc123"
    },
    "description": {
      "type": "string",
      "description": "Description of the deployment.",
      "example": "A description of this resource."
    },
    "createdDate": {
      "type": "datetime",
      "description": "Timestamp when the deployment was created.",
      "example": "2025-03-15T14:30:00Z"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-api-gateway/refs/heads/main/json-structure/v1-deployment-structure.json",
  "name": "Deployment",
  "description": "Deployment schema from Amazon API Gateway v1 API"
}