Template:ObjectProperty: Difference between revisions
From DBpedia Mappings
Jump to navigationJump to search
Kkasunperera (talk | contribs) (→Usage) |
No edit summary |
||
| Line 102: | Line 102: | ||
| rdfs:domain = | | rdfs:domain = | ||
| rdfs:range = | | rdfs:range = | ||
| rdf:type = | | rdf:type = [ owl:FunctionalProperty | owl:InverseFunctionalProperty | owl:SymmetricProperty | owl:ReflexiveProperty | owl:IrreflexiveProperty ] | ||
| rdfs:subPropertyOf = | | rdfs:subPropertyOf = | ||
| owl:equivalentProperty = | | owl:equivalentProperty = | ||
| owl:propertyDisjointWith = | | owl:propertyDisjointWith = | ||
}} | }} | ||
</pre> | </pre> | ||
| Line 120: | Line 115: | ||
* '''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. 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. If left empty, owl:Thing is assumed. | ||
* '''rdf:type''': currently, only [http://www.w3.org/TR/owl-ref/#FunctionalProperty-def owl:FunctionalProperty] | * '''rdf:type''': currently, only [http://www.w3.org/TR/owl-ref/#FunctionalProperty-def owl:FunctionalProperty], [http://www.w3.org/TR/owl-ref/#InverseFunctionalProperty-def owl:InverseFunctionalProperty], owl:SymmetricProperty, owl:ReflexiveProperty and owl:IrreflexiveProperty are 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''': | ||
* '''owl:propertyDisjointWith''': | * '''owl:propertyDisjointWith''': | ||
For backwards compatibilty, the following format for labels and comments is also possible but '''deprecated''': | For backwards compatibilty, the following format for labels and comments is also possible but '''deprecated''': | ||
Revision as of 11:10, 8 June 2013
The {{ObjectProperty}} template can be used to define ontology object properties.
Usage
{{ObjectProperty
| labels =
{{label|en|...}}
{{label|..|...}}
| comments =
{{comment|en|...}}
{{comment|..|...}}
| rdfs:domain =
| rdfs:range =
| rdf:type = [ owl:FunctionalProperty | owl:InverseFunctionalProperty | owl:SymmetricProperty | owl:ReflexiveProperty | owl:IrreflexiveProperty ]
| rdfs:subPropertyOf =
| owl:equivalentProperty =
| owl:propertyDisjointWith =
}}
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. If left empty, owl:Thing is assumed.
- rdf:type: currently, only owl:FunctionalProperty, owl:InverseFunctionalProperty, owl:SymmetricProperty, owl:ReflexiveProperty and owl:IrreflexiveProperty are 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:
- owl:propertyDisjointWith:
For backwards compatibilty, the following format for labels and comments is also possible but deprecated:
{{ObjectProperty
| rdfs:label@en =
| rdfs:label@.. =
| rdfs:comment@en =
Example
The definition of the DBpedia ontology property doctoralAdvisor:
{{ObjectProperty
| labels =
{{label|en|doctoral advisor}}
| comments =
| rdfs:domain = Scientist
| rdfs:range = Person
}}
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 object property (help) | |
|---|---|
| rdfs:label (en) | doctoral advisor |
| rdfs:domain | owl:Thing |
| rdfs:range | Person |
| rdf:type | |
| rdfs:subPropertyOf | |
| owl:equivalentProperty | |