{
  "@context": "https://schema.org",
  "@type": "DefinedTermSet",
  "@id": "https://www.slavin.ai/data/ai-glossary-network.json",
  "name": "SLAtech Network AI & Compliance Glossary",
  "description": "Cross-network glossary of 40 essential AI architecture, governance, compliance, and adjacent terms. Each term has a stable @id, a 1-2 sentence definition, alternate names where common, sources (page URL where the term is discussed in depth), and the network site that owns the canonical treatment. Citation-grade — every term cites a single source of truth across the SLAtech network.",
  "url": "https://www.slavin.ai/data/ai-glossary-network.json",
  "license": "https://creativecommons.org/licenses/by/4.0/",
  "publisher": { "@type": "Organization", "name": "Slavin AI (SLAtech LTD)", "url": "https://www.slavin.ai" },
  "datePublished": "2026-06-20",
  "dateModified": "2026-06-20",
  "version": "1.0.0",
  "hasDefinedTerm": [
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#rag",
      "name": "Retrieval-Augmented Generation (RAG)",
      "alternateName": ["RAG", "RAG pipeline", "retrieval augmented generation"],
      "termCode": "rag",
      "description": "An architecture pattern where an LLM's response is grounded in documents retrieved at query time from a vector index, rather than relying solely on the model's training data. Used for hallucination control, source citation, and freshness without retraining.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.pro/en/Article-RAG-Architecture", "https://www.slavin.ai/Compare-RAG-vs-Fine-tuning"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#fine-tuning",
      "name": "Fine-tuning",
      "alternateName": ["model fine-tuning", "supervised fine-tuning", "SFT"],
      "termCode": "fine-tuning",
      "description": "Adapting a pre-trained model's weights on a smaller, domain-specific dataset to improve task accuracy. Higher quality than RAG for behavioral patterns but slower to update; locks you to the model version trained.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/Compare-RAG-vs-Fine-tuning"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vector-database",
      "name": "Vector Database",
      "alternateName": ["vector DB", "vector store", "embedding store"],
      "termCode": "vector-database",
      "description": "A database optimized for similarity search over high-dimensional vectors (typically embeddings). Used in RAG and recommendation systems. Examples: Pinecone, Weaviate, PGVector, Milvus, Qdrant.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/Compare-Vector-Databases"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#embedding",
      "name": "Embedding",
      "alternateName": ["text embedding", "vector embedding", "embedding vector"],
      "termCode": "embedding",
      "description": "A numerical vector representation of text (or other modality) where semantic similarity corresponds to vector proximity. Foundation for RAG, semantic search, and clustering.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#prompt-injection",
      "name": "Prompt Injection",
      "alternateName": ["prompt injection attack", "indirect prompt injection"],
      "termCode": "prompt-injection",
      "description": "A class of attacks where malicious instructions are smuggled into LLM input via user data, retrieved documents, or tool outputs — overriding the system prompt. Distinct from jailbreaking (which targets the model directly).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.pro/en/Article-AI-Security"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hallucination",
      "name": "Hallucination",
      "alternateName": ["AI hallucination", "confabulation"],
      "termCode": "hallucination",
      "description": "An LLM output that is fluent, plausible, and factually wrong — often presented with high confidence. Distinct from refusal (the model declines to answer). Mitigated by RAG + citation enforcement + LLM-as-judge sampling.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#agent",
      "name": "AI Agent",
      "alternateName": ["LLM agent", "agentic AI"],
      "termCode": "agent",
      "description": "An LLM-driven loop that plans, calls tools, observes results, and iterates toward a goal. Distinct from a single-shot prompt or a fixed chain. Operationally higher-risk: longer context windows, more tool failures, harder to evaluate.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/Compare-Chatbot-vs-RAG-vs-Agent"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#context-window",
      "name": "Context Window",
      "alternateName": ["context length", "context size"],
      "termCode": "context-window",
      "description": "Maximum number of tokens an LLM can attend to in a single forward pass. Hard limit on combined system prompt + retrieved context + user message + assistant output. Frontier models in 2026: 1M-2M tokens.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/data/ai-model-capability-matrix.json"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#prompt-caching",
      "name": "Prompt Caching",
      "alternateName": ["prefix cache", "KV cache reuse"],
      "termCode": "prompt-caching",
      "description": "Provider-side reuse of cached prefix tokens (system prompt + RAG context) across requests, charging at a discounted rate (10-75% off depending on vendor). Reduces cost for repeat-prefix workflows like RAG and agents.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#function-calling",
      "name": "Function Calling",
      "alternateName": ["tool use", "tool calling"],
      "termCode": "function-calling",
      "description": "LLM capability to emit structured JSON describing a function invocation (name + arguments) that the host application then executes. Foundation for agentic systems and integrations.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mcp",
      "name": "Model Context Protocol (MCP)",
      "alternateName": ["MCP", "Anthropic MCP"],
      "termCode": "mcp",
      "description": "Open protocol introduced by Anthropic (2024) for connecting LLMs to data sources and tools via standardized JSON-RPC messages. Transport: stdio or HTTP+SSE. Adopted by Claude Desktop, Smithery, and growing list of agent runtimes.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#eu-ai-act",
      "name": "EU AI Act",
      "alternateName": ["EU AI Act 2024/1689", "Artificial Intelligence Act"],
      "termCode": "eu-ai-act",
      "description": "European Union regulation establishing risk-based obligations for AI systems placed on or used in the EU market. Tiers: prohibited, high-risk, limited-risk, minimal. Phased effective dates 2025-02 (prohibitions) through 2027-08 (legacy GPAI).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/EU-AI-Act-Checklist", "https://www.slavin.ai/AI-Compliance-Calendar"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#152-fz",
      "name": "152-FZ (Russian Federal Law on Personal Data)",
      "alternateName": ["152-ФЗ", "Russia Personal Data Law", "Russia 152-FZ"],
      "termCode": "152-fz",
      "description": "Russian Federation federal law governing collection, processing, storage, and cross-border transfer of personal data of Russian citizens. 2025 amendments added explicit AI-processing notice obligations and tighter localization rules.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/152-FZ-Compliance-Checklist"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#gpai",
      "name": "General-Purpose AI (GPAI)",
      "alternateName": ["GPAI model", "foundation model"],
      "termCode": "gpai",
      "description": "EU AI Act category: AI model with significant generality, capable of performing a wide range of distinct tasks. Includes most frontier LLMs. Systemic-risk threshold triggers additional obligations (evaluations, red-teaming, incident reporting).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dpia",
      "name": "Data Protection Impact Assessment (DPIA)",
      "alternateName": ["DPIA", "Privacy Impact Assessment", "PIA"],
      "termCode": "dpia",
      "description": "GDPR Article 35 process for assessing privacy risks of high-risk processing. Required for systematic, large-scale processing of personal data — typical for production AI/RAG systems handling user data.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#multi-tenant",
      "name": "Multi-Tenant Architecture",
      "alternateName": ["multitenancy", "multi-tenant SaaS"],
      "termCode": "multi-tenant",
      "description": "Single application instance serving multiple isolated customers (tenants). For AI workloads: per-tenant context isolation, cost attribution, rate-limit partitioning, data-residency without infrastructure duplication.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.pro/en/Article-Multi-Tenant-SaaS"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#observability",
      "name": "AI Observability",
      "alternateName": ["LLM observability", "AI monitoring"],
      "termCode": "observability",
      "description": "Production monitoring for AI systems across 4 layers: performance (latency, throughput), quality (correctness, hallucination rate), cost (per-tenant per-provider), drift (input distribution, output distribution).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.pro/en/Article-AI-Observability"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#vertical-ai",
      "name": "Vertical AI",
      "alternateName": ["industry AI", "domain-specific AI"],
      "termCode": "vertical-ai",
      "description": "AI products built for a specific industry (legal, medical, hospitality) rather than broad horizontal use. Higher quality per task, narrower market, harder to commoditize. Common winner in 2025-2026 SaaS landscape.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.pro/en/Article-Vertical-AI"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#guardrails",
      "name": "AI Guardrails",
      "alternateName": ["LLM guardrails", "output filtering"],
      "termCode": "guardrails",
      "description": "Pre-output and post-output filtering layers that block, redirect, or modify LLM responses based on policy (PII redaction, prompt injection detection, output schema enforcement, toxicity filtering).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#evaluation",
      "name": "AI Evaluation (eval)",
      "alternateName": ["LLM eval", "eval set", "eval harness"],
      "termCode": "evaluation",
      "description": "Process of measuring AI system quality against a labeled dataset or LLM-as-judge benchmark. Required to detect regressions when changing prompts, models, or retrieval. Common tools: ragas, deepeval, promptfoo.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#adr",
      "name": "Architecture Decision Record (ADR)",
      "alternateName": ["ADR", "architectural decision record"],
      "termCode": "adr",
      "description": "Lightweight document capturing a single architectural decision, its context, the alternatives considered, the chosen option, and consequences. For AI: critical to record vendor choice, RAG topology, fine-tuning vs RAG decision.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hreflang",
      "name": "hreflang",
      "alternateName": ["hreflang attribute", "rel=alternate hreflang"],
      "termCode": "hreflang",
      "description": "HTML link attribute declaring the language and regional targeting of an alternate URL. BCP-47 codes (e.g. en-US, he-IL, ru-RU). Used by Google + Yandex to serve the right localized version in SERP.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#csp",
      "name": "Content Security Policy (CSP)",
      "alternateName": ["CSP header", "Content-Security-Policy"],
      "termCode": "csp",
      "description": "HTTP response header restricting which sources of scripts, styles, images, fonts, frames a browser will load. Defense-in-depth against XSS. `Report-Only` mode audits violations without blocking; `Enforce` mode actually blocks.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#hsts",
      "name": "HTTP Strict Transport Security (HSTS)",
      "alternateName": ["HSTS", "Strict-Transport-Security"],
      "termCode": "hsts",
      "description": "HTTP response header that tells browsers to only connect to a host over HTTPS for a specified duration. With `preload` directive, the host is shipped in Chrome/Firefox/Safari HSTS preload lists.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#core-web-vitals",
      "name": "Core Web Vitals",
      "alternateName": ["Web Vitals", "CWV"],
      "termCode": "core-web-vitals",
      "description": "Google's standardized page-experience metrics. LCP (Largest Contentful Paint — loading), INP (Interaction to Next Paint — responsiveness, replaced FID in 2024), CLS (Cumulative Layout Shift — visual stability). Confirmed ranking factors.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#llms-txt",
      "name": "llms.txt",
      "alternateName": ["llms-full.txt", "LLM crawler instructions"],
      "termCode": "llms-txt",
      "description": "Emerging convention (proposed 2024) for sites to publish LLM-friendly content boundaries and citation guidance at /llms.txt or /llms-full.txt. Analogous to robots.txt but oriented to AI training and runtime crawlers.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#schema-org",
      "name": "Schema.org",
      "alternateName": ["JSON-LD schema", "structured data"],
      "termCode": "schema-org",
      "description": "Shared vocabulary (W3C-endorsed, founded by Google/Microsoft/Yahoo/Yandex) for structured data on the web. Implemented via JSON-LD, Microdata, or RDFa. Foundation for SERP rich results and Knowledge Graph extraction.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dcat",
      "name": "Data Catalog Vocabulary (DCAT)",
      "alternateName": ["DCAT-AP", "W3C DCAT"],
      "termCode": "dcat",
      "description": "W3C standard vocabulary for describing data catalogs and datasets. Used by EU Open Data Portal, Google Dataset Search, OpenAIRE for harvesting. DCAT-AP is the European Application Profile.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/data/catalog.json"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#age-verification",
      "name": "Age Verification",
      "alternateName": ["age gate", "highly-effective age assurance", "HEAA"],
      "termCode": "age-verification",
      "description": "Process of confirming user is above an age threshold before granting access. UK OSA mandates 'highly-effective' methods (verified ID, AI-based age estimation with audit, credit-card check) for porn / gambling sites.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#dmca",
      "name": "DMCA (Digital Millennium Copyright Act)",
      "alternateName": ["DMCA takedown", "Section 512"],
      "termCode": "dmca",
      "description": "US federal law (1998) regulating copyright on the internet. Section 512 'safe harbor' protects platforms from liability for user-uploaded content if they comply with takedown notices. Foundation for content-moderation pipelines.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#mehina",
      "name": "Mechina (Mechina Kdam-Akademit)",
      "alternateName": ["Mechina", "מכינה", "Pre-Academic Program"],
      "termCode": "mehina",
      "description": "Israeli pre-academic preparatory program (1 year) bridging the gap between high-school Bagrut and university admission. Used by olim (new immigrants), candidates lacking specific subject Bagrut, and students aiming for elite programs.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.education/Schools"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#bagrut",
      "name": "Bagrut",
      "alternateName": ["בגרות", "Israeli Matriculation Certificate"],
      "termCode": "bagrut",
      "description": "Israeli matriculation certificate awarded for completing high-school with passing scores in mandatory and elective subjects. Required (or alternative path) for university admission in Israel.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.education/Diplomas"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#psychometry",
      "name": "Psychometric Exam (Psychometry)",
      "alternateName": ["Psychometry", "Psychometric Entrance Test", "פסיכומטרי"],
      "termCode": "psychometry",
      "description": "Standardized exam (Quantitative, Verbal, English) used as an admissions metric for Israeli universities. Combined with Bagrut into a composite score. Comparable in role to SAT/ACT in the US.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.education/About"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#aliyah",
      "name": "Aliyah",
      "alternateName": ["עלייה", "immigration to Israel"],
      "termCode": "aliyah",
      "description": "Hebrew term (literally 'ascent') for Jewish immigration to Israel. Carries legal/citizenship process via Law of Return and integration considerations (language, education, employment).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#chargeback",
      "name": "Chargeback",
      "alternateName": ["payment chargeback", "card dispute"],
      "termCode": "chargeback",
      "description": "Forced reversal of a card transaction initiated by the cardholder via their issuing bank. High chargeback ratio triggers MATCH list placement, processor termination, or reserve requirements. Critical risk for adult, gaming, and subscription verticals.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#high-risk-merchant",
      "name": "High-Risk Merchant Category",
      "alternateName": ["high-risk MCC", "high-risk vertical"],
      "termCode": "high-risk-merchant",
      "description": "Payment processor classification for merchants with elevated chargeback risk, regulatory exposure, or reputational concerns (adult, gambling, CBD, dating, supplements). Subject to higher fees, reserves, and tighter compliance terms.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#openapi",
      "name": "OpenAPI Specification",
      "alternateName": ["Swagger", "OAS"],
      "termCode": "openapi",
      "description": "Open standard for describing REST APIs in machine-readable form (JSON or YAML). Enables client codegen, documentation rendering, mock servers, and AI-agent discovery (ChatGPT Custom GPTs, Claude tools).",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://api.slatech.co.il/openapi/v1.json"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#knowledge-graph",
      "name": "Knowledge Graph",
      "alternateName": ["entity graph", "semantic knowledge graph"],
      "termCode": "knowledge-graph",
      "description": "Structured representation of real-world entities and their relationships, often using URIs as stable identifiers. Google Knowledge Graph powers Knowledge Panels; site-level KG endpoints (JSON-LD) feed citation engines and Wikidata extractors.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" },
      "sameAs": ["https://www.slavin.ai/.well-known/knowledge-graph.json"]
    },
    {
      "@type": "DefinedTerm",
      "@id": "https://www.slavin.ai/data/ai-glossary-network.json#orcid",
      "name": "ORCID iD",
      "alternateName": ["ORCID identifier", "Open Researcher and Contributor ID"],
      "termCode": "orcid",
      "description": "Persistent unique identifier for researchers (format 0000-0000-0000-000X). Free, non-proprietary, used by academic publishers, funders, and now LLM citation engines to disambiguate authors with common names.",
      "inDefinedTermSet": { "@id": "https://www.slavin.ai/data/ai-glossary-network.json" }
    }
  ],
  "totalTerms": 39,
  "lastReview": "2026-06-20",
  "nextReviewDate": "2026-12-20",
  "feedback": "Term incorrect or missing? Contact info@slavin.ai"
}
