summaryrefslogtreecommitdiff
path: root/test/jsonld/1.1/compact/c023-context.jsonld
blob: 5d69acb74aa146f8f99ca3dd6e880c4faab04bfa (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
{
  "@context": {
    "@version": 1.1,
    "Outer": {
      "@id": "ex:Outer",
      "@context": {
        "nested": "ex:nested"
      }
    },
    "Inner": {
      "@id": "ex:Inner",
      "@context": {
        "@version": 1.1,
        "foo": {
          "@id": "ex:foo",
          "@type": "@vocab",
          "@context": {
            "Foo": "ex:Foo"
          }
        }
      }
    }
  }
}