Skip to content

Instantly share code, notes, and snippets.

@dkwiebe
Created October 28, 2017 01:10
Show Gist options
  • Save dkwiebe/28462cf1413d233440b591fc59d69d3b to your computer and use it in GitHub Desktop.
Save dkwiebe/28462cf1413d233440b591fc59d69d3b to your computer and use it in GitHub Desktop.
{
"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