Skip to content

Commit

Permalink
WIP: adds queries
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-johnson committed Nov 27, 2017
1 parent ba76375 commit 2d8cf8e
Show file tree
Hide file tree
Showing 9 changed files with 2,451 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/main/java/resources/frames/annotations.frame.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"@context": {
"sc" : "http://iiif.io/api/presentation/2#",
"as" : "http://www.w3.org/ns/activitystreams#",
"oa": "http://www.w3.org/ns/oa#",
"items":
{"@type": "@id",
"@id": "as:items",
"@container": "@list"
}
},
"@type": "sc:Canvas",
"items": [
{
"@type": "oa:Annotation"
}
]
}
16 changes: 16 additions & 0 deletions src/main/java/resources/frames/collection.frame.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"@context": {
"sc" : "http://iiif.io/api/presentation/2#",
"as" : "http://www.w3.org/ns/activitystreams#",
"items":
{"@type": "@id",
"@id": "as:items",
"@container": "@list"
}
},
"items": [
{
"@type": "sc:Manifest"
}
]
}
17 changes: 17 additions & 0 deletions src/main/java/resources/frames/sequence.frame.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"@context": {
"sc" : "http://iiif.io/api/presentation/2#",
"as" : "http://www.w3.org/ns/activitystreams#",
"items":
{"@type": "@id",
"@id": "as:items",
"@container": "@list"
}
},
"@type": "sc:Sequence",
"items": [
{
"@type": "sc:Canvas"
}
]
}
1,367 changes: 1,367 additions & 0 deletions src/main/java/resources/output/canvases.sequence.json

Large diffs are not rendered by default.

Loading

0 comments on commit 2d8cf8e

Please sign in to comment.