Last active
December 23, 2015 14:00
-
-
Save pmackay/73e7b30fce1a85f0edef 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 "Agent" ; | |
rdfs:comment "" ; | |
owl:equivalentClass foaf:Agent . | |
vf:Person | |
a owl:Class ; | |
rdfs:label "Person" ; | |
rdfs:comment "" ; | |
rdfs:subClassOf vf:Agent ; | |
owl:equivalentClass foaf:Person, schema:Person . | |
vf:Group | |
a owl:Class ; | |
rdfs:label "Group" ; | |
rdfs:comment "" ; | |
rdfs:subClassOf vf:Agent ; | |
owl:equivalentClass foaf:Group . | |
# Properties | |
vf:displayName | |
a owl:DatatypeProperty ; | |
rdfs:label "Display name" ; | |
rdfs:domain vf:Agent ; | |
rdfs:range rdfs:Literal . | |
vf:memberOf | |
a rdf:Property ; | |
skos:prefLabel "is member of" ; | |
rdfs:domain vf:Agent ; | |
owl:inverseOf vf:hasMember . | |
vf:hasMember | |
a rdf:Property ; | |
skos:prefLabel "has member" ; | |
rdfs:domain vf:Agent ; | |
owl:inverseOf vf:memberOf . | |
vf:affiliateOf | |
a rdf:Property ; | |
rdfs:domain vf:Agent ; | |
rdfs:subPropertyOf vf:memberOf . | |
vf:hasAffiliate | |
a rdf:Property ; | |
rdfs:domain vf:Agent ; | |
rdfs:subPropertyOf vf:hasMember . | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment