Last active
May 29, 2016 23:08
-
-
Save elf-pavlik/8b853c9f079f820b3148e411547ff3f2 to your computer and use it in GitHub Desktop.
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
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/#> . | |
@prefix schema: <http://schema.org/> . | |
@prefix vf: <https://w3id.org/valueflows/> . | |
# Classes | |
vf:Agent | |
a owl:Class ; | |
rdfs:label "vf:Agent" ; | |
rdfs:comment "" ; | |
owl:equivalentClass foaf:Agent . | |
vf:Person | |
a owl:Class ; | |
rdfs:label "vf:Person" ; | |
rdfs:comment "" ; | |
rdfs:subClassOf vf:Agent ; | |
owl:equivalentClass foaf:Person, schema:Person . | |
vf:Group | |
a owl:Class ; | |
rdfs:label "vf:Group" ; | |
rdfs:comment "" ; | |
rdfs:subClassOf vf:Agent ; | |
owl:equivalentClass foaf:Group . | |
vf:Relationship | |
a owl:Class ; | |
rdfs:label "vf:Relationship" ; | |
rdfs:comment "" . | |
# Properties | |
vf:subject | |
a owl:ObjectProperty ; | |
rdfs:label "vf:subject" ; | |
rdfs:domain vf:Relationship; | |
rdfs:range vf:Agent . | |
vf:relationship | |
a rdf:Property ; | |
rdfs:label "vf:relationship" ; | |
rdfs:domain vf:Relationship ; | |
rdfs:range rdf:Property . | |
vf:object | |
a owl:ObjectProperty ; | |
rdfs:label "vf:object" ; | |
rdfs:domain vf:Relationship; | |
rdfs:range vf:Agent . | |
vf:context | |
a owl:ObjectProperty ; | |
rdfs:label "vf:context" ; | |
rdfs:domain vf:Relationship ; | |
rdfs:range vf:Agent . | |
vf:memberOf | |
a rdf:Property ; | |
skos:prefLabel "vf:memberOf" ; | |
owl:inverseOf vf:hasMember ; | |
rdfs:domain vf:Person ; | |
rdfs:range vf:Group . | |
vf:hasMember | |
a rdf:Property ; | |
skos:prefLabel "vf:hasMember" ; | |
owl:inverseOf vf:memberOf ; | |
rdfs:domain vf:Group ; | |
rdfs:range vf:Person . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment