Edit

Share via


Integrate with OneLake catalog

Configure your Fabric items to appear in OneLake Catalog with proper categorization and DataHub support.

Configuration

Configure in your item's Item.json:

{
  "name": "MyDataItem",
  "displayName": "My Data Item", 
  "oneLakeCatalogCategory": ["Data", "Process"],
  "supportedInDatahubL1": true
}

Categories

Each item can have up to 2 categories from:

  • Data: Data storage and management
  • Insight: Analytics and reporting
  • Process: Data processing and transformation
  • Solution: Complete applications
  • Configuration: Setup and configuration
  • Other: Items that don't fit other categories
{
  "oneLakeCatalogCategory": ["Data"]
}
{
  "oneLakeCatalogCategory": ["Process", "Insight"]
}

DataHub support

Enable DataHub L1 filtering:

{
  "supportedInDatahubL1": true
}

Important notes

  • No category specified: Items won't appear in OneLake Catalog
  • Category limit: Maximum 2 categories per item
  • DataHub integration: Enable supportedInDatahubL1 for data-related items

Next steps