Created
October 28, 2017 01:10
-
-
Save dkwiebe/28462cf1413d233440b591fc59d69d3b 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
{ | |
"name": { | |
"title": "Full Name", | |
"type": "string", | |
"githubKey": "name" | |
}, | |
"email": { | |
"title": "E-Mail", | |
"type": "string", | |
"githubKey": "email", | |
"required": true | |
}, | |
"age": { | |
"title": "Age", | |
"description": "Age in years", | |
"type": "number", | |
"minimum": 18, | |
"maximum": 99 | |
}, | |
"agreement": { | |
"title": "I have read and agree to the CLA", | |
"type": "boolean", | |
"required": true | |
}, | |
"category": { | |
"title": "How do you sign?", | |
"type": { | |
"enum": [ | |
"I am signing on behalf of myself.", | |
"I am signing on behalf of my employer." | |
] | |
}, | |
"required": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment