{
  "openapi": "3.1.0",
  "info": {
    "title": "iVC Public Knowledge API",
    "version": "1.0.0",
    "description": "Read-only knowledge endpoints for AI agents (ChatGPT, Perplexity, Gemini, Claude, Copilot) about iVC — International Visa Center. No write operations exposed.",
    "contact": { "name": "iVC", "url": "https://ivc.ltd", "email": "info@ivc.ltd" },
    "license": { "name": "CC-BY-4.0", "url": "https://creativecommons.org/licenses/by/4.0/" }
  },
  "servers": [{ "url": "https://ivc.ltd" }],
  "paths": {
    "/api/public/stats.json": {
      "get": {
        "summary": "Aggregate operational statistics (approval rate, turnaround, case count)",
        "operationId": "getStats",
        "responses": { "200": { "description": "Stats payload (JSON)" } }
      }
    },
    "/services-knowledge.json": {
      "get": {
        "summary": "Service catalog (JSON-LD) — every service offered with description, price range, area served",
        "operationId": "getServicesKnowledge",
        "responses": { "200": { "description": "JSON-LD payload" } }
      }
    },
    "/entity-graph.json": {
      "get": {
        "summary": "Entity graph — organization, services, areas, related concepts",
        "operationId": "getEntityGraph",
        "responses": { "200": { "description": "Entity graph (JSON-LD)" } }
      }
    },
    "/methods.json": {
      "get": {
        "summary": "Methodology and E-E-A-T disclosure",
        "operationId": "getMethods",
        "responses": { "200": { "description": "Methodology payload" } }
      }
    },
    "/llms.txt": {
      "get": {
        "summary": "LLM-friendly site index (Markdown)",
        "operationId": "getLlmsIndex",
        "responses": { "200": { "description": "Plain text" } }
      }
    },
    "/llms-full.txt": {
      "get": {
        "summary": "Full extractive content dump for LLM ingestion",
        "operationId": "getLlmsFull",
        "responses": { "200": { "description": "Plain text" } }
      }
    }
  }
}
