{% extends "base.html" %} {% import "macros.html" as utils %} {% block title %}{{ config.METAREGISTRY_TITLE }} - {{ entry.name }}{% endblock %} {% block container %}
Contexts {{ entry.name }}
{{ markdown(entry.description) | safe }}
Identifier
{{ identifier }}
Download
Download JSON LD Download SHACL
Maintainers
    {% for author in entry.maintainers %}
  • {{ author.name }}
  • {% endfor %} {% if entry.maintainers|length < 2 %}
  • Bioregistry Review Team (until this record has two maintainers, see here for more information on governance)
  • {% endif %}
Properties
Synonyms
{% if entry.prefix_priority %}
Prefix Priority

{{ schema.prefix_priority.description }}

    {% for metaprefix in entry.prefix_priority %}
  1. {{ utils.render_metaprefix(metaprefix) }}
  2. {% endfor %}
{% endif %} {% if entry.uri_prefix_priority %}
URI Prefix Priority

{{ schema.uri_prefix_priority.description }}

    {% for metaprefix in entry.uri_prefix_priority %}
  1. {{ utils.render_metaprefix(metaprefix) }}
  2. {% endfor %}
{% endif %} {% if entry.prefix_remapping %}
Prefix Remapping

{{ schema.prefix_remapping.description }}

{% for key, value in entry.prefix_remapping.items() %}
{{ key }}
{{ value }}
{% endfor %}
{% endif %} {% if entry.custom_prefix_map %}
Custom Prefix Map

{{ schema.custom_prefix_map.description }}

{% for key, value in entry.custom_prefix_map.items() %}
{{ key }}
{{ value }}
{% endfor %}
{% endif %} {% if entry.blacklist %}
Prefix Blacklist

{{ schema.blacklist.description }}

    {% for blacklist_prefix in entry.blacklist %}
  • {{ utils.render_prefix(blacklist_prefix) }}
  • {% endfor %}
{% endif %}
{% endblock %}