Schema supports both a business representation and physical implementation
|
{% if schema_business_name and schema_business_name != schema_name %}
{{ schema_business_name }}
{% endif %}
{{ schema_name }}
{% if schema_physical_name %}
ⓘ
{% endif %}
{% if schema_type %}
{{ schema_type }}
{% endif %}
{% if schema_description %}
{{ schema_description }}
{% else %}
No description
{% endif %}
{% if schema_custom_properties %}
{% if schema_custom_properties is mapping %}
{% for key, value in schema_custom_properties.items() %}
{{ key }}:{{ value }}
{% endfor %}
{% elif schema_custom_properties is sequence and schema_custom_properties is not string %}
{% for cp in schema_custom_properties %}
{% if cp.property is defined and cp.value is defined %}
{{ cp.property }}:{{ cp.value }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if schema_tags and schema_tags|length > 0 %}
{% for tag in schema_tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% if schema_quality and schema_quality|length > 0 %}
{% for q in schema_quality %}
{% set q_title = "" %}
{% if q.description is defined and q.description %}{% set q_title = q.description %}{% endif %}
{% if q.type is defined and q.type %}{% set q_title = q_title ~ ("\n" if q_title else "") ~ "type: " ~ q.type %}{% endif %}
{% if q.dimension is defined and q.dimension %}{% set q_title = q_title ~ ("\n" if q_title else "") ~ "dimension: " ~ q.dimension %}{% endif %}
{% if q.metric is defined and q.metric %}{% set q_title = q_title ~ ("\n" if q_title else "") ~ "metric: " ~ q.metric %}{% endif %}
{{ q.name if q.name is defined and q.name else "qualityCheck" }}
{% endfor %}
{% endif %}
|
||
|---|---|---|
| No properties |