Skip to content

Instantly share code, notes, and snippets.

@ptgolden
Last active August 29, 2015 14:04
Show Gist options
  • Save ptgolden/c3169a602b1cffc8d369 to your computer and use it in GitHub Desktop.
Save ptgolden/c3169a602b1cffc8d369 to your computer and use it in GitHub Desktop.
Testing data indexing
{
"@context": {
"periodization": {
"@id": "http://perio.do/#periodization",
"@container": "@index"
},
"label": "schema:name",
"definitions": "http://perio.do/#period"
},
"@id": "http://perio.do/data",
"periodization": {
"http://perio.do/p1/": {
"@id": "http://perio.do/p1/",
"label": "test",
"definitions": [
{ "@id": "http://perio.do/per1/", "label": "abc" }]
},
"http://perio.do/p2/": {
"@id": "http://perio.do/p2/",
"label": "test2",
"definitions": [
{ "@id": "http://perio.do/per2/", "label": "def"}
]
}
}
}
<http://perio.do/data> <http://perio.do/#periodization> <http://perio.do/p1/> .
<http://perio.do/data> <http://perio.do/#periodization> <http://perio.do/p2/> .
<http://perio.do/p1/> <http://perio.do/#period> <http://perio.do/per1/> .
<http://perio.do/p1/> <schema:name> "test" .
<http://perio.do/p2/> <http://perio.do/#period> <http://perio.do/per2/> .
<http://perio.do/p2/> <schema:name> "test2" .
<http://perio.do/per1/> <schema:name> "abc" .
<http://perio.do/per2/> <schema:name> "def" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment