Created
September 29, 2019 03:03
-
-
Save Tuman829/36febe94e680a48e86874f437980e6a6 to your computer and use it in GitHub Desktop.
meetupValid
This file contains hidden or 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
{ | |
"fields":[ | |
{ | |
"name": "First Name", | |
"Constraints":{ | |
"required": true, | |
"pattern": "\A[a-zA-Z]+\z", | |
} | |
}, | |
{ | |
"name": "Last Name", | |
"Constraints":{ | |
"required": true, | |
"pattern": "\A[a-zA-Z]+\z", | |
} | |
}, | |
{ | |
"name": "Group", | |
"Constraints":{ | |
"required": true, | |
"pattern": "\A[a-zA-Z]+\z", | |
} | |
}, | |
{ | |
"name": Role", | |
"Constraints":{ | |
"required": true, | |
"pattern": "((O|o)rganizer|(P|p)resenter|(P|p)articipant)", | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment