Pasquale Convertini
Pasquale Convertini
Hi @dlongley, have you news on this issue? Have contributors had a look inside of the PR and gave some feedback? If there are issues in the PR let me...
@dlongley @davidlehn I don't exactly understand how testing works in this repository, but I've defined a small example in my PR #144. Could you please have a look and tell...
@dlongley @davidlehn any update on this PR?
@gkellogg if this is not a bug, can you advice me on how should I define the correct frame for this json-ld? ```json { "@context": [ "https://www.w3.org/2018/credentials/v1", "https://w3id.org/vdl/v1" ], "type":...
I don't understand. The issue is in the fact that `"@type": "@json"` is considered as an invalid type inside the frame, but this is incorrect since such type is a...
How did you get that expansion? Unfortunately I don't really understand how to use this example, I prefer using the VDL frame as example since I am able to run...
I found why you got that value object, the frame is incorrect. We should change it to be: ```json { "@context": { "ex": "http://example.org/vocab#", "ex:info": {"@type": "@json"} }, "ex:info": {}...
Alright, here the [permalink](https://json-ld.org/playground/#startTab=tab-expanded&json-ld=%7B%22%40context%22%3A%7B%22ex%22%3A%22http%3A%2F%2Fexample.org%2Fvocab%23%22%2C%22ex%3Ainfo%22%3A%7B%22%40type%22%3A%22%40json%22%7D%7D%2C%22ex%3Ainfo%22%3A%7B%7D%7D). This frame expands as expected (without the nested type `@json` inside the `value` field), but the [framing](https://json-ld.org/playground/#startTab=tab-framed&json-ld=%7B%22%40context%22%3A%7B%22ex%22%3A%22http%3A%2F%2Fexample.org%2Fvocab%23%22%2C%22ex%3Ainfo%22%3A%7B%22%40type%22%3A%22%40json%22%7D%7D%2C%22%40id%22%3A%22http%3A%2F%2Fexample.org%2Ftest%2F%23library%22%2C%22%40type%22%3A%22ex%3ALibrary%22%2C%22ex%3Ainfo%22%3A%7B%22author%22%3A%22JOHN%22%2C%22pages%22%3A200%7D%7D&frame=%7B%22%40context%22%3A%7B%22ex%22%3A%22http%3A%2F%2Fexample.org%2Fvocab%23%22%2C%22ex%3Ainfo%22%3A%7B%22%40type%22%3A%22%40json%22%7D%7D%2C%22ex%3Ainfo%22%3A%7B%7D%7D) still doesn't work. Hence, the statement claiming that the...
The framing doesn't work since, for how the library is defined, the `"@type"` field inside the expanded json-ld document is expected to be either another **object**, a **url** or a...
I tried your Ruby distiller, but when I frame I don't get the expected result. Maybe I'm using it wrong. Could you help me in achieving the proper framed result...