Schema
{{ element.name }}
{% if element.description %}
{{ element.description }}
Type:
{% end %}
{# Properties #}
{% if element.metadata.properties %}
{{ element.metadata.type }}
Properties
| Property | Type | Required | Description |
|---|---|---|---|
{{ prop_name }} |
{{ prop_schema.type ?? 'object' }} |
{% if prop_name in required_props %}Yes{% else %}No{% end %} | {{ prop_schema.description ?? '—' }} |
Example
{{ element.metadata.example | tojson(indent=2) }}