Skip to content

Instantly share code, notes, and snippets.

@ibakshay
Last active October 13, 2019 08:50
Show Gist options
  • Save ibakshay/da8609e37eb8ba18154c58965352570a to your computer and use it in GitHub Desktop.
Save ibakshay/da8609e37eb8ba18154c58965352570a to your computer and use it in GitHub Desktop.
CLA Assistant Test.......
{
"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,
"required": true
},
"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