Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 472 Bytes

manifest-v3.md

File metadata and controls

24 lines (19 loc) · 472 Bytes

Manifest (Presentation API 3.0)

Code

import {Manifest} from "@archival-iiif/presentation-builder";

const m = new Manifest('https://example.org/iiif/book1/manifest', 'Book 1');
m.setContext();

JSON output

{
  "id": "https://example.org/iiif/book1/manifest",
  "type": "Manifest",
  "@context": [
    "http://www.w3.org/ns/anno.jsonld",
    "http://iiif.io/api/presentation/3/context.json"
  ],
  "label": {"none": ["Book 1"]}
}