Last active
December 3, 2020 10:02
-
-
Save temp3l/1bd50cdf471cf2a7ac017cedd9b5cc45 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
// sample JSON input: | |
let input = { "ibans": [ "DE64500105178934265111", "DE24500165174934165222" ] } | |
// generated JSON-Schema output: | |
let generated_schema = { | |
"ibans": { | |
"$id": "#/definitions/ibans", | |
"type": "array", | |
"title": "Ibans", | |
"description": "ibans description", | |
"items": { | |
"$id": "#/definitions/ibans/items", | |
"type": "string", | |
"title": "Ibans_item", | |
"description": "ibans_item description", | |
"maxLength": 200, | |
"pattern": "^[a-zA-Z]{2}[0-9]{2}s?[a-zA-Z0-9]{4}s?[0-9]{4}s?[0-9]{3}([a-zA-Z0-9]s?[a-zA-Z0-9]{0,4}s?[a-zA-Z0-9]{0,4}s?[a-zA-Z0-9]{0,4}s?[a-zA-Z0-9]{0,3})$", | |
"$comment": "IBAN", | |
"default": "DE64500105178934265111", | |
"examples": [ | |
"DE24500165174934165222" | |
] | |
}, | |
"default": [ | |
"DE64500105178934265111", | |
"DE24500165174934165222" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment