Template:ObjectProperty: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
(removed non langauge label and comment)
(added french and german labels)
Line 6: Line 6:
| width="150px" | rdfs:label@en
| width="150px" | rdfs:label@en
| width="400px" | {{#if:{{{rdfs:label@en|}}}|{{{rdfs:label@en}}}|<span style="color:red">please define an English label</span>}}
| width="400px" | {{#if:{{{rdfs:label@en|}}}|{{{rdfs:label@en}}}|<span style="color:red">please define an English label</span>}}
|-
| rdfs:label@de
| {{#if:{{{rdfs:label@de|}}}|{{{rdfs:label@de}}}}}
|-
| rdfs:label@fr
| {{#if:{{{rdfs:label@fr|}}}|{{{rdfs:label@fr}}}}}
|-
|-
| rdfs:comment@en
| rdfs:comment@en

Revision as of 00:02, 6 October 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
}}

This is the definition of an ontology property.

Read more about editing the ontology schema.

You can see the result of your edit on DBpedia Live (this is BETA!).

Ontology object property (help)
rdfs:label@en please define an English label
rdfs:label@de
rdfs:label@fr
rdfs:comment@en
rdfs:domain Scientist
rdfs:range Person