Skip to content

Instantly share code, notes, and snippets.

@Tuman829
Last active September 29, 2019 04:17
Show Gist options
  • Save Tuman829/006d465818454c9ee838261bd776a8e9 to your computer and use it in GitHub Desktop.
Save Tuman829/006d465818454c9ee838261bd776a8e9 to your computer and use it in GitHub Desktop.
Valid CSV format
{
"title": "Group Upload format",
"description": "Meetup app CSV Upload",
"fields": [
{
"name": "First Name",
"description": "First Name",
"constraints": {
"required": true,
"pattern": "[a-zA-Z]"
}
},
{
"name": "Last Name",
"description": "Last Name",
"constraints": {
"required": true,
"pattern": "[a-zA-Z]"
}
},
{
"name": "Group",
"description": "Group name)",
"constraints": {
"required": true,
"pattern": "[a-zA-Z]"
}
},
{
"name": "Role",
"description": "Organizer, Presenter, Particant",
"constraints": {
"required": true,
"pattern": "((O|o)rganizer|(P|p)resenter|(P|p)articipant)"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment