blob: 88a4ccf2a16ea499a3034d7bd91e3bdf7f96f20d [file] [log] [blame]
Shane McCarron447a5892016-11-22 01:28:101<!doctype html>
2<html>
3<head>
4<title>Ensure Vocabulary JSON-LD is valid</title>
5<link rel="stylesheet" href="/resources/testharness.css">
6<script src="/resources/testharness.js"></script>
7<script src="/resources/testharnessreport.js"></script>
8</head>
9<body>
10 <p>The Annotation Vocabulary JSON-LD context is defined to be at http://www.w3.org/ns/oa</p>
11 <p>Retrieve that context document and expand the following example using a JSON-LD validation tool. Does it expand?</p>
12 <pre>
13{
14 "@context": "http://www.w3.org/ns/anno.jsonld",
15 "id": "http://example.org/anno4",
16 "type": "Annotation",
17 "body": "http://example.org/description1",
18 "target": {
19 "id": "http://example.com/image1#xywh=100,100,300,300",
20 "type": "Image",
21 "format": "image/jpeg"
22 }
23}
24</pre>
25</body>
26</html>