Template:DatatypeProperty: Difference between revisions
From Mediawiki1
Jump to navigationJump to search
AnjaJentzsch (talk | contribs) No edit summary |
AnjaJentzsch (talk | contribs) (removed label and comment w/o language code) |
||
| Line 26: | Line 26: | ||
<pre> | <pre> | ||
{{DatatypeProperty | {{DatatypeProperty | ||
| rdfs:label = | | rdfs:label@en = | ||
| rdfs:comment = | | rdfs:comment = | ||
| rdfs:domain = | | rdfs:domain = | ||
| Line 35: | Line 35: | ||
=== 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. | * '''rdfs:range''': is used to state that the values of a property are instances of the stated class. | ||
Revision as of 14:45, 28 May 2010
The {{DatatypeProperty}} template can be used to define ontology datatype properties.
Usage
{{DatatypeProperty
| rdfs:label@en =
| rdfs:comment =
| rdfs:domain =
| rdfs:range =
| rdf:type =
}}
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.
- 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:
Example
The definition of the DBpedia ontology property height:
{{DatatypeProperty
| rdfs:label = height
| rdfs:comment =
| 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 | please define an English label |
| rdfs:comment@en | |
| rdfs:domain | owl:Thing |
| rdfs:range | Length |
| rdf:type | |