Skip to content

Instantly share code, notes, and snippets.

@ibakshay
Last active November 22, 2019 14:57
Show Gist options
  • Save ibakshay/16afaeccabadc97e3f1effa5e7e8f1d5 to your computer and use it in GitHub Desktop.
Save ibakshay/16afaeccabadc97e3f1effa5e7e8f1d5 to your computer and use it in GitHub Desktop.
Use \"Quotes\"
By Akshay....
{
"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