{% extends "html-multi/base.html" %} {% block navbar %} {% include "html-multi/navbar.html" %} {% endblock navbar %} {% block sidebar %} {% set thispage=main_entity.qname %} {% include "html-multi/sidebar.html" %} {% endblock sidebar %} {% block bodycontent %} {% if main_entity_type == "property" %} {% set each=main_entity %} {% set thispage="propinfo" %} {% include "html-multi/breadcrumbs.html" %}

{# Property: #} {{each.title}} {% if not each.children() %} leaf node {% endif %}


URI

{{each.uri}}
{% if each.bestLabel() %}

Label

{{each.bestLabel()}}
{% endif %} {% if each.bestDescription() %}

Description

{{each.bestDescription()|linebreaks|default("--")}}
{% endif %} {% if each.ancestors() %}

Inherits from

{% if each.ancestors() %} {% for s in each.ancestors() %}
  • {{s.title}}
  • {% endfor %} {% else %}
  • owl:Thing
  • {% endif %}
    {% endif %} {% if each.children() %}

    Sub Property

    {% for s in each.children() %}
  • {{s.title}}
  • {% endfor %}
    {% endif %}

    Usage

    DOMAINPROPERTYRANGE
    {% if each.domains %} {% for s in each.domains %} {% if s.ext_model %} {{s.title|default(s)}} {% elif s.is_Bnode %} Blank node (see implementation) {% else %} {{s.title|default(s)}} {% endif %} {% if not loop.last %}, {% endif %} {% endfor %} {% else %} owl:Thing (inferred) {% endif %} {{each.title}} {% if each.ranges %} {% for s in each.ranges %} {% if s.ext_model %} {{s.title|default(s)}} {% elif s.is_Bnode %} Blank node (see implementation) {% else %} {{s.title|default(s)}} {% endif %} {% if not loop.last %}, {% endif %} {% endfor %} {% else %} owl:Thing (inferred) {% endif %}

    Implementation

    {% if pygments_code %} {{pygments_code|safe}} {% else %}
    {{each.rdf_source()|linebreaks}}
    {% endif %}
    {% endif %} {% endblock bodycontent %}