Template:DatatypeProperty: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
(use {{linkClasses}} for domain. Ah, the joys of copied code. :-()
(added label@ja)
Line 37: Line 37:
  <td>{{{rdfs:label@hu}}}</td></tr>}} {{#if:{{{rdfs:label@it|}}}|<tr>
  <td>{{{rdfs:label@hu}}}</td></tr>}} {{#if:{{{rdfs:label@it|}}}|<tr>
  <td width="150px">rdfs:label@it</td>
  <td width="150px">rdfs:label@it</td>
  <td>{{{rdfs:label@it}}}</td></tr>}} {{#if:{{{rdfs:label@ko|}}}|<tr>
  <td>{{{rdfs:label@it}}}</td></tr>}} {{#if:{{{rdfs:label@ja|}}}|<tr>
<td width="150px">rdfs:label@ja</td>
<td>{{{rdfs:label@ja}}}</td></tr>}} {{#if:{{{rdfs:label@ko|}}}|<tr>
  <td width="150px">rdfs:label@ko</td>
  <td width="150px">rdfs:label@ko</td>
  <td>{{{rdfs:label@ko}}}</td></tr>}} {{#if:{{{rdfs:label@nl|}}}|<tr>
  <td>{{{rdfs:label@ko}}}</td></tr>}} {{#if:{{{rdfs:label@nl|}}}|<tr>

Revision as of 14:36, 9 May 2012

The {{DatatypeProperty}} template can be used to define ontology datatype properties.

Usage

{{DatatypeProperty 
| rdfs:label@en   =
| rdfs:label@..  =
| rdfs:comment@en =
| rdfs:domain  = 
| rdfs:range   =
| rdf:type     =
| rdfs:subPropertyOf =
| owl:equivalentProperty = 
}}

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:
  • 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:

Example

The definition of the DBpedia ontology property height:

{{DatatypeProperty 
| rdfs:label@en   = height
| rdfs:comment@en =
| 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:comment@en
rdfs:domain owl:Thing
rdfs:range Length
rdf:type
rdfs:subPropertyOf
owl:equivalentProperty