Microsoft Fabric IQ
Fabric IQ (preview) is a Fabric workload for unifying data across OneLake and organizing it according to your business vocabulary. It exposes data to analytics, AI agents, and applications with consistent semantic meaning and context.
When to Use This Skill
- Creating or managing ontology items in Fabric IQ
- Defining entity types, properties, and relationship types
- Binding data from lakehouses, eventhouses, or semantic models to ontologies
- Generating ontologies from Power BI semantic models
- Configuring Fabric data agents with ontology as a source
- Working with Graph in Microsoft Fabric for traversals and graph queries
- Enabling Fabric IQ tenant settings in the admin portal
- Querying ontology graphs using the preview experience
- Building operations agents that reason across business concepts
- remediate ontology creation, data binding, or agent integration issues
- Automating Fabric IQ items via REST API or PowerShell
Prerequisites
- A Fabric workspace with a Microsoft Fabric-enabled capacity (F2+ or P1+)
- Required tenant settings enabled (see tenant-settings.md)
- Data in OneLake (lakehouse tables), an eventhouse, or Power BI semantic models
Fabric IQ Items Overview
Fabric IQ contains five items that work together:
| Item |
Purpose |
Shared With |
| Ontology (preview) |
Enterprise vocabulary and semantic layer — entity types, relationships, properties, data bindings |
IQ only |
| Graph in Microsoft Fabric (preview) |
Native graph storage/compute for nodes, edges, traversals, path finding |
Real-Time Intelligence |
| Fabric data agent (preview) |
Conversational Q&A using generative AI, grounded in ontology |
Data Science |
| Operations agent (preview) |
AI agent to monitor real-time data and recommend actions |
Real-Time Intelligence |
| Power BI semantic model |
Curated analytics model for reporting and DAX |
Power BI |
Choosing the Right Item
| Scenario |
Use |
| Cross-domain consistency, governance, AI agent grounding |
Ontology |
| Relationship-heavy questions (impact chains, shortest paths) |
Graph |
| Trusted KPIs and fast visuals with dimensional modeling |
Power BI semantic model |
| Operational context, stateful twins, what-if simulation |
Digital twin builder (Real-Time Intelligence) |
Step-by-Step Workflows
Workflow 1: Create an Ontology from OneLake
For the complete walkthrough with all field mappings, see ontology-workflows.md.
- Navigate to your Fabric workspace and select + New item > Ontology (preview)
- Name the ontology (letters, numbers, underscores only — no spaces or dashes)
- Add entity types from the ribbon or canvas
- Bind static or time series data from OneLake sources
- Set entity type keys (unique identifier properties)
- Create relationship types between entity types and bind them to source data
- Use the preview experience to explore entity instances and the ontology graph
Workflow 2: Generate an Ontology from a Semantic Model
For the complete walkthrough, see ontology-workflows.md.
- Navigate to your Power BI semantic model in Fabric
- Select Generate Ontology from the ribbon
- Choose workspace and name the ontology
- Verify generated entity types, bindings, and relationship types
- Configure any incomplete relationship bindings manually
Workflow 3: Connect an Ontology to a Data Agent
For the complete walkthrough, see ontology-workflows.md.
- Create a Data agent item in your workspace
- Add the ontology as a knowledge source
- Add agent instructions (e.g.,
Support group by in GQL)
- Test queries in the agent chat to validate semantic grounding
Workflow 4: Validate Tenant Prerequisites
Run the prereq validation script to check your environment:
./scripts/Validate-FabricIQPrereqs.ps1 -TenantId "your-tenant-id"
Key Concepts
Ontology Core Concepts
| Concept |
Description |
| Entity type |
Represents a real-world concept (e.g., Customer, Truck, Sensor) |
| Property |
A fact about an entity type (e.g., name, email, temperature) |
| Entity type key |
Unique identifier property for entity instances |
| Relationship type |
Semantic connection between entity types (e.g., "drives", "has", "soldIn") |
| Data binding |
Connects ontology definitions to concrete OneLake data sources |
| Ontology graph |
Queryable instance graph built from data bindings and relationships |
Data Binding Types
| Type |
Use Case |
Example |
| Static |
Descriptive attributes that change infrequently |
Store locations, product catalog |
| Time series |
Timestamped observations in columnar format |
Sensor telemetry, temperature readings |
Naming Constraints
| Element |
Rules |
| Ontology name |
Letters, numbers, underscores. No spaces or dashes |
| Entity type name |
1-26 chars, alphanumeric + hyphens + underscores, start/end alphanumeric |
| Property name |
1-26 chars, alphanumeric + hyphens + underscores, unique across entity types for same type |
REST API Support
The Fabric REST API supports ontology CRUD operations:
| Operation |
Supported |
| Create (without definition) |
Yes |
| Create (with payload/definition) |
Yes |
| Service principal support |
Yes |
| Get |
Yes |
| Update |
Yes |
| Delete |
Yes |
| List |
Yes |
Use the Fabric CLI for command-line operations:
pip install ms-fabric-cli
fab auth login
remediate
For the full remediate guide, see remediate.md.
| Issue |
Quick Fix |
| Unable to create ontology item |
Enable all required tenant settings |
| Graph errors on new ontology |
Enable User can create Graph (preview) tenant setting |
| Data agent 403 Forbidden |
Enable Copilot and Azure OpenAI tenant settings |
| Generated ontology has no entity types |
Ensure semantic model tables are visible (not hidden) |
| Generated ontology has no data bindings |
Check semantic model mode — Import mode not supported |
| Decimal properties return null |
Recreate property as Double type |
| Aggregation queries fail in data agent |
Add instruction: Support group by in GQL |
References
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: fabric-iq3description: Guide for working with Microsoft Fabric IQ (preview), the semantic intelligence workload for unified data and business vocabulary. Use when creating or managing ontology items, defining entity types, binding data to ontologies, creating relationship types, configuring data agents with ontology sources, working with Graph in Microsoft Fabric, managing Fabric IQ tenant settings, querying ontology graphs, generating ontologies from Power BI semantic models, or remediate Fabric IQ preview features. Covers ontology, graph, data agent, operations agent, and semantic model items. Use when this capability is needed.4---56# Microsoft Fabric IQ78Fabric IQ (preview) is a Fabric workload for unifying data across OneLake and organizing it according to your business vocabulary. It exposes data to analytics, AI agents, and applications with consistent semantic meaning and context.910## When to Use This Skill1112- Creating or managing **ontology** items in Fabric IQ13- Defining **entity types**, **properties**, and **relationship types**14- **Binding data** from lakehouses, eventhouses, or semantic models to ontologies15- **Generating ontologies** from Power BI semantic models16- Configuring **Fabric data agents** with ontology as a source17- Working with **Graph in Microsoft Fabric** for traversals and graph queries18- Enabling **Fabric IQ tenant settings** in the admin portal19- Querying ontology graphs using the **preview experience**20- Building **operations agents** that reason across business concepts21- remediate ontology creation, data binding, or agent integration issues22- Automating Fabric IQ items via **REST API** or **PowerShell**2324## Prerequisites25261. A Fabric workspace with a Microsoft Fabric-enabled capacity (F2+ or P1+)272. Required tenant settings enabled (see [tenant-settings.md](./references/tenant-settings.md))283. Data in OneLake (lakehouse tables), an eventhouse, or Power BI semantic models2930## Fabric IQ Items Overview3132Fabric IQ contains five items that work together:3334| Item | Purpose | Shared With |35|------|---------|-------------|36| **Ontology (preview)** | Enterprise vocabulary and semantic layer — entity types, relationships, properties, data bindings | IQ only |37| **Graph in Microsoft Fabric (preview)** | Native graph storage/compute for nodes, edges, traversals, path finding | Real-Time Intelligence |38| **Fabric data agent (preview)** | Conversational Q&A using generative AI, grounded in ontology | Data Science |39| **Operations agent (preview)** | AI agent to monitor real-time data and recommend actions | Real-Time Intelligence |40| **Power BI semantic model** | Curated analytics model for reporting and DAX | Power BI |4142### Choosing the Right Item4344| Scenario | Use |45|----------|-----|46| Cross-domain consistency, governance, AI agent grounding | **Ontology** |47| Relationship-heavy questions (impact chains, shortest paths) | **Graph** |48| Trusted KPIs and fast visuals with dimensional modeling | **Power BI semantic model** |49| Operational context, stateful twins, what-if simulation | **Digital twin builder** (Real-Time Intelligence) |5051## Step-by-Step Workflows5253### Workflow 1: Create an Ontology from OneLake5455For the complete walkthrough with all field mappings, see [ontology-workflows.md](./references/ontology-workflows.md#from-onelake).56571. Navigate to your Fabric workspace and select **+ New item > Ontology (preview)**582. Name the ontology (letters, numbers, underscores only — no spaces or dashes)593. Add entity types from the ribbon or canvas604. Bind static or time series data from OneLake sources615. Set entity type keys (unique identifier properties)626. Create relationship types between entity types and bind them to source data637. Use the **preview experience** to explore entity instances and the ontology graph6465### Workflow 2: Generate an Ontology from a Semantic Model6667For the complete walkthrough, see [ontology-workflows.md](./references/ontology-workflows.md#from-semantic-model).68691. Navigate to your Power BI semantic model in Fabric702. Select **Generate Ontology** from the ribbon713. Choose workspace and name the ontology724. Verify generated entity types, bindings, and relationship types735. Configure any incomplete relationship bindings manually7475### Workflow 3: Connect an Ontology to a Data Agent7677For the complete walkthrough, see [ontology-workflows.md](./references/ontology-workflows.md#data-agent).78791. Create a **Data agent** item in your workspace802. Add the ontology as a **knowledge source**813. Add agent instructions (e.g., `Support group by in GQL`)824. Test queries in the agent chat to validate semantic grounding8384### Workflow 4: Validate Tenant Prerequisites8586Run the [prereq validation script](./scripts/Validate-FabricIQPrereqs.ps1) to check your environment:8788```powershell89./scripts/Validate-FabricIQPrereqs.ps1 -TenantId "your-tenant-id"90```9192## Key Concepts9394### Ontology Core Concepts9596| Concept | Description |97|---------|-------------|98| **Entity type** | Represents a real-world concept (e.g., Customer, Truck, Sensor) |99| **Property** | A fact about an entity type (e.g., name, email, temperature) |100| **Entity type key** | Unique identifier property for entity instances |101| **Relationship type** | Semantic connection between entity types (e.g., "drives", "has", "soldIn") |102| **Data binding** | Connects ontology definitions to concrete OneLake data sources |103| **Ontology graph** | Queryable instance graph built from data bindings and relationships |104105### Data Binding Types106107| Type | Use Case | Example |108|------|----------|---------|109| **Static** | Descriptive attributes that change infrequently | Store locations, product catalog |110| **Time series** | Timestamped observations in columnar format | Sensor telemetry, temperature readings |111112### Naming Constraints113114| Element | Rules |115|---------|-------|116| Ontology name | Letters, numbers, underscores. No spaces or dashes |117| Entity type name | 1-26 chars, alphanumeric + hyphens + underscores, start/end alphanumeric |118| Property name | 1-26 chars, alphanumeric + hyphens + underscores, unique across entity types for same type |119120## REST API Support121122The Fabric REST API supports ontology CRUD operations:123124| Operation | Supported |125|-----------|-----------|126| Create (without definition) | Yes |127| Create (with payload/definition) | Yes |128| Service principal support | Yes |129| Get | Yes |130| Update | Yes |131| Delete | Yes |132| List | Yes |133134Use the Fabric CLI for command-line operations:135136```bash137pip install ms-fabric-cli138fab auth login139```140141## remediate142143For the full remediate guide, see [remediate.md](./references/remediate.md).144145| Issue | Quick Fix |146|-------|-----------|147| Unable to create ontology item | Enable all required tenant settings |148| Graph errors on new ontology | Enable **User can create Graph (preview)** tenant setting |149| Data agent 403 Forbidden | Enable Copilot and Azure OpenAI tenant settings |150| Generated ontology has no entity types | Ensure semantic model tables are visible (not hidden) |151| Generated ontology has no data bindings | Check semantic model mode — Import mode not supported |152| Decimal properties return null | Recreate property as Double type |153| Aggregation queries fail in data agent | Add instruction: `Support group by in GQL` |154155## References156157- [Tenant Settings & Prerequisites](./references/tenant-settings.md)158- [Ontology Workflows (Detailed)](./references/ontology-workflows.md)159- [remediate Guide](./references/remediate.md)160- [Prereq Validation Script](./scripts/Validate-FabricIQPrereqs.ps1)161- [Ontology Template](./templates/ontology-design-template.md)162- [Microsoft Learn: Fabric IQ Overview](https://learn.microsoft.com/en-us/fabric/iq/overview)163- [Microsoft Learn: Ontology Overview](https://learn.microsoft.com/en-us/fabric/iq/ontology/overview)164- [Sample Data: IQ Samples on GitHub](https://github.com/microsoft/fabric-samples/tree/main/docs-samples/iq)165166---167> Converted and distributed by [TomeVault](https://tomevault.io/claim/patrickgallucci) — claim your Tome and manage your conversions.168<!-- tomevault:4.0:skill_md:2026-04-13 -->