{
  "info": {
    "name": "Developer Portal API",
    "description": "Postman collection for the Developer Portal API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://your-cloudfront-domain"
    }
  ],
  "item": [
    {
      "name": "Health Check",
      "request": {
        "method": "GET",
        "url": {
          "raw": "{{baseUrl}}/health",
          "host": ["{{baseUrl}}"],
          "path": ["health"]
        },
        "description": "Check service health and database connectivity"
      }
    },
    {
      "name": "API Documentation",
      "request": {
        "method": "GET",
        "url": {
          "raw": "{{baseUrl}}/api/docs",
          "host": ["{{baseUrl}}"],
          "path": ["api", "docs"]
        },
        "description": "Get API documentation metadata"
      }
    },
    {
      "name": "Service Status",
      "request": {
        "method": "GET",
        "url": {
          "raw": "{{baseUrl}}/api/status",
          "host": ["{{baseUrl}}"],
          "path": ["api", "status"]
        },
        "description": "Get service status and database information"
      }
    }
  ]
}
