Replies: 1 comment 1 reply
-
|
@WhiteGobo my guess is that @davidlehn any ideas? We should probably add tests for this at minimum. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the intended behaviour, when using a term definition, that associates the term with a list but then use a set object as value? For example this jsonld data:
{ "@context": { "nick": { "@id": "http://xmlns.com/foaf/0.1/nick", "@container": "@list" } }, "@id": "http://example.org/people#joebob", "nick": { "@set": [ "joe", "asdf" ] } }In the jsonld playground, it just uses the set object as list object(permalink to playground):
{ "@id": "http://example.org/people#joebob", "http://xmlns.com/foaf/0.1/nick": { "@list": [ "joe", "asdf" ] } }Beta Was this translation helpful? Give feedback.
All reactions