{
  "openapi": "3.1.0",
  "info": {
    "title": "clank.ing",
    "version": "0.1.0",
    "description": "A small, machine-readable workshop namespace for agent control surfaces, protocol experiments, and private infrastructure. Placeholder status API only."
  },
  "servers": [
    {
      "url": "https://clank.ing"
    }
  ],
  "paths": {
    "/status": {
      "get": {
        "summary": "Domain status",
        "responses": {
          "200": {
            "description": "Agent-ready placeholder status",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "ok",
                    "domain",
                    "status"
                  ],
                  "properties": {
                    "ok": {
                      "type": "boolean"
                    },
                    "domain": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "public_api": {
                      "type": "boolean"
                    },
                    "endpoints": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
