Skip to content

Instantly share code, notes, and snippets.

@mseymour
Last active December 24, 2015 03:29
Show Gist options
  • Save mseymour/6737789 to your computer and use it in GitHub Desktop.
Save mseymour/6737789 to your computer and use it in GitHub Desktop.
a JSON file that describes an HTML form for submission.
{
"title": "Regional Presidents Report",
"report_type": "club",
"form": [
{
"title": "Identification",
"items": [
{ "type": "text", "label": "Full Name" },
{ "type": "email", "label": "Email" },
{ "type": "text", "label": "Club" },
{ "type": "monthpicker", "label": "Date" }
]
},
{
"title": "Membership Details",
"items": [
{ "type": "text", "label": "Number enrolled at first of month" },
{ "type": "text", "label": "Number enrolled at end of month" },
{ "type": "textarea", "label": "Indicated details for any change in above (name and/or address)" }
]
},
{
"title": "Board of Directors Meetings Held",
"items": [
{ "type": "items", "items": [
{ "type": "datepicker", "label": "Date held" },
{ "type": "text", "label": "Number present" },
{ "type": "textarea", "label": "Details of meeting" },
{ "type": "textarea", "label": "Changes in club officers" }
]}
]
},
{
"title": "Club Meetings (Make this into a type of multiple with separate inputs.)",
"items": [
{ "type": "text", "label": "Number of meetings held" },
{ "type": "text", "label": "Average attendance (%)" },
{ "type": "textarea", "label": "Highlights of each meeting" }
]
},
{
"title": "Fundraising Projects",
"items": [
{ "type": "items", "items": [
{ "type": "text", "label": "Project" },
{ "type": "text", "label": "Anticipated profit" },
{ "type": "datepicker", "label": "Date" }
]}
]
},
{
"title": "Service Projects",
"items": [
{ "type": "textarea", "label": "Youth & Community Service" },
{ "type": "textarea", "label": "Alexander Scholarship Fund" },
{ "type": "textarea", "label": "Human Crisis & Time of Fast" },
{ "type": "textarea", "label": "YMCA Service" },
{ "type": "textarea", "label": "Brotherhood" },
{ "type": "textarea", "label": "Extension, Membership, & Conservation" },
{ "type": "textarea", "label": "World Outlook & Brother Clubs" },
{ "type": "textarea", "label": "Endowment Fund" },
{ "type": "textarea", "label": "YEEP & STEP" }
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment