{% 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 %} {% with thispage="propinfo" %} {% include "breadcrumbs.html" %} {% endwith %}

{# 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 forloop.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 forloop.last %}, {% endif %} {% endfor %} {% else %} owl:Thing (inferred) {% endif %}

    Implementation

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