Skip to content

Commit

Permalink
Merge pull request #24 from cmaumet/context-type-indexing
Browse files Browse the repository at this point in the history
Context for JSON-LD 1.1 with type indexing
  • Loading branch information
Rémi Adon authored Aug 5, 2020
2 parents 7d1e508 + 349c464 commit 1f12f7c
Showing 1 changed file with 38 additions and 31 deletions.
69 changes: 38 additions & 31 deletions context.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,42 @@
{
"prov" : "http://www.w3.org/ns/prov#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"label": "http://www.w3.org/2000/01/rdf-schema#label",
"startedAtTime" : {
"@id": "http://www.w3.org/ns/prov#startedAtTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"endedAtTime" : {
"@id": "http://www.w3.org/ns/prov#endedAtTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"wasGeneratedBy" : {
"@id": "http://www.w3.org/ns/prov#wasGeneratedBy",
"@type": "http://www.w3.org/2001/XMLSchema#Entity"
},
"wasAttributedTo" : {
"@id": "http://www.w3.org/ns/prov#wasAttributedTo",
"@type": "http://www.w3.org/2001/XMLSchema#Agent"
},
"wasAssociatedWith" : {
"@id": "http://www.w3.org/ns/prov#wasAssociatedWith",
"@type": "http://www.w3.org/2001/XMLSchema#Agent"
},
"wasInformedBy" : {
"@id": "http://www.w3.org/ns/prov#wasInformedBy",
"@type": "http://www.w3.org/2001/XMLSchema#Activity"
},
"used" : {
"@id": "http://www.w3.org/ns/prov#used",
"@type": "http://www.w3.org/2001/XMLSchema#Entity"
"@context": {
"@version": 1.1,
"records": {
"@container": "@type",
"@id": "@graph"
},
"prov" : "http://www.w3.org/ns/prov#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"label": "http://www.w3.org/2000/01/rdf-schema#label",
"startedAtTime" : {
"@id": "http://www.w3.org/ns/prov#startedAtTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"endedAtTime" : {
"@id": "http://www.w3.org/ns/prov#endedAtTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"wasGeneratedBy" : {
"@id": "http://www.w3.org/ns/prov#wasGeneratedBy",
"@type": "http://www.w3.org/2001/XMLSchema#Entity"
},
"wasAttributedTo" : {
"@id": "http://www.w3.org/ns/prov#wasAttributedTo",
"@type": "http://www.w3.org/2001/XMLSchema#Agent"
},
"wasAssociatedWith" : {
"@id": "http://www.w3.org/ns/prov#wasAssociatedWith",
"@type": "http://www.w3.org/2001/XMLSchema#Agent"
},
"wasInformedBy" : {
"@id": "http://www.w3.org/ns/prov#wasInformedBy",
"@type": "http://www.w3.org/2001/XMLSchema#Activity"
},
"used" : {
"@id": "http://www.w3.org/ns/prov#used",
"@type": "http://www.w3.org/2001/XMLSchema#Entity"
}
}
}



0 comments on commit 1f12f7c

Please sign in to comment.