Skip to content

Instantly share code, notes, and snippets.

@elf-pavlik
Last active August 19, 2016 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elf-pavlik/6c8e0c0cbfdc87450d5bab26b86d8bea to your computer and use it in GitHub Desktop.
Save elf-pavlik/6c8e0c0cbfdc87450d5bab26b86d8bea to your computer and use it in GitHub Desktop.
@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 vf: <https://w3id.org/valueflows/> .
# Classes
vf:Agent
a owl:Class ;
rdfs:label "Agent" .
vf:InputOrOutput
a owl:Class ;
rdfs:label "InputOrOutput" .
vf:Resource
a owl:Class ;
rdfs:label "Resource" .
# Properties
vf:context
a owl:ObjectProperty ;
rdfs:label "context" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:fromContext
a owl:ObjectProperty ;
rdfs:label "fromContext" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:toContext
a owl:ObjectProperty ;
rdfs:label "toContext" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Agent .
vf:resource
a owl:ObjectProperty ;
rdfs:label "resource" ;
rdfs:domain vf:InputOrOutput ;
rdfs:range vf:Resource .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment