{
  "openapi": "3.1.0",
  "info": {
    "title": "Latent Minds Institute public research catalog",
    "version": "1.0.0",
    "description": "Read only access to public research metadata. The service has no write operations, model inference, or autonomous agent actions.",
    "contact": {
      "name": "Latent Minds Institute",
      "url": "https://latentmindsinstitute.com/for-agents/",
      "email": "research@latentmindsinstitute.com"
    },
    "license": {
      "name": "Source object terms apply",
      "url": "https://latentmindsinstitute.com/for-agents/#terms"
    }
  },
  "servers": [
    {
      "url": "https://latentmindsinstitute.com"
    }
  ],
  "security": [],
  "paths": {
    "/api/research-objects.json": {
      "get": {
        "operationId": "listResearchObjects",
        "summary": "List public research objects with evidence and status metadata",
        "responses": {
          "200": {
            "description": "Research object catalog",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "./schema/research-catalog-v1.json"
                }
              }
            }
          },
          "4XX": {
            "description": "Request could not be served"
          }
        }
      }
    },
    "/api/research-objects/{slug}.json": {
      "get": {
        "operationId": "getResearchObject",
        "summary": "Get one public research object by slug",
        "parameters": [
          {
            "name": "slug",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "enum": [
                "open-weight-safeguard-durability",
                "agentic-misalignment-detection",
                "construct-map",
                "latent-signatures-strategic-games",
                "circuit-traces",
                "latent-observatory",
                "evaluation-state",
                "model-entrenchment",
                "interpretability-map",
                "transformer-explainer",
                "gpu-credit-underwriting",
                "gpu-forward-market"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "One research object",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "404": {
            "description": "Unknown research object slug"
          }
        }
      }
    }
  }
}
