Template:DatatypeProperty: Difference between revisions

From DBpedia Mappings
Jump to navigationJump to search
(added rdf:type)
No edit summary
Line 15: Line 15:
|-
|-
| rdf:type
| rdf:type
| {{{rdf:type}}}
| {{#if:{{{rdf:type|}}}|{{{rdf:type}}}}}
|}
|}
</includeonly>
</includeonly>
Line 28: Line 28:
| rdfs:domain  =  
| rdfs:domain  =  
| rdfs:range  =
| rdfs:range  =
| rdf:type    =
}}
}}
</pre>
</pre>
Line 38: Line 39:
** 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''':


=== Example ===
=== Example ===

Revision as of 13:06, 22 March 2010

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

Usage

{{DatatypeProperty 
| rdfs:label   =
| rdfs:comment =
| rdfs:domain  = 
| rdfs:range   =
| rdf:type     =
}}

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

Ontology datatype property (help)
rdfs:label height
rdfs:comment
rdfs:domain owl:Thing
rdfs:range Length
rdf:type