We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ae7ef commit e18d08dCopy full SHA for e18d08d
tests/compact/c015-in.jsonld
@@ -3,8 +3,14 @@
3
"http://example/p": [{
4
"@id": "http://example/typed-base#typed-id",
5
"@type": ["http://example/Type"],
6
- "http://example/nested": [{
7
- "@id": "http://example/base-base#nested-id"
+ "http://example/subjectReference": [{
+ "@id": "http://example/typed-base#subject-reference-id"
8
+ }],
9
+ "http://example/nestedNode": [{
10
+ "@id": "http://example/base-base#nested-id",
11
+ "http://example/foo": [{
12
+ "@value": "bar"
13
+ }]
14
}]
15
16
tests/compact/c015-out.jsonld
@@ -13,8 +13,12 @@
"p": {
"@id": "#typed-id",
"@type": "Type",
- "nested": {
17
- "@id": "#nested-id"
+ "subjectReference": {
+ "@id": "#subject-reference-id"
18
+ },
19
+ "nestedNode": {
20
+ "@id": "#nested-id",
21
+ "foo": "bar"
22
}
23
24
0 commit comments