generated from iai-group/template-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from iai-group/feature/rdf-vocabulary
Init PKG vocabulary/ontology.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@prefix pkg: <http://example.org/pkg/> . | ||
@prefix owl: <http://www.w3.org/2002/07/owl#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
<> rdf:type owl:Ontology . | ||
|
||
pkg:Preference rdf:type owl:Class . | ||
|
||
pkg:preference rdf:type owl:ObjectProperty ; | ||
rdfs:domain owl:Thing ; | ||
rdfs:range pkg:Preference . | ||
|
||
pkg:entity rdf:type owl:ObjectProperty ; | ||
rdfs:domain pkg:Preference ; | ||
rdfs:range owl:Thing . | ||
|
||
pkg:weight rdf:type owl:DatatypeProperty ; | ||
rdfs:domain pkg:Preference ; | ||
rdfs:range xsd:decimal . |