-
Notifications
You must be signed in to change notification settings - Fork 36
Added KYC purpose #576
base: master
Are you sure you want to change the base?
Added KYC purpose #576
Conversation
This has been almost a year in PR, @adamaltman does this PR still apply? |
Yes, it does. Hard to get a review around here. ;-) |
@@ -23,6 +23,11 @@ properties: | |||
enum: | |||
- identity-proof | |||
- address-proof | |||
purpose: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it make sense to restrict this field to a nullable enum
?
I can not imagine too many reasons to request a KYC check (basically it can serve the purpose of accepting a customer or to send money to someone). Having an enum would also allow us to get an understanding of what is the most common use of this tool.
Also, we always can evolve from an enum to a string while the opposite would be more difficult.
I am not sure enough about all the possible values the enum could accept, though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may make sense. Maybe these:
- acceptance
- remittance
- investor
- other
What do you think of those possible values?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those values seem ok to me as a starting point.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@adamaltman Those possibilities seem okay for now. We can always add to or change the enum if needed.
No description provided.