Skip to content

Commit

Permalink
Merge pull request #29 from iai-group/feature/rdf-vocabulary
Browse files Browse the repository at this point in the history
Init PKG vocabulary/ontology.
  • Loading branch information
mgskjaeveland authored Sep 15, 2023
2 parents 41779bc + 9bd459e commit bd2f6ab
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions data/pkg-vocabulary.owl.ttl
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 .

0 comments on commit bd2f6ab

Please sign in to comment.