{% extends "base.html" %} {% block title %}Data Contracts — Data Mesh — ICDEV{% endblock %} {% block content %}
CUI // SP-CTI
Data Mesh Overview Domains Products Contracts Governance CSP

Data Contracts

ODCS-compliant contracts defining schema, SLA, and quality rules between data producers and consumers.

{{ contracts|length }} contract{{ 's' if contracts|length != 1 else '' }}
{% if contracts %} {% set product_map = {} %} {% for p in products %}{% set _ = product_map.update({p.id: p.name}) %}{% endfor %} {% for c in contracts %} {% endfor %}
Title Version Product Status Classification Created
{{ c.title }} v{{ c.version }} {% if c.product_id %} {{ product_map.get(c.product_id, c.product_id[:8] ~ '…') }} {% else %}{% endif %} {{ c.status|capitalize }} {{ c.classification }} {{ c.created_at[:10] if c.created_at else '—' }}
{% else %}
No data contracts yet.
Click + New Contract to define the first one.
{% endif %}
{% endblock %}