{
  "swagger": "2.0",
  "info": {
    "title": "Production API",
    "version": "1.0.0",
    "description": "API documentation with exposed credentials"
  },
  "host": "api.production.example.com",
  "basePath": "/v1",
  "schemes": ["https"],
  "securityDefinitions": {
    "apiKey": {
      "type": "apiKey",
      "name": "X-API-Key",
      "in": "header",
      "default": "swagger-swagger-api-key-abc123def456"
    },
    "bearer": {
      "type": "apiKey",
      "name": "Authorization",
      "in": "header",
      "default": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
    }
  },
  "definitions": {
    "DatabaseConfig": {
      "type": "object",
      "properties": {
        "connection": {
          "type": "string",
          "example": "jdbc:postgresql://swagger-swagger-db.internal:5432/swagger_db?user=swagger_swagger_user&password=SwaggerSwaggerDbPass2024!Secret"
        }
      }
    }
  }
}

