Last active
July 21, 2017 19:52
-
-
Save cyberswat/5eabd6c9671660e6cca4c2dc1f097b48 to your computer and use it in GitHub Desktop.
CLA Test 2
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
This is my first agreement. This now different. |
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", | |
"required": true | |
}, | |
"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