Last active
November 22, 2019 14:57
-
-
Save ibakshay/16afaeccabadc97e3f1effa5e7e8f1d5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Use \"Quotes\" | |
By Akshay.... |
This file contains hidden or 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": "readonly", | |
"githubKey": "email", | |
"required": false | |
}, | |
"story": { | |
"title": "Tell us more about \\"you\\"", | |
"description": "Your life story", | |
"type": "textarea", | |
"required": false | |
}, | |
"age": { | |
"title": "Age", | |
"description": "Age in years", | |
"type": "number", | |
"minimum": 18, | |
"required": true | |
}, | |
"address": { | |
"title": "Postal Address", | |
"description": "Yes the good old postal address ...", | |
"type": "string" | |
}, | |
"agreement": { | |
"type": "boolean", | |
"title": "I have the right to assign copyright for contributions to this project", | |
"description": "I have the right to assign copyright for contributions to this project description" | |
}, | |
"category": { | |
"title": "How do you sign?", | |
"type": { | |
"enum": [ | |
"I am signing on behalf of myself.", | |
"I am signing on behalf of my employer." | |
] | |
} | |
}, | |
"required": ["category", "agreement", "addresss"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment