Template:ObjectProperty: Difference between revisions
From Mediawiki1
Jump to navigationJump to search
No edit summary |
AnjaJentzsch (talk | contribs) No edit summary |
||
| Line 24: | Line 24: | ||
| rdfs:range | | rdfs:range | ||
| {{#if:{{{rdfs:range|}}}|{{#ifeq:{{{rdfs:range|}}}|owl:Thing|owl:Thing|[[OntologyClass:{{{rdfs:range}}}|{{{rdfs:range}}}]]}}|owl:Thing}} | | {{#if:{{{rdfs:range|}}}|{{#ifeq:{{{rdfs:range|}}}|owl:Thing|owl:Thing|[[OntologyClass:{{{rdfs:range}}}|{{{rdfs:range}}}]]}}|owl:Thing}} | ||
|- | |||
| rdfs:type | |||
| {{#if:{{{rdfs:type|}}}|{{{rdfs:type}}}}} | |||
|- | |||
| rdfs:subPropertyOf | |||
| {{#if:{{{rdfs:subPropertyOf|}}}|{{{rdfs:subPropertyOf}}}}} | |||
|}</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. | ||
| Line 31: | Line 37: | ||
<pre> | <pre> | ||
{{ObjectProperty | {{ObjectProperty | ||
| rdfs:label = | | rdfs:label@en = | ||
| rdfs:comment = | | rdfs:label@.. = | ||
| rdfs:domain = | | rdfs:comment@en = | ||
| rdfs:comment@.. = | |||
| rdfs:domain = | |||
| rdfs:range = | | rdfs:range = | ||
| rdf:type = | |||
| rdfs:subPropertyOf = | |||
}} | }} | ||
</pre> | </pre> | ||
| Line 40: | Line 50: | ||
=== Meanings === | === Meanings === | ||
* '''rdfs:label''': should be defined to provide a human-readable version of a property's name. | * '''rdfs:label@en''': should be defined to provide a human-readable version of a property's name. Use ISO language code 639-1 (e.g. @en). | ||
* '''rdfs:comment''': should be defined to provide a human-readable description of a property. | * '''rdfs:comment@en''': should be defined to provide a human-readable description of a property. Use ISO language code 639-1 (e.g. @en). | ||
* '''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: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. | * '''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. | ||
* '''rdf:type''': | |||
* '''rdfs:subPropertyOf''': defines that the property is a subproperty of some other property. Formally this means that if P1 is a subproperty of P2, then the property values of P1 are a subset of the property values of P2. | |||
* '''rdf:type''': | |||
* '''rdfs:subPropertyOf''': defines that the property is a subproperty of some other property. Formally this means that if P1 is a subproperty of P2, then the property values of P1 are a subset of the property values of P2. | |||
=== Example === | === Example === | ||
| Line 50: | Line 64: | ||
<pre> | <pre> | ||
{{ObjectProperty | {{ObjectProperty | ||
| rdfs:label = doctoral advisor | | rdfs:label@en = doctoral advisor | ||
| rdfs:comment = | | rdfs:comment@en = | ||
| rdfs:domain = Scientist | | rdfs:domain = Scientist | ||
| rdfs:range = Person | | rdfs:range = Person | ||
| Line 58: | Line 72: | ||
{{ObjectProperty | {{ObjectProperty | ||
| rdfs:label = doctoral advisor | | rdfs:label@en = doctoral advisor | ||
| rdfs:domain = Scientist | | rdfs:domain@en = Scientist | ||
| rdfs:range = Person | | rdfs:range = Person | ||
}} | }} | ||
</noinclude> | </noinclude> | ||
Revision as of 14:27, 5 April 2011
The {{ObjectProperty}} template can be used to define ontology object properties.
Usage
{{ObjectProperty
| rdfs:label@en =
| rdfs:label@.. =
| rdfs:comment@en =
| rdfs:comment@.. =
| rdfs:domain =
| rdfs:range =
| rdf:type =
| rdfs:subPropertyOf =
}}
Meanings
- rdfs:label@en: should be defined to provide a human-readable version of a property's name. Use ISO language code 639-1 (e.g. @en).
- rdfs:comment@en: should be defined to provide a human-readable description of a property. Use ISO language code 639-1 (e.g. @en).
- 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.
- rdf:type:
- rdfs:subPropertyOf: defines that the property is a subproperty of some other property. Formally this means that if P1 is a subproperty of P2, then the property values of P1 are a subset of the property values of P2.
- rdf:type:
- rdfs:subPropertyOf: defines that the property is a subproperty of some other property. Formally this means that if P1 is a subproperty of P2, then the property values of P1 are a subset of the property values of P2.
Example
The definition of the DBpedia ontology property doctoralAdvisor:
{{ObjectProperty
| rdfs:label@en = doctoral advisor
| rdfs:comment@en =
| 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 | doctoral advisor |
| rdfs:label@de | |
| rdfs:label@fr | |
| rdfs:label@el | |
| rdfs:comment@en | |
| rdfs:domain | owl:Thing |
| rdfs:range | Person |
| rdfs:type | |
| rdfs:subPropertyOf | |