Template:DatatypeProperty: Difference between revisions
From DBpedia Mappings
Jump to navigationJump to search
(new comments and label syntax) |
No edit summary |
||
| (6 intermediate revisions by one other user not shown) | |||
| Line 58: | Line 58: | ||
<td>{{{rdfs:label@sl}}}</td></tr>}} {{#if:{{{rdfs:label@tr|}}}|<tr> | <td>{{{rdfs:label@sl}}}</td></tr>}} {{#if:{{{rdfs:label@tr|}}}|<tr> | ||
<td width="150px">rdfs:label@tr</td> | <td width="150px">rdfs:label@tr</td> | ||
<td>{{{rdfs:label@tr}}}</td></tr>}} | <td>{{{rdfs:label@tr}}}</td></tr>}} {{#if:{{{rdfs:label@sr|}}}|<tr> | ||
<td width="150px">rdfs:label@sr</td> | |||
<td>{{{rdfs:label@sr}}}</td></tr>}} | |||
{{{comments|}}} | {{{comments|}}} | ||
{{#if:{{{rdfs:comment@en|}}}| | {{#if:{{{rdfs:comment@en|}}}| | ||
| Line 80: | Line 82: | ||
<tr> | <tr> | ||
<td>rdfs:subPropertyOf</td> | <td>rdfs:subPropertyOf</td> | ||
<td>{{ | <td>{{linkProperties|{{{rdfs:subPropertyOf|}}}}}</td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
<td>owl:equivalentProperty</td> | <td>owl:equivalentProperty</td> | ||
<td>{{ | <td>{{linkProperties|{{{owl:equivalentProperty|}}}}}</td> | ||
</tr> | |||
<tr> | |||
<td>owl:propertyDisjointWith</td> | |||
<td>{{linkProperties|{{{owl:propertyDisjointWith|}}}}}</td> | |||
</tr> | </tr> | ||
</table> | </table> | ||
| Line 116: | Line 122: | ||
** XSD Datatypes: xsd:date, xsd:time, xsd:dateTime, xsd:gYear, xsd:gYearMonth, xsd:gMonth, xsd:gMonthDay, xsd:gDay, xsd:boolean, xsd:string, xsd:integer, xsd:double, xsd:float | ** XSD Datatypes: xsd:date, xsd:time, xsd:dateTime, xsd:gYear, xsd:gYearMonth, xsd:gMonth, xsd:gMonthDay, xsd:gDay, xsd:boolean, xsd:string, xsd:integer, xsd:double, xsd:float | ||
** [[DBpedia Datatypes]] | ** [[DBpedia Datatypes]] | ||
* '''rdf:type''': | * '''rdf:type''': currently, only [http://www.w3.org/TR/owl-ref/#FunctionalProperty-def owl:FunctionalProperty] is supported. | ||
* '''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. | * '''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. | ||
* '''owl:equivalentProperty''': | * '''owl:equivalentProperty''': | ||
| Line 142: | Line 148: | ||
It will be rendered to this table: | It will be rendered to this table: | ||
{{DatatypeProperty | {{DatatypeProperty | ||
| labels = | | labels = | ||
Latest revision as of 10:31, 21 January 2014
The {{DatatypeProperty}} template can be used to define ontology datatype properties.
Usage
{{DatatypeProperty
| labels =
{{label|en|...}}
{{label|..|...}}
| comments =
{{comment|en|...}}
{{comment|..|...}}
| rdfs:domain =
| rdfs:range =
| rdf:type =
| rdfs:subPropertyOf =
| owl:equivalentProperty =
}}
Details
- labels: should be defined to provide a human-readable version of a property's name. Use ISO language code 639-1 (e.g. {{label|en|...}}).
- comments: should be defined to provide a human-readable description of a property. Use ISO language code 639-1 (e.g. {{comment|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.
- XSD Datatypes: xsd:date, xsd:time, xsd:dateTime, xsd:gYear, xsd:gYearMonth, xsd:gMonth, xsd:gMonthDay, xsd:gDay, xsd:boolean, xsd:string, xsd:integer, xsd:double, xsd:float
- DBpedia Datatypes
- rdf:type: currently, only owl:FunctionalProperty is supported.
- 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.
- owl:equivalentProperty:
For backwards compatibilty, the following format for labels and comments is also possible but deprecated:
{{DatatypeProperty
| rdfs:label@en =
| rdfs:label@.. =
| rdfs:comment@en =
Example
The definition of the DBpedia ontology property height:
{{DatatypeProperty
| labels =
{{label|en|height}}
| comments =
| rdfs:range = Length
}}
It will be rendered to this table:
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 datatype property (help) | |
|---|---|
| rdfs:label (en) | height |
| rdfs:domain | owl:Thing |
| rdfs:range | Length |
| rdf:type | |
| rdfs:subPropertyOf | |
| owl:equivalentProperty | |
| owl:propertyDisjointWith | |