Skip to content

Commit

Permalink
chore edit intent_to_retain type (#310)
Browse files Browse the repository at this point in the history
this PR aims to solve this issue #291

the value has been edited from "true" to true to specify that it is a boolean value.
  • Loading branch information
cmarco0 authored Jun 17, 2024
1 parent 63b4d96 commit 949eac2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/en/remote-flow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ Below is a non-normative response example:
"path": [
"$.unique_id"
],
"intent_to_retain": "true"
"intent_to_retain": true
}
]
}
Expand Down Expand Up @@ -804,19 +804,19 @@ Below is a non-normative response example:
"path": [
"$.mdoc.family_name"
],
"intent_to_retain": "false"
"intent_to_retain": false
},
{
"path": [
"$.mdoc.portrait"
],
"intent_to_retain": "false"
"intent_to_retain": false
},
{
"path": [
"$.mdoc.driving_privileges"
],
"intent_to_retain": "false"
"intent_to_retain": false
}
]
}
Expand Down

0 comments on commit 949eac2

Please sign in to comment.