{% extends "base.html" %} {% block navbar %} {% include "navbar.html" %} {% endblock navbar %} {% block sidebar %} {% with thispage=main_entity.qname %} {% include "sidebar.html" %} {% endwith %} {% endblock sidebar %} {% block bodycontent %} {% ifequal main_entity_type "property" %} {% with main_entity as each %}

{# Property: #} {{each.qname}} {% if not each.children %} leaf node {% endif %}


URI

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

Label

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

Description

{{each.bestDescription|default:"--"}}
{% endif %} {% if each.ancestors %}

Inherits from

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

    Sub Property

    {% for s in each.children %}
  • {{s.qname}}
  • {% endfor %}
    {% endif %}

    Usage

    DOMAINPROPERTYRANGE
    {% if each.domains %} {% for s in each.domains %} {{s.qname|default:s}} {% if not forloop.last %}, {% endif %} {% endfor %} {% else %} owl:Thing (inferred) {% endif %} {{each.qname}} {% if each.ranges %} {% for s in each.ranges %} {{s.qname|default:s}} {% if not forloop.last %}, {% endif %} {% endfor %} {% else %} owl:Thing (inferred) {% endif %}

    Implementation

    {% if pygments_code %} {{pygments_code|safe}} {% else %}
    {{each.serialize|linebreaks}}
    {% endif %}
    {% endwith %} {% endifequal %} {% endblock bodycontent %}