Data Contract
{{ datacontract.id }}
{% if datacontract.tags %}
{% for tag in datacontract.tags %}
{{ tag }}
{% endfor %}
{% endif %}
Servers
Servers of the data contract
-
{% for server_name, server in datacontract.servers.items() %}
{{ render_partial('partials/server.html', server_name = server_name, server = server) }}
{% endfor %}
Entity Relationship Diagram
Visual representation of data model relationships
{{ mermaid_diagram }}
Data Model
The logical data model
{% if model.title %}
{{ model.title }}
{% endif %}
{% if model.title != model_name %}
{{ model_name }}
{% endif %}
{{ model.type }}
{{ model.description }}
{% for key, value in model.model_extra.items() %}
{{ key }}: {{ value }}
{% endfor %}
|
|||
---|---|---|---|
{{ render_partial('partials/quality.html', quality = quality)}} | |||
Primary Key: {{ model.primaryKey }} |
Definitions
Domain specific definitions in the data contract
Examples
Examples for models in the data contract
Quality
{{ datacontract.quality.type }}
{{ quality_specification }}
Created at {{formatted_date}} with Data Contract CLI v{{datacontract_cli_version}}