semantic-conventions/templates/registry/markdown/entity_readme.md.j2

31 lines
963 B
Django/Jinja

{%- import 'stability.j2' as stability -%}
<!--- Hugo front matter used to generate the website version of this page:
linkTitle: Entities
--->
<!-- NOTE: THIS FILE IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
<!-- see templates/registry/markdown/entity_readme.md.j2 -->
# Entity registry
The entities registry is the catalog of available Entities.
> [!WARNING]
>
> The following registry overview is a work in progress.
>
> Relationships and signal associations are a work in progress.
Currently, the following namespaces exist:
| Namespace | Entity | Stability |
|-----------|--------|-----------|
{%- for bundle in ctx %}
| {{ bundle.id | title_case | acronym }} | | |
{%- for group in bundle.groups | sort(attribute='name') -%}
{%- set my_file_name = bundle.id | kebab_case ~ ".md#" ~ (group.name | kebab_case) %}
| | [{{ group.name }}]({{my_file_name}}) | {{ stability.badge(group.stability, group.deprecated) | trim }} |
{%- endfor %}
{%- endfor %}