Created
April 26, 2017 06:22
-
-
Save saarmstrong/6c31982e5feeabe3b6a3a0b3452fceb6 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"social": { | |
"title": "Social Networks", | |
"subtitle": "Lorem ipsum dorem.", | |
"active": true, | |
"services": { | |
"twitter": { | |
"fields": [ | |
{ | |
"name": "username" | |
"type": "text", | |
"required": true, | |
"minlength": 3, | |
"maxlength"; 255 | |
} | |
] | |
}, | |
"facebook": { | |
"fields": [ | |
{ | |
"name": "url" | |
"type": "text", | |
"required": true, | |
"minlength": 8, | |
"maxlength"; 255 | |
} | |
] | |
} | |
} | |
}, | |
"company": { | |
"title": "Company", | |
"subtitle": "Enter information about your company and title.", | |
"active": true, | |
"fields": [ | |
{ | |
"name": "Name" | |
"type": "text", | |
"required": true, | |
"minlength": 3, | |
"maxlength"; 255 | |
}, | |
{ | |
"name": "Location" | |
"type": "text", | |
"required": false, | |
"minlength": 3, | |
"maxlength"; 255 | |
}, | |
{ | |
"name": "Title" | |
"type": "select", | |
"required": false, | |
"options": [ | |
{ | |
"name": "Head Chef", | |
"value": "Head Chef" | |
}, | |
{ | |
"name": "Sous Chef", | |
"value": "Sous Chef" | |
}, | |
{ | |
"name": "Software Engineer", | |
"value": "Software Engineer" | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment