summaryrefslogtreecommitdiff
path: root/test/jsonld/1.1/compact/c024-context.jsonld
blob: cc53f326fda4998e8926b933a282e8c483795892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "@context": {
    "@version": 1.1,
    "Outer": {
      "@id": "ex:Outer",
      "@context": {
        "nested": "ex:nested"
      }
    },
    "Inner": {
      "@id": "ex:Inner",
      "@context": {
        "@version": 1.1,
        "foo": {
          "@id": "ex:foo",
          "@container": "@set",
          "@type": "ex:Number",
          "@context": {
            "value": "@value"
          }
        },
        "bar": {
          "@id": "ex:bar",
          "@container": "@set",
          "@type": "@id",
          "@context": {
            "@base": "http://example/"
          }
        }
      }
    }
  }
}