{% extends "base.html" %} {% block title %}Data Mesh Domains — ICDEV{% endblock %} {% block content %}
Design Canvas Domains Data Products Templates Quality Lineage

Domain Registry

Federated data domains — ownership, maturity, and bounded context mapping for the Data Mesh.

{% set iqe_canvas = "data_mesh_domains" %} {% set iqe_api_route = "/data/api/iqe-query" %} {% set iqe_title = "IQE Query — Data Domains" %} {% set iqe_examples = [ {"label": "All domains", "query": "foreach d in data_mesh.domains select d.name, d.owner_team, d.maturity_level, d.status"}, {"label": "Active domains", "query": "foreach d in data_mesh.domains where d.status == \"active\" select d.name, d.owner_team, d.maturity_level"}, {"label": "CUI domains", "query": "foreach d in data_mesh.domains where d.classification == \"CUI\" select d.name, d.owner_team, d.status"}, {"label": "Managed+ maturity", "query": "foreach d in data_mesh.domains where d.maturity_level >= 2 select d.name, d.maturity_level, d.owner_team"} ] %} {% include "includes/iqe_query_widget.html" %}
{% if domains %} {% for d in domains %}
{{ d.name }}
{{ maturity_map.get(d.maturity_level | default(0) | int, 'Initial') }}
{% if d.owner_team or d.owner %}
Owner: {{ d.owner_team or d.owner }}
{% endif %} {% if d.owner_email %}
{{ d.owner_email }}
{% endif %}
Products
Contracts
Policies
{% endfor %} {% else %}
No domains yet
Click + New Domain to register your first data domain.
{% endif %}
{% endblock %}