valueflows

valueflows docs
git clone https://s.sonu.ch/~srfsh/valueflows.git
Log | Files | Refs | README

commit e779c8879dacfa3e3b0d865f18a12cc8e6dfe7f7
parent 4aeb59b96ce01342b4d9964b9955aa93888b9e2e
Author: Lynn Foster <foster.j.lynn@gmail.com>
Date:   Tue, 13 Oct 2015 07:43:28 -0500

Merge pull request #64 from elf-pavlik/master

extracted common context from agent repo
Diffstat:
Acontext.jsonld | 68++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+), 0 deletions(-)

diff --git a/context.jsonld b/context.jsonld @@ -0,0 +1,68 @@ +{ + "@context": { + "owl": "http://www.w3.org/2002/07/owl#", + "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + "rdfs:label": { "@container": "@language" }, + "vf": "https://w3id.org/valueflows/", + "Relationship": "vf:Relationship", + "url": { "@id": "vf:url", "@type": "@id" }, + "image": { "@id": "vf:image", "@type": "@id" }, + "displayName": "vf:displayName", + "displayNameMap": { "@id": "displayName", "@container": "@language" }, + "subject": { "@id": "vf:subject", "@type": "@id" }, + "relationship": { "@id": "vf:relationship", "@type": "@id" }, + "object": { "@id": "vf:object", "@type": "@id" } + }, + "@graph": [ + { + "@id": "Relationship", + "@type": "owl:Class", + "rdfs:label": { + "en": "Relationship" + } + }, + { + "@id": "url", + "@type": "owl:DataProperty", + "rdfs:label": { + "en": "url" + } + }, + { + "@id": "image", + "@type": "owl:ObjectProperty", + "rdfs:label": { + "en": "url" + } + }, + { + "@id": "displayName", + "@type": "owl:DataProperty", + "rdfs:label": { + "en": "displayName" + } + }, + { + "@id": "subject", + "@type": "owl:ObjectProperty", + "rdfs:label": { + "en": "subject" + } + }, + { + "@id": "relationship", + "@type": "owl:ObjectProperty", + "rdfs:label": { + "en": "relationship" + } + }, + { + "@id": "object", + "@type": "owl:ObjectProperty", + "rdfs:label": { + "en": "object" + } + } + ] +}