IIIF-Commons / biiif

Organise your files according to a simple naming convention to generate IIIF Presentation API json using nodejs (Dat and IPFS compatible)
MIT License
89 stars 11 forks source link

Use items instead of sequence #18

Closed edsilv closed 6 years ago

edsilv commented 6 years ago

Currently has:

  "id": "https://sophiedixon.github.io/3d-portfolio/collection/human_skull/index.json",
  "type": "Manifest",
  "items": [
    {
      "type": "Sequence",
      "items": [
        {
          "id": "https://sophiedixon.github.io/3d-portfolio/collection/human_skull/index.json/canvas/0",
          "type": "Canvas",

Should be:

  "id": "https://sophiedixon.github.io/3d-portfolio/collection/human_skull/index.json",
  "type": "Manifest",
  "items": [
    {
      "id": "https://sophiedixon.github.io/3d-portfolio/collection/human_skull/index.json/canvas/0",
      "type": "Canvas",