> ## Documentation Index
> Fetch the complete documentation index at: https://notes.kodekloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# What Is Knowledge Store

> Explains Azure AI Search Knowledge Store storing extracted insights from documents as structured projections for analytics, search, and integration.

Imagine a large library that holds thousands of books, research papers, PDFs, and digital articles. A Knowledge Store is the programmatic equivalent of that library: a structured repository that stores the insights extracted from documents processed by Azure AI Search. The inputs can be PDFs, scanned images, Word files, or other document types, but the Knowledge Store retains the extracted meaning—entities, topics, summaries—not just the raw files.

Historically, physical libraries used cataloging systems (titles, alternate names, ISBNs) to index books. In modern data systems, structured metadata plays the same role. A Knowledge Store extends cataloging by persisting richer enrichment outputs: themes, summaries, legal clauses, named entities, sentiment scores, and more. This enables search beyond keywords: analytics, visualization, and linking insights across documents to generate business intelligence from unstructured content.

<Frame>
  <img src="https://mintcdn.com/kodekloud-c4ac6d9a/7g-qmuxjf3Ai5zdm/images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/azure-ai-search-knowledge-store-metadata.jpg?fit=max&auto=format&n=7g-qmuxjf3Ai5zdm&q=85&s=e72927b45e482447aad94558e5b7f0d7" alt="A slide titled &#x22;Knowledge Store&#x22; showing an Azure AI Search cloud icon feeding a Knowledge Store icon with an arrow. Bullet points list extracted items: Topics, Author names, Publication years, and Summaries." width="1920" height="1080" data-path="images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/azure-ai-search-knowledge-store-metadata.jpg" />
</Frame>

How it works at a high level:

* Azure AI Search processes your content through an indexing pipeline that can include enrichment skills (OCR, entity recognition, key phrase extraction, custom skills, etc.).
* The enrichment output is persisted in the Knowledge Store as structured artifacts called projections.
* Those persisted projections become the canonical source of extracted intelligence, ready for query, analytics, or integration with downstream systems.

Every time you process a document—contract, report, article—the key insights (phrases, named entities, topics, sentiment, summaries, etc.) can be saved. Think of the Knowledge Store as the central place where extracted intelligence lives and can be consumed by BI tools, applications, or data pipelines.

<Frame>
  <img src="https://mintcdn.com/kodekloud-c4ac6d9a/7g-qmuxjf3Ai5zdm/images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/knowledge-store-retained-insights.jpg?fit=max&auto=format&n=7g-qmuxjf3Ai5zdm&q=85&s=d46fb6896dff030d72341097d4b94501" alt="The slide titled &#x22;Knowledge Store&#x22; highlights point 1: &#x22;Retained Insights from Indexing Process,&#x22; accompanied by an illustration of connected servers and analytics screens. A caption states it stores extracted insights from the indexing process for further analysis." width="1920" height="1080" data-path="images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/knowledge-store-retained-insights.jpg" />
</Frame>

Storage and projection types

Knowledge Store projections are written into Azure Storage and are delivered in three projection types. Choosing the right projection type determines how easy it is for downstream consumers to analyze and integrate the data.

| Projection type |                                                  Primary use case | Typical format / example                                                 |
| --------------- | ----------------------------------------------------------------: | ------------------------------------------------------------------------ |
| Tables          | Analytical workflows and relational queries (joins, aggregations) | CSV or Azure Table-like relational rows for topics, entities, counts     |
| Objects         |                Application consumption and complex nested results | JSON documents capturing full enrichment results or nested entities      |
| Files           |                              Access to extracted binary artifacts | Images, OCR text files, or any binary artifacts extracted from documents |

This separation lets data engineers and analysts pick the interface they need:

* Run SQL-style queries and joins against Tables for reporting and BI.
* Parse Objects (JSON) when you need full enrichment contexts or nested structures.
* Access Files when you require the original extracted images, OCR outputs, or binary artifacts.

<Frame>
  <img src="https://mintcdn.com/kodekloud-c4ac6d9a/7g-qmuxjf3Ai5zdm/images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/knowledge-store-azure-tables-json-files.jpg?fit=max&auto=format&n=7g-qmuxjf3Ai5zdm&q=85&s=5f83120dd692bff55501d8c3d9d2901f" alt="A presentation slide titled &#x22;Knowledge Store&#x22; showing that data is stored as projections in Azure Storage. It lists three projection types—Tables (relational), Objects (JSON), and Files (extracted images)—and includes a diagram of a data pipeline feeding those stores." width="1920" height="1080" data-path="images/AI-102-Microsoft-Certified-Azure-AI-Engineer-Associate/Creating-a-Knowledge-Store/What-Is-Knowledge-Store/knowledge-store-azure-tables-json-files.jpg" />
</Frame>

Practical uses and benefits

* Feed enriched data into dashboards to surface trends (e.g., most researched topics, frequently cited sources).
* Support BI workflows by joining enriched metadata with other enterprise datasets.
* Trigger automation and downstream workflows based on detected clauses, named entities, or sentiment.
* Maintain an auditable, queryable trail of enrichment outputs for compliance, review, or traceability.

<Callout icon="lightbulb" color="#1CB2FE">
  Tip: Use Table projections for fast analytics and aggregation; keep Object projections for scenarios that require the full enrichment context (for example, multi-level entities or provenance metadata).
</Callout>

<Callout icon="warning" color="#FF6B6B">
  Warning: Projections may contain sensitive data extracted from documents. Ensure your Knowledge Store storage and access policies comply with your organization’s security, privacy, and retention requirements.
</Callout>

Links and references

* [Azure Cognitive Search (documentation)](https://learn.microsoft.com/azure/search/)
* [Indexers, skillsets, and enrichment in Azure Cognitive Search](https://learn.microsoft.com/azure/search/search-indexer-overview)
* [Azure Storage documentation](https://learn.microsoft.com/azure/storage/)

In summary, a Knowledge Store converts unstructured document corpora into structured, queryable, and actionable datasets. It transforms a simple searchable collection into an intelligently organized knowledge repository that supports search, analytics, automation, and compliance.

<CardGroup>
  <Card title="Watch Video" icon="video" cta="Learn more" href="https://learn.kodekloud.com/user/courses/ai-102-microsoft-certified-azure-ai-engineer-associate/module/e7fb804b-f0e4-48cb-9a9f-756ea9bf2386/lesson/c7f06415-6a7a-4473-8f01-bd651ba348e5" />
</CardGroup>
