{
  "openapi": "3.1.0",
  "info": {
    "title": "Era I Era Public Integration API",
    "version": "1.0.0",
    "description": "Machine-readable integration surface for AI agents and developer tooling."
  },
  "servers": [
    {
      "url": "https://eraiera.com",
      "description": "Production"
    }
  ],
  "paths": {
    "/llms.txt": {
      "get": {
        "operationId": "getLlmsSummary",
        "summary": "Get compact LLM site summary",
        "responses": {
          "200": {
            "description": "Plain text summary",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/llms-full.txt": {
      "get": {
        "operationId": "getLlmsFullSummary",
        "summary": "Get extended LLM site summary",
        "responses": {
          "200": {
            "description": "Plain text summary",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/agent.json": {
      "get": {
        "operationId": "getAgentConfig",
        "summary": "Get agent capability document",
        "responses": {
          "200": {
            "description": "Agent configuration",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  },
  "tags": [
    {
      "name": "Discovery",
      "description": "Agent and model discovery assets"
    }
  ]
}
