valueflows

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

context.jsonld (1604B)


      1 {
      2   "@context": {
      3     "owl": "http://www.w3.org/2002/07/owl#",
      4     "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      5     "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
      6     "skos": "http://www.w3.org/2004/02/skos/core#",
      7     "vf": "https://w3id.org/valueflows/",
      8     "Relationship": "vf:Relationship",
      9     "url":  { "@id": "vf:url", "@type": "@id" },
     10     "image": { "@id": "vf:image", "@type": "@id" },
     11     "label": "skos:prefLabel",
     12     "labelMap": { "@id": "skos:prefLabel", "@container": "@language" },
     13     "note": "skos:note",
     14     "noteMap": { "@id": "skos:note", "@container": "@language" },
     15     "inverseOf": "owl:inverseOf",
     16     "subject": { "@id": "vf:subject", "@type": "@id" },
     17     "relationship": { "@id": "vf:relationship", "@type": "@id" },
     18     "object": { "@id": "vf:object", "@type": "@id" }
     19   },
     20   "@graph": [
     21     {
     22       "@id": "Relationship",
     23       "@type": ["owl:Class", "skos:Concept"],
     24       "labelMap": {
     25         "en": "Relationship"
     26       }
     27     },
     28     {
     29       "@id": "url",
     30       "@type": "owl:DataProperty",
     31       "labelMap": {
     32         "en": "url"
     33       }
     34     },
     35     {
     36       "@id": "image",
     37       "@type": "owl:ObjectProperty",
     38       "labelMap": {
     39         "en": "image"
     40       }
     41     },
     42     {
     43       "@id": "subject",
     44       "@type": "owl:ObjectProperty",
     45       "labelMap": {
     46         "en": "subject"
     47       }
     48     },
     49     {
     50       "@id": "relationship",
     51       "@type": "owl:ObjectProperty",
     52       "labelMap": {
     53         "en": "relationship"
     54       }
     55     },
     56     {
     57       "@id": "object",
     58       "@type": "owl:ObjectProperty",
     59       "labelMap": {
     60         "en": "object"
     61       }
     62     }
     63   ]
     64 }