Skip to content

Commit 6f3e6ca

Browse files
committed
Add encryption flag to cardholder name and number fields
The commit adds the `x-encripted` flag to the `cardholder.name` and `number` fields in the API and token schemas. This flag indicates that these fields should be encrypted for security purposes.
1 parent ebf2b0c commit 6f3e6ca

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

_build/api.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16899,6 +16899,7 @@ components:
1689916899
description: It is a value that allows identifying the name of the cardholder.
1690016900
example: Miguel
1690116901
type: string
16902+
x-encripted: true
1690216903
number:
1690316904
description: It is a value that allows identifying the number of the card.
1690416905
example: "4242424242424242"

schemas/tokens/token.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ properties:
3838
type: string
3939
description: "It is a value that allows identifying the name of the cardholder."
4040
example: "Miguel"
41+
x-encripted: true
4142
number:
4243
type: string
4344
description: "It is a value that allows identifying the number of the card."

0 commit comments

Comments
 (0)