Skip to content

Commit

Permalink
make path_nested path relative in the presentation submission example
Browse files Browse the repository at this point in the history
Signed-off-by: Nemanja Patrnogic <[email protected]>
  • Loading branch information
nemqe committed Jun 21, 2024
1 parent c0013b6 commit 465d9d2
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions examples/response/presentation_submission_multiple_vps.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"id": "Presentation example 2",
"definition_id": "Example with multiple VPs",
"descriptor_map": [
{
"id": "ID Card with constraints",
"format": "ldp_vp",
"path": "$[0]",
"path_nested": {
"format": "ldp_vc",
"path": "$[0].verifiableCredential[0]"
}
},
{
"id": "Ontario Health Insurance Plan",
"format": "jwt_vp_json",
"path": "$[1]",
"path_nested": {
"format": "jwt_vc_json",
"path": "$[1].vp.verifiableCredential[0]"
}
}
]
}
"id": "Presentation example 2",
"definition_id": "Example with multiple VPs",
"descriptor_map": [
{
"id": "ID Card with constraints",
"format": "ldp_vp",
"path": "$[0]",
"path_nested": {
"format": "ldp_vc",
"path": "$.verifiableCredential[0]"
}
},
{
"id": "Ontario Health Insurance Plan",
"format": "jwt_vp_json",
"path": "$[1]",
"path_nested": {
"format": "jwt_vc_json",
"path": "$.vp.verifiableCredential[0]"
}
}
]
}

0 comments on commit 465d9d2

Please sign in to comment.