Closed alenhorvat closed 2 months ago
Hi Alen,
I agree that the current form is not ideal for parsing, especially in strongly typed languages. However, we did consider the approaches similar to the ones you propose when designing the array feature, but we decided against it in the end. If I remember correctly, the reasons were:
None of these are a really "hard" reason to do it they way we do today; but neither is the typing problem a reason not to do it.
Dear Daniel,
Thank you for your answer.
Yes, with nested array the syntax basically boils down to JSON pointers which were already discussed. I missed the nested arrays.
None of these are a really "hard" reason to do it they way we do today; but neither is the typing problem a reason not to do it.
I agree and it's your design decision. Due to nested arrays is either as is or pointers.
The issue can be closed.
Thank you for your answers and time.
Dear,
thank you for the great work!
I have a question about the design-rational behind the "Disclosures for array elements" (https://www.ietf.org/archive/id/draft-ietf-oauth-selective-disclosure-jwt-12.html#name-disclosures-for-array-eleme)
The current design transforms arrays into mixed-type arrays (which is compatible with JSON format), but it is causing parsing inconveniences in some languages; Example: a credential has a claim which is a single-type array, e.g., array of strings. If SD-JWT is applied, the claim type must be changed into an interface and when parsed, type checking is performed to detect hidden claims.
An alternative might be ["claim-name.3", "value"] (and put into _sd as key-value claims) or by introducing explicit types ["array-element", "array-claim-name", "position", "value"] (and put into _sd as key-value claims)
there would be 2 types:
Thank you for your time and answers!