Skip to content

Instantly share code, notes, and snippets.

@cyberswat
Last active July 21, 2017 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyberswat/5eabd6c9671660e6cca4c2dc1f097b48 to your computer and use it in GitHub Desktop.
Save cyberswat/5eabd6c9671660e6cca4c2dc1f097b48 to your computer and use it in GitHub Desktop.
CLA Test 2
This is my first agreement. This now different.
{
"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