Template:ObjectProperty: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
No edit summary
No edit summary
Line 9: Line 9:
|-
|-
| rdfs:domain
| rdfs:domain
| {{#if:{{{rdfs:domain|}}}|[[OntologyClass:{{{rdfs:domain}}}|{{{rdfs:domain}}}]]|owl:Thing}}
| {{#if:{{{rdfs:domain|}}}|{{#ifeq:{{{rdfs:domain|}}}|owl:Thing|owl:Thing|[[OntologyClass:{{{rdfs:domain}}}]]}}|owl:Thing}}
|-
|-
| rdfs:range
| rdfs:range
| {{#if:{{{rdfs:range|}}}|[[OntologyClass:{{{rdfs:range}}}|{{{rdfs:range}}}]]|owl:Thing}}
| {{#if:{{{rdfs:range|}}}|{{#ifeq:{{{rdfs:range|}}}|owl:Thing|owl:Thing|[[OntologyClass:{{{rdfs:range}}}|{{{rdfs:range}}}]]}}|owl:Thing}}
|}</includeonly>
|}</includeonly>
<noinclude>The '''<nowiki>{{ObjectProperty}}</nowiki>''' template can be used to define ontology object properties.  
<noinclude>The '''<nowiki>{{ObjectProperty}}</nowiki>''' template can be used to define ontology object properties.  

Revision as of 09:23, 12 March 2010

The {{ObjectProperty}} template can be used to define ontology object properties.

Usage

{{ObjectProperty
| rdfs:label   =
| rdfs:comment =
| rdfs:domain  =
| rdfs:range   =
}}

Meanings

  • rdfs:label: should be defined to provide a human-readable version of a property's name.
  • rdfs:comment: should be defined to provide a human-readable description of a property.
  • rdfs:domain: is used to state that any resource that has a given property is an instance of the stated class. If left empty, owl:Thing is assumed.
  • rdfs:range: is used to state that the values of a property are instances of the stated class. If left empty, owl:Thing is assumed.

Example

The definition of the DBpedia ontology property doctoralAdvisor:

{{ObjectProperty
| rdfs:label   = doctoral advisor
| rdfs:comment =
| rdfs:domain  = Scientist
| rdfs:range   = Person
}}
Ontology object property (help)
rdfs:label doctoral advisor
rdfs:comment
rdfs:domain OntologyClass:Scientist
rdfs:range Person