Template:Class: Difference between revisions
From Mediawiki1
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
<pre> | <pre> | ||
{{Class | {{Class | ||
| rdfs:label | | rdfs:label = | ||
| rdfs:comment | | rdfs:comment = | ||
| rdfs:subClassOf = | | rdfs:subClassOf = | ||
| specificProperties = | |||
}} | }} | ||
</pre> | </pre> | ||
Line 27: | Line 28: | ||
* '''rdfs:comment''': should be defined to provide a human-readable description of a property. | * '''rdfs:comment''': should be defined to provide a human-readable description of a property. | ||
* '''rdfs:subClassOf''': is used to state that all the instances of one class are instances of another. | * '''rdfs:subClassOf''': is used to state that all the instances of one class are instances of another. | ||
* '''specificProperties''': | |||
=== Example === | === Example === |
Revision as of 12:58, 8 March 2010
The {{Class}} template can be used to define ontology classes.
Usage
{{Class | rdfs:label = | rdfs:comment = | rdfs:subClassOf = | specificProperties = }}
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:subClassOf: is used to state that all the instances of one class are instances of another.
- specificProperties:
Example
The definition of the DBpedia ontology class Artist:
{{Class | rdfs:label = Artist | rdfs:comment = | rdfs:subClassOf = Person }}
It will be rendered to this table:
Ontology class (help) | |
---|---|
rdfs:label | Artist |
rdfs:comment | |
rdfs:subClassOf | Person |