GitHub Raw JSON API

aws / aws-cdk

12,860 TypeScript

The AWS Cloud Development Kit is a framework for defining cloud infrastructure in code

Pet API Specification

Located in packages/@aws-cdk-testing/framework-integ/test/aws-bedrockagentcore/test/agentcore/gateway/schemas/openapi/pet-api.json on branch HEAD

3.0.0 JSON 1 Endpoints 0.4 KB

Operations & Route Endpoints (1)

GET /pets
List all pets
Raw JSON Specification
{
  "openapi": "3.0.0",
  "info": {
    "title": "Pet API",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.example.com/pets"
    }
  ],
  "paths": {
    "/pets": {
      "get": {
        "summary": "List all pets",
        "operationId": "listPets",
        "responses": {
          "200": {
            "description": "A list of pets"
          }
        }
      }
    }
  }
}