Created
September 30, 2020 22:31
-
-
Save temp3l/128817845d5f5aad46a1c56392147ee9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"credit_card": { | |
"$id": "#/properties/credit_card", | |
"$comment": "Comment for developer", | |
"type": "string", | |
"title": "credit card number", | |
"description": "The number on the back of this credit card", | |
"examples": [ "4111 1111 1111 1111", "5500 0000 0000 0004" ], | |
"default": "4111 1111 1111 1111", | |
"minLength": 10, | |
"maxLength": 15, | |
"pattern": "^[0-9]-[0-9]-[0-9]$" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment