Schema
The schema of the feature type describes the "returnables" and "receivables". "Returnables" are feature properties that are returned in responses to a query. "Receivables" are feature properties are feature properties that have to or can be provided by the client in mutation operations (create, replace, or update). Unless otherwise specified, a property is both a returnable and a receivable.
{% for name, property in properties %}
- {{ name }}
-
{% if existsIn(property, "role") %}
- Special role: {{ property.role }}
{% endif %}
{% if existsIn(property, "type") %}
- Data type: {{ property.type }}.
{% endif %}
{% if existsIn(property, "description") %}
- {{ property.description }}
{% endif %}
{% if existsIn(property, "format") %}
- Format: {{ property.format }}
{% endif %}
{% if existsIn(property, "readOnly") %}
- This property is returnable but not receivable.
{% endif %}
{% endfor %}
Links
{% for link in links %}
{% if link.rel != "self" %}
- {{ link.title }}
{% endif %}
{% endfor %}