From skills-for-fabric
Creates and evolves Fabric IQ Ontology items from CLI — define entity types, properties, timeseries, relationships, and bind them to OneLake lakehouse or Eventhouse tables using the Fabric REST API.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills-for-fabric:fabriciq-ontology-authoring-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Update Check — ONCE PER SESSION (mandatory)**
Update Check — ONCE PER SESSION (mandatory) The first time this skill is used in a session, run the check-updates skill before proceeding.
- GitHub Copilot CLI / VS Code: invoke the
check-updatesskill (e.g.,/fabric-skills:check-updates).- Claude Code / Cowork / Cursor / Windsurf / Codex: read the local
package.jsonversion, then compare against remote viagit fetch origin main --quiet && git show origin/main:package.json(or the GitHub API). If remote is newer, show the changelog and update instructions.- Skip if the check was already performed earlier in this session.
CRITICAL NOTES
- Ontology is preview. The item type value is
Ontology. Features and wire format may change; validate against the current docs before production use.- To find the workspace details (including its ID) from workspace name: list all workspaces and use JMESPath filtering.
- To find the item details (including its ID) from workspace ID, item type (
Ontology), and item name: list all items of that type in that workspace and use JMESPath filtering.- Authoring a relationship type requires two distinct entity types that already exist in the ontology. The
source.entityTypeIdandtarget.entityTypeIdvalues are the entity type IDs you assigned, not item IDs.- Data bindings reference a source table by
workspaceId,itemId,sourceTableName, and — for lakehouse sources —sourceSchema. Lakehouse (LakehouseTable) sources carry the lakehouse item ID; Eventhouse (KustoTable) sources carry the Eventhouse item ID plusclusterUrianddatabaseName. Key column(s) on the source side must match the entity type's key property(ies). Eventhouse sources areTimeSeries-only; the static (NonTimeSeries) binding must come from a lakehouse.
| Task | Reference | Notes |
|---|---|---|
| Finding Workspaces and Items in Fabric | COMMON-CLI.md § Finding Workspaces and Items in Fabric | Mandatory — resolve workspace/item IDs before authoring |
| Fabric Topology & Key Concepts | COMMON-CORE.md § Fabric Topology & Key Concepts | Workspace → Item hierarchy |
| Authentication & Token Acquisition | COMMON-CORE.md § Authentication & Token Acquisition | Use https://api.fabric.microsoft.com audience for control plane |
| Core Control-Plane REST APIs | COMMON-CORE.md § Core Control-Plane REST APIs | Create Item, Get/Update Item Definition |
| Long-Running Operations (LRO) | COMMON-CORE.md § Long-Running Operations (LRO) | Item create/update returns an LRO |
| Rate Limiting & Throttling | COMMON-CORE.md § Rate Limiting & Throttling | |
| Authentication Recipes | COMMON-CLI.md § Authentication Recipes | az login; token acquisition |
Fabric Control-Plane API via az rest | COMMON-CLI.md § Fabric Control-Plane API via az rest | Always pass --resource https://api.fabric.microsoft.com |
| Long-Running Operations (LRO) Pattern | COMMON-CLI.md § Long-Running Operations (LRO) Pattern | For Ontology create/update, poll /v1/operations/{x-ms-operation-id} on the Fabric host — see LRO Header Capture |
| Gotchas & Troubleshooting (CLI-Specific) | COMMON-CLI.md § Gotchas & Troubleshooting (CLI-Specific) | Token audience, shell escaping |
az rest Template | COMMON-CLI.md § az rest Template | |
| Definition Envelope (parts, payloadType) | ITEM-DEFINITIONS-CORE.md § Definition Envelope | InlineBase64 parts pattern used for Ontology |
| Ontology Definition Reference | ONTOLOGY-AUTHORING-CORE.md § Definition Tree | Authoritative file/folder layout for the ontology item |
| EntityType & EntityTypeProperty schema | ONTOLOGY-AUTHORING-CORE.md § EntityType file | Allowed valueType values, key constraints, name regex |
| DataBinding schema + source-type mapping | ONTOLOGY-AUTHORING-CORE.md § DataBinding file | Lakehouse & Eventhouse shapes; value-type mapping; binding rules |
| RelationshipType + Contextualization schema | ONTOLOGY-AUTHORING-CORE.md § RelationshipType file | Source/target constraints, link table requirements |
| Ontology Concepts | SKILL.md § Ontology Item Concepts | Entity types, properties, bindings, relationship types |
| Tool Stack | SKILL.md § Tool Stack | |
| Connection | SKILL.md § Connection | Discover workspace, lakehouse, ontology IDs |
| Authoring Scope | SKILL.md § Authoring Scope | Supported operations at a glance |
| Authoring Mechanics (full reference) | authoring-mechanics.md | Envelope, IDs, create, entity types, bindings, relationships, update, verify |
| Worked Examples | examples.md | End-to-end bash recipes (create → bind → relationship → timeseries) |
| Preview & Confirm (mandatory before LRO write) | preview-and-confirm.md | ASCII proposal (greenfield) / change-set diff (brownfield) |
| Script Templates | definition-script-templates.md | Bash / PowerShell fetch-mutate-send scaffolds |
| Must / Prefer / Avoid / Troubleshooting | SKILL.md § Must / Prefer / Avoid / Troubleshooting | LLM decision rules |
| Agentic Workflows | SKILL.md § Agentic Workflows | Exploration-before-authoring, script generation |
| Agent Integration Notes | SKILL.md § Agent Integration Notes | How this skill composes with agents / other skills |
A Fabric Ontology item is authored as a tree of JSON files inside the item definition. Each file is carried as a part in the parts[] array of the Create/Update definition envelope (payloadType InlineBase64).
| Concept | Definition file path | Purpose |
|---|---|---|
| Ontology envelope | definition.json | Empty {}; required |
| Platform metadata | .platform | { "metadata": { "type": "Ontology", "displayName": "<name>" } } |
| Entity type | EntityTypes/{entityTypeId}/definition.json | Name, namespace, key(s), display name property, properties[], timeseriesProperties[] |
| Entity type data binding | EntityTypes/{entityTypeId}/DataBindings/{guid}.json | Maps a lakehouse or eventhouse table to properties; dataBindingType = NonTimeSeries or TimeSeries. Eventhouse (KustoTable) sources are allowed only for TimeSeries |
| Entity type documents | EntityTypes/{entityTypeId}/Documents/{name}.json | Optional doc links |
| Entity type overviews | EntityTypes/{entityTypeId}/Overviews/definition.json | Optional widgets layout |
| Entity type resource links | EntityTypes/{entityTypeId}/ResourceLinks/definition.json | Optional Power BI / item links |
| Relationship type | RelationshipTypes/{relTypeId}/definition.json | Source + target entity type IDs, name |
| Relationship contextualization | RelationshipTypes/{relTypeId}/Contextualizations/{guid}.json | Source/target key bindings onto a lakehouse table |
Property valueType allowed values (exact): String, Boolean, DateTime, Object, BigInt, Double. Use BigInt — not Int64 — for integers; there is no Guid value type (model GUIDs as String). Timeseries bindings require a timestamp column (source type datetime / date / timestamp) and a TimeSeries binding with timestampColumnName. See ONTOLOGY-AUTHORING-CORE.md § EntityTypeProperty for the full source-column → valueType mapping.
⚠️ Property names must be unique across both
properties[]andtimeseriesProperties[]within a single entity type. If a lakehouse table and an Eventhouse table both contain a column with the same name (e.g.,tenant_id), you must rename one of the ontology property names to avoid a collision. ThesourceColumnNamein the binding can still point to the original column — only the ontology propertynamemust be unique. For example, keep the static property asTenantIdand name the timeseries oneTsTenantId.⚠️ Property names with the same
nameacross different entity types must share the samevalueType— the ontology enforces name-level type consistency across the entire definition. IfSerialNumisStringon one entity type, it cannot beBigInton another. Either use the samevalueTypeeverywhere, or disambiguate with a prefix (e.g.,SerialNumStrvsSerialNumInt).⚠️ Part paths must always use forward slashes (
EntityTypes/{id}/definition.json), never backslashes. On Windows, PowerShell path-joining operators (Join-Path,\) produce backslashes that the Fabric API rejects withALMOperationBadRequest. Always build part paths with string interpolation using/.
Ontology authoring uses the same Fabric control-plane tool stack as every other CLI skill — see COMMON-CLI.md § Tool Selection Rationale for the canonical list (install commands, prerequisite checks, base64 helpers, JSON tooling) and COMMON-CLI.md § Authentication Recipes for az login + token acquisition.
Ontology-specific tool guidance below covers only the gotchas that hit createItem / updateDefinition payloads.
⚠️ PowerShell
ConvertTo-JsonWarning: PowerShell'sConvertTo-Jsoncan silently reorder keys and serialize$nulldifferently than JSONnull, which can causeALMOperationImportFailederrors onupdateDefinition. To avoid this:
- Always use
[System.IO.File]::WriteAllTextwith[System.Text.UTF8Encoding]::new($false)to write JSON files —Out-FileandSet-Contentadd a BOM that corrupts the payload.- Build JSON with
jqinstead ofConvertTo-Jsonwhere possible —jq -ncproduces deterministic, compact JSON without PowerShell serialization quirks:$json = '{}' | jq -nc --arg id "$ET_ID" --arg name "Site" '{id:$id,name:$name}'- Validate the JSON before sending:
Get-Content envelope.json | jq .— ifjqfails, the payload is malformed.- Use
-Depth 10onConvertTo-Json— the default depth of 2 silently truncates nested objects.
⚠️ Avoid
certutil -encodeforInlineBase64parts. Its output is line-wrapped with a header/footer and must be post-processed before use. On Windows, use PowerShell's[Convert]::ToBase64String([IO.File]::ReadAllBytes($path))instead.
Ontology authoring targets the Fabric control plane. Before composing the definition you need: WS_ID (workspace), LH_ID (lakehouse item ID for static + lakehouse-timeseries bindings), and — for Eventhouse-backed timeseries — the Eventhouse item ID, KQL cluster URI, and KQL database name.
--resource https://api.fabric.microsoft.com).displayName → COMMON-CLI.md § Finding Workspaces and Items in Fabric (covers pagination + JMESPath filtering).az rest invocation template → COMMON-CLI.md § Fabric Control-Plane API via az rest.The Ontology-specific resolution gotchas (folder GUID vs. portal numeric ID, Eventhouse ID field mapping, schema discovery for bindings, LRO header capture on the preview redirect host) follow.
The folderId field on the Ontology create payload requires the folder GUID — not the numeric subfolderId shown in portal URLs. Passing the portal number fails with 400 InvalidParameter … cannot convert "<numeric>" to Guid … Path 'folderId'. Resolve the GUID by listing GET /v1/workspaces/{WS_ID}/folders (per COMMON-CLI.md § Finding Workspaces and Items in Fabric) and filter by displayName.
Ontology TimeSeries bindings backed by Eventhouse require three fields in the KustoTable data-binding payload — sourced from the KQL database record returned by GET /v1/workspaces/{WS_ID}/kqlDatabases:
| KustoTable binding field | Source field on the KQL-database record |
|---|---|
itemId | properties.parentEventhouseItemId — the Eventhouse item ID, not the KQL database's own id |
clusterUri | properties.queryServiceUri |
databaseName | displayName (use the canonical casing returned by the API) |
Eventhouse tables can back
TimeSeriesbindings only. The entity type's static (NonTimeSeries) binding must still come from a managed lakehouse table.
Common mistake: passing the KQL database's own
idas theKustoTable.itemId. UseparentEventhouseItemIdfrom the same record.
For the generic kqlDatabases listing call (pagination + JMESPath filter by displayName), see COMMON-CLI.md § Finding Workspaces and Items in Fabric.
Before composing bindings, discover the source table schemas so you map the correct column names. Use companion skills for schema discovery — they are faster and more reliable than raw REST calls.
sqldw-consumption-cli skill and query INFORMATION_SCHEMA.COLUMNS against the lakehouse SQL endpoint (returns all tables + columns in one query). If unavailable, fall back to the Fabric Tables REST API plus the OneLake Table API for Iceberg metadata.eventhouse-consumption-cli skill and run .show database schema as json (returns every table + column in a single response). For a single table, use .show table <name> schema as json.Use the column types returned here to fill valueType on each EntityTypeProperty — see the source-column → valueType mapping in ONTOLOGY-AUTHORING-CORE.md § EntityTypeProperty.
az restaz rest does not expose response headers by default. Both createItem and updateDefinition return 202 Accepted with an x-ms-operation-id header (and a Location header). Use --verbose and parse stderr to capture the operation id:
Prefer polling with
x-ms-operation-idover the rawLocationheader for Ontology create/update. The public Fabric LRO contract supports polling either theLocationheader orhttps://api.fabric.microsoft.com/v1/operations/{operationId}(fromx-ms-operation-id). In current Ontology preview behavior, observedLocationvalues point at ananalysis.windows.netredirect host (e.g.https://df-…-redirect.analysis.windows.net/v1/operations/{id}), notapi.fabric.microsoft.com; polling that URL withaz rest --resource https://api.fabric.microsoft.comre-authenticates against the wrong audience and fails with 401/403 — which hides the LRO status/error and leads to blind-retry loops. So capturex-ms-operation-idand pollhttps://api.fabric.microsoft.com/v1/operations/{operationId}(Fabric host, Fabric token). If you do followLocation, use the audience that URL requires.
# Bash — capture x-ms-operation-id from az rest --verbose stderr
OP_ID=$(az rest --method POST \
--url "https://api.fabric.microsoft.com/v1/workspaces/${WS_ID}/items" \
--resource "https://api.fabric.microsoft.com" \
--headers "Content-Type=application/json" \
--body @envelope.json --verbose 2>&1 \
| grep -oiP "(?<=x-ms-operation-id': ')[^']+")
# Poll the Fabric operations endpoint (stays on api.fabric.microsoft.com)
while :; do
OP=$(az rest --method GET \
--url "https://api.fabric.microsoft.com/v1/operations/${OP_ID}" \
--resource "https://api.fabric.microsoft.com")
STATUS=$(printf '%s' "$OP" | jq -r .status)
case "$STATUS" in
Succeeded) break ;;
Failed|Cancelled)
# Read the error and FIX the payload — never blind-retry the same body.
printf '%s' "$OP" | jq -r '.error | "\(.errorCode // .code): \(.message)"' >&2
exit 1 ;;
*) sleep 5 ;;
esac
done
# PowerShell — capture x-ms-operation-id from az rest --verbose stderr
$result = az rest --method POST `
--resource "https://api.fabric.microsoft.com" `
--url "https://api.fabric.microsoft.com/v1/workspaces/$WS_ID/items" `
--headers "Content-Type=application/json" `
--body "@envelope.json" --verbose 2>&1
$opId = ($result | Select-String -Pattern "x-ms-operation-id': '([^']+)'" |
ForEach-Object { $_.Matches[0].Groups[1].Value })
# Poll the Fabric operations endpoint (stays on api.fabric.microsoft.com)
do {
Start-Sleep -Seconds 5
$op = az rest --method GET `
--url "https://api.fabric.microsoft.com/v1/operations/$opId" `
--resource "https://api.fabric.microsoft.com" | ConvertFrom-Json
} while ($op.status -notin 'Succeeded','Failed','Cancelled')
if ($op.status -ne 'Succeeded') {
# Read .error and FIX the payload — never blind-retry the same body.
throw "createItem LRO $($op.status): $($op.error.errorCode) $($op.error.message)"
}
Important:
createItemreturns 202 with no response body —az restexits with code 0 and prints nothing. This is normal. After the operation reachesSucceeded, list items to capture the new item ID. IfstatusisFailed, theerrorfield names the cause (e.g. a malformed entity-type part) — fix the payload and submit a corrected request rather than re-sending the same body.
| Operation | Fabric REST Call | Definition Parts Touched |
|---|---|---|
| Create empty ontology | POST /v1/workspaces/{ws}/items with type=Ontology | .platform, definition.json |
| Add / alter entity type | POST /v1/workspaces/{ws}/items/{id}/updateDefinition | EntityTypes/{id}/definition.json |
| Bind entity type to table (non-timeseries) | updateDefinition | EntityTypes/{id}/DataBindings/{guid}.json with NonTimeSeries |
| Bind entity type to table (timeseries) | updateDefinition | EntityTypes/{id}/DataBindings/{guid}.json with TimeSeries + timestampColumnName |
| Add relationship type | updateDefinition | RelationshipTypes/{id}/definition.json |
| Bind relationship (contextualization) | updateDefinition | RelationshipTypes/{id}/Contextualizations/{guid}.json |
| Delete entity / relationship | updateDefinition with that path omitted from parts | — |
| Rename ontology | updateDefinition with updateMetadata=true and new .platform | .platform |
Update Item Definition replaces the full tree of included parts. Always fetch the current definition via
Get Item Definition, mutate the parts locally, and resend the complete desired set.
Full JSON shapes, field contracts, and verification recipes for each operation live in authoring-mechanics.md. Worked end-to-end bash recipes live in examples.md. Use the sections below as a quick index:
| Topic | Reference |
|---|---|
Definition envelope (parts[], InlineBase64, base64 helpers) | authoring-mechanics.md § Definition Envelope |
ID generation (64-bit ints, GUIDs, name → id map) | authoring-mechanics.md § ID Generation Pattern |
| Create empty ontology | authoring-mechanics.md § Create the Ontology Item |
| Add an entity type | authoring-mechanics.md § Add an Entity Type |
| Bind to lakehouse / eventhouse | authoring-mechanics.md § Bind an Entity Type |
| Relationship types + contextualizations | authoring-mechanics.md § Add a Relationship Type |
| Apply a definition update (fetch → mutate → send) | authoring-mechanics.md § Apply a Definition Update |
| Verify and inspect | authoring-mechanics.md § Verify and Inspect |
| Complete Bash / PowerShell scaffolds | definition-script-templates.md |
Core invariants to keep in mind when authoring (full detail in the reference files):
{ "displayName", "type": "Ontology", "definition": { "parts": [ { "path", "payload", "payloadType": "InlineBase64" } ] } }; definition.json is literally {}; .platform carries metadata.type: "Ontology" + displayName.name → id map in source control; never reuse an ID for a different concept.ID map template — persist this alongside your deployment scripts (JSON or YAML):
{
"ontologyName": "SkillTest_Fleet",
"entityTypes": {
"Site": { "id": "1048860412765431174", "properties": { "SiteId": "1428056703884423742", "SiteName": "4251708967918658190" } },
"Equipment": { "id": "3332700945676096991", "properties": { "EquipmentId": "4585483423451989345" } }
},
"relationshipTypes": {
"EquipmentAtSite": { "id": "4242053467032157032" }
},
"bindings": {
"Site_static": "25e3a44a-b62a-40e3-a64a-a43caaa92d19",
"Equipment_static": "5dc4cadd-3700-4c96-bb1e-41e4c909ae4d"
}
}
NonTimeSeries is lakehouse-only and at most one per entity type; a NonTimeSeries binding is required before any TimeSeries binding on the same entity type; TimeSeries can be lakehouse or Eventhouse; for KustoTable, itemId is the Eventhouse item ID (not the KQL database ID).source.entityTypeId and target.entityTypeId must be distinct and must reference entity types present in the parts tree.WS_ID and source item IDs before composing any binding — hardcoded GUIDs are a top-3 failure mode. Lakehouse bindings need the lakehouse itemId; eventhouse bindings need the eventhouse itemId, cluster URI, and database name.updateDefinition replaces included parts wholesale. Merging with stale local state silently drops recent changes. Handle the LRO 202 on getDefinition (poll and retrieve via the operation's result endpoint).name → id map for entity types, relationship types, and properties in source control alongside the skill consumer's repo. Regenerating IDs on every run creates duplicates and breaks references.NonTimeSeries) binding before any timeseries binding on an entity type — each entity type supports at most one static binding, and timeseries binding requires the static key property to already be populated.properties[] and timeseriesProperties[] within each entity type. When a lakehouse table and an Eventhouse table share a column name (e.g., tenant_id, device_id), rename the ontology timeseries property (e.g., TsTenantId) while keeping sourceColumnName pointing at the original column. Duplicate property names cause ALMOperationImportFailed.entityIdParts) to properties whose valueType is String or BigInt — other value types have not been accepted as keys in current preview behavior. This restriction is not documented on public Microsoft Learn; verify against your tenant before relying on it.EntityTypes/{id}/definition.json, never EntityTypes\{id}\definition.json. On Windows, Join-Path and \ produce backslashes that the Fabric API rejects. Build paths with string interpolation: "EntityTypes/$ET_ID/definition.json".Contributor on the workspace.Ontology (not OntologyPreview or similar) in both the envelope's type and the .platform metadata.getDefinition (brownfield) and obtain explicit yes from the user before calling createItem or updateDefinition. See preview-and-confirm.md. Anything other than yes means stop and revise; never partially apply.EntityTypes/{id}/... layout) and base64-encoding each file just before sending. This keeps diffs reviewable.getDefinition dump of an existing known-good ontology when onboarding, then mutating.NonTimeSeries bindings. Use Eventhouse (KustoTable) for high-volume telemetry on TimeSeries bindings, or mirror/shortcut the data into a lakehouse table if the team prefers a single source kind..ps1 or .sh script files — execute commands directly in the shell. Large generated scripts introduce escaping bugs, PowerShell parse errors, and are hard to debug when a single line fails. Build JSON with jq -nc, write to a temp file, and pass to az rest --body @file..platform or any part.Object / JSON properties as fully queryable — observed behavior today is that nested JSON bound to an Object property surfaces as an opaque payload rather than being addressable like a scalar. For nested payloads, keep the raw data in Eventhouse and bind only the addressable scalar fields. Verify with a getDefinition round-trip before promising downstream consumers a specific query shape.updateDefinition body are observed to be removed, but the skill should tell the user this is destructive and confirm before generating an envelope that drops parts.| Symptom | Likely Cause | Fix |
|---|---|---|
400 Bad Request on create — "Invalid item type" | Wrong item type string | Use "type": "Ontology" and metadata.type: Ontology in .platform |
400 InvalidItemType on createItem with type: Ontology | Tenant / workspace does not have Fabric IQ Ontology (preview) enabled | Surface to the user — do not retry. Ontology preview enrollment is required at the tenant level. |
400 InvalidParameter on create — Error converting value "<number>" to … Guid … Path 'folderId' | Passed the numeric subfolderId from a portal URL instead of the folder GUID | Resolve the folder GUID via GET /v1/workspaces/{WS_ID}/folders (see Connection § Folder) and pass that |
400 — "Invalid value type" on property | Using Int64 / Guid / Float as valueType | Allowed values are exactly String, Boolean, DateTime, Object, BigInt, Double |
400 — "Invalid identifier" on entity type / property | Name violates regex | Match ^[a-zA-Z][a-zA-Z0-9_-]{0,127}$; prefer the stricter 1–26 char portal rule to stay portable |
400 — "Source and target must differ" | Relationship points at the same entity type twice | Choose distinct source/target entity types |
400 — "Referenced property not found" | targetPropertyId doesn't match any property in the entity type | Check IDs; ensure property was added in the same update |
400 — "Time series binding requires existing static binding" | Timeseries binding added before the static binding on an entity type | Add a NonTimeSeries binding with the key property first, then the TimeSeries binding |
400 — key column issue | Key property valueType is not String or BigInt | Change the property to String / BigInt, or choose a different key |
404 on binding | workspaceId / itemId wrong, or source item deleted | Re-resolve IDs via list items / list lakehouses / list eventhouses |
| Binding accepted but no instances appear | Source is external table, column-mapped delta, or OneLake-secured | Rebuild the table as a managed delta table without column mapping; remove OneLake security on the lakehouse |
| Instances empty after binding | propertyBindings column names don't match source columns | Inspect the source schema and fix sourceColumnName / sourceSchema |
| New upstream rows not appearing | No refresh performed | Trigger a manual graph-model refresh on the ontology item |
| Timeseries widget shows no data | timestampColumnName not set, or timestamp column is not a supported date/time type | Set timestampColumnName in the TimeSeries binding; ensure column type is datetime / date / timestamp |
getDefinition returns 200 or 202 | LRO-capable response (may be inline envelope or operation-id) | If 202, poll the operation until Succeeded, then GET https://api.fabric.microsoft.com/v1/operations/{operationId}/result; if 200, parse the returned envelope directly — see LRO Header Capture |
LRO poll returns 401/403, or the Location header host is *.analysis.windows.net | The create/update Location redirects to an Analysis Services host; polling it with az rest --resource https://api.fabric.microsoft.com re-auths against the wrong audience | Poll https://api.fabric.microsoft.com/v1/operations/{x-ms-operation-id} on the Fabric host instead of following the Location URL — see LRO Header Capture. Do not blind-retry the create while the poll is failing |
Conflict on updateDefinition | Concurrent edit from the portal | Re-fetch definition, re-apply mutations, resend |
ALMOperationImportFailed on updateDefinition | Malformed JSON payload — often caused by PowerShell ConvertTo-Json serialization quirks ($null vs null, key reordering, BOM in file) | Build JSON with jq -nc instead of ConvertTo-Json; write files with [System.IO.File]::WriteAllText + UTF8Encoding($false) to avoid BOM; validate with jq . before sending — see Tool Stack § PowerShell Warning |
ALMOperationImportFailed on createItem or updateDefinition — duplicate property name | A property name appears in both properties[] and timeseriesProperties[] on the same entity type | Property names must be unique across both arrays. If a lakehouse and Eventhouse table share a column name, rename the timeseries ontology property (e.g., TenantId → TsTenantId) — the binding's sourceColumnName can still reference the original column |
ALMOperationImportFailed — "Property 'X' has conflicting value types" | The same property name appears on two different entity types with different valueType values (e.g., String on one, BigInt on another) | Property names are unique across the entire ontology — if two entity types share a property name, both must use the same valueType. Disambiguate with a prefix (e.g., SerialNumStr vs SerialNumInt) or unify the type |
ALMOperationBadRequest — "directory name … is not valid for EntityType" | Part path uses backslashes (EntityTypes\\{id}\\definition.json) instead of forward slashes | Always use forward slashes in part paths: EntityTypes/{id}/definition.json. On Windows, avoid Join-Path or \ for part paths — use string interpolation with / |
createItem returns exit code 0 but no output | Normal — createItem returns 202 Accepted with no body; az rest treats this as success | List items after the LRO completes to capture the new item ID; use --verbose to capture the x-ms-operation-id header for LRO polling |
409 ItemDisplayNameAlreadyInUse on createItem | Ontology with the same displayName already exists in the workspace | List existing ontologies first; delete or rename the existing one, or choose a different name |
definition.json payload causes import error | Extra whitespace, BOM, or newlines in the base64 payload | definition.json must be exactly {} — its base64 is e30=. On Windows, ensure no BOM by using [System.IO.File]::WriteAllText with UTF8Encoding($false) |
⚠️ Do NOT generate monolithic
.ps1/.shscript files. Execute each step directly in the shell as individual commands. Generating a large script file introduces escaping bugs, parse errors, and property-access issues that are hard to debug. Instead:
- Run
az rest,jq, and PowerShell commands directly in the terminal- Build JSON payloads incrementally using
jq -ncpiped through variables- Write the final envelope to a temp file, then pass it to
az rest --body @file- If a step fails, fix it and re-run — don't regenerate the entire script
Greenfield vs brownfield execution strategy:
- Greenfield (new ontology): Build the complete definition — entity types, bindings, relationships, contextualizations, timeseries — as a single
createItemcall with all parts in one envelope. This is faster and avoids intermediate states. ThecreateItempayload accepts the fulldefinition.parts[]array, not just.platform+definition.json.- Brownfield (updating existing): Execute incrementally — fetch the current definition, mutate, send. Verify with
getDefinitionafter eachupdateDefinitionto catch errors early. A failure partway through preserves prior progress.
When the ontology binds to multiple data sources (lakehouse tables + Eventhouse tables), discover schemas in parallel rather than sequentially. Launch separate discovery tasks that run concurrently:
┌─────────────────────────────────────────────────────────────────┐
│ ORCHESTRATOR (this skill) │
│ │
│ Step 0 → Resolve workspace, folder, lakehouse ID, eventhouse ID │
│ │
│ Step 1 → Fan out schema discovery (parallel): │
│ ┌──────────────────────────┐ ┌────────────────────────────┐ │
│ │ TASK A: Lakehouse schemas │ │ TASK B: Eventhouse schemas │ │
│ │ sqldw-consumption-cli │ │ eventhouse-consumption-cli │ │
│ │ or INFORMATION_SCHEMA │ │ or .show database schema │ │
│ │ → all tables + columns │ │ → all tables + columns │ │
│ └──────────┬───────────────┘ └──────────┬─────────────────┘ │
│ │ │ │
│ Step 2 → Merge schemas ◄────────────────────┘ │
│ - Match entity tables (lakehouse) to telemetry (eventhouse) │
│ - Detect property name collisions across sources │
│ - Detect property type conflicts across entity types │
│ - Rename collisions (e.g., TenantId → TsTenantId) │
│ │
│ Step 3 → Propose model → PREVIEW & CONFIRM │
│ │
│ Step 4 → Build full envelope → createItem (single call) │
└─────────────────────────────────────────────────────────────────┘
How to fan out (agent-specific):
task agents — one for lakehouse (sqldw-consumption-cli or INFORMATION_SCHEMA.COLUMNS query), one for Eventhouse (.show database schema as json). Read both results when they complete.The merge step (Step 2) is where most authoring bugs are caught — deduplicate property names, unify valueType across entities, and prefix timeseries properties that collide with static ones.
Step 0 → Is the request specific? Are the entity types, keys, and lakehouse tables named?
→ NO → Ask: "Which entity types? What is the key of each? Which lakehouse table binds to each?
Any timeseries properties? Any relationships and their link tables?"
STOP — do not proceed until the user answers.
→ YES → Continue.
Step 1 → Resolve IDs: workspace, folder, lakehouse, eventhouse [COMMON-CLI.md]
Step 2 → Discover source schemas (parallel where possible):
a. Lakehouse: invoke `sqldw-consumption-cli` or query INFORMATION_SCHEMA.COLUMNS
b. Eventhouse: invoke `eventhouse-consumption-cli` or run `.show database schema as json`
Step 3 → Merge schemas: detect property name collisions + type conflicts; rename as needed
Step 4 → If ontology exists: getDefinition → decode parts (capture current IDs)
Else: plan `createItem` with the FULL definition (all parts in one call).
Step 5 → For each entity type:
a. Generate/reuse 64-bit IDs for entity + properties
b. Build EntityTypes/{id}/definition.json
c. Build one or two DataBindings/{guid}.json files
Step 6 → For each relationship:
a. Confirm both entity types exist in Step 5 output
b. Generate/reuse relationship type ID
c. Build RelationshipTypes/{id}/definition.json
d. Build RelationshipTypes/{id}/Contextualizations/{guid}.json
Step 7 → Base64-encode all parts; assemble envelope
Step 8 → **PREVIEW & CONFIRM** — render proposal (greenfield) or change-set diff (brownfield)
and obtain explicit `yes` from the user. See [preview-and-confirm.md](references/preview-and-confirm.md).
Do not proceed on anything other than `yes`.
Step 9 → createItem OR updateDefinition (LRO)
Step 10 → Poll LRO until Succeeded; getDefinition; verify IDs and bindings; persist post-write snapshot for next-run diff
Step 1 → Capture user intent (entity types, keys, properties, relationships, source tables)
Step 2 → Save intent as a YAML/JSON spec in the consumer's repo — single source of truth
Step 3 → Generate: (a) the ID map, (b) per-file JSON parts, (c) the composite envelope
Step 4 → **PREVIEW & CONFIRM** — render proposal/diff and require explicit `yes`
(see [preview-and-confirm.md](references/preview-and-confirm.md)). The textual
diff against the last-applied envelope snapshot feeds the brownfield change-set.
Step 5 → Apply via az rest --body @envelope.json (createItem or updateDefinition)
Step 6 → Poll LRO; on success, commit the envelope snapshot + ID map
End-to-end worked examples (create empty ontology → add entity type + non-timeseries binding → add relationship type + contextualization → add timeseries property + Eventhouse binding) live in examples.md. Complete fetch-mutate-send bash and PowerShell scripts live in definition-script-templates.md.
sqldw-consumption-cli task for lakehouse schemas (INFORMATION_SCHEMA.COLUMNS) — returns all tables + columns in one query.eventhouse-consumption-cli task for Eventhouse schemas (.show database schema as json) — returns all tables + columns in one call.properties[] and timeseriesProperties[], unify valueType for same-named properties across entity types, and prefix collisions before building the envelope.FabricDataEngineer) rather than chaining skills directly.3plugins reuse this skill
First indexed Jun 26, 2026
npx claudepluginhub microsoft/skills-for-fabric --plugin skills-for-fabricCreates and evolves Fabric IQ Ontology items from CLI — define entity types, properties, timeseries, relationships, and bind them to OneLake lakehouse or Eventhouse tables using the Fabric REST API.
Builds, validates, governs RDF/OWL ontologies and knowledge graphs using Open Ontologies MCP server with Oxigraph triple store. For creating, modifying, querying, or managing RDF data.
Query, filter, and mutate Palantir Foundry Ontology objects using the SDK and OSDK. Useful for building Ontology-driven applications with actions and links.