-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for issue with frame validation when type is @json
#506
Conversation
Signed-off-by: pasquale95 <[email protected]>
@json
Hi, did somebody have a quick look to this PR? I didn't get any news and it's been 3 months. A comment would be appreciated. |
I'm not clear on what the state of this issue is given the discussion in the spec repos, and there's an open issue on the single related test case. I haven't wrapped my head around the core issue enough to understand if the change here will have any side effects. I'm guessing it's probably ok though? It would be good to have more test cases on tricky things like this. Simplify (greatly) the example here and in the ones in the spec repo discussions to test cases to ensure implementations are doing the right thing. @gkellogg Is this change safe to merge in order to be a bit more correct? |
You can find the simplified examples inside the spec repo as 0069*.jsonld test files. |
@davidlehn, @gkellogg any update on this PR? |
Sorry, been away. Does the suggested change in w3c/json-ld-framing#146 work if you exclude |
Hi all, I've seen some commits in master from @davidlehn regarding the |
@pasquale95 I did add a change (ffb62fc) to ignore the related failing frame test 0069. That was just to keep the build systems working until this issue is resolved. My comments above still stand. I'm unclear on what to do here. At a minimum, I suspect more test cases are needed to ensure a feature like this is properly working. @gkellogg Should this be merged? It does fix the single test that's now in the test suite. But it seems from the above links that more work is needed for the feature? |
I did a minor rework of the patch and applied it here: #521. I'm not quite sure if this is fully addressed. I still think more test cases are needed at least. But we'll release it and see if there are new issues. If the CG/WG works on this we'll adapt. Thanks. |
Problem
The problem arises when we try to generate a
derivedProof
from a JSON-LD Credential by using aframeDocument
(also calledrevealDocument
) which wants to disclose a field whose type is defined as@json
inside the credential context.Use-case scenario
To explain better the issue let me draft a real use-case scenario where the problem arises. I own a VDL Credential which looks like the following:
The verifier provides me the following
frameDocument
to disclose only some fields of the VDL Credential:Among the requested fields there is the
driving_privileges
one which is defined as"@type": "@json"
inside the VLD context (available here).The goal is to produce a
derivedProof
containing the requested fields which performs correctly when verified.Expected behaviour
The frame gets validated and used to produce a
derivedProof
as the following one:Actual behaviour
The process stops when validating the frame (i.e. before generating the
derivedProof
) complaining that the attributedriving_privileges
has an invalid type@json
:As the stack trace shows, the error is located inside this library, therefore our PR to try to solve this issue.
Our Solution
We added the type
@json
among the ones which can be considered valid in the frame validation. By doing this the process runs fine and thederivedProof
is generated correctly (the one I've put inside the Expected Behaviour section has been generated once we applied the fix defined inside this PR.I remind that the type
@json
is an official type as indicated in the JSON-LD specs.