Skip to content

Instantly share code, notes, and snippets.

@farazahmad759
Last active November 24, 2020 04:54
Show Gist options
  • Save farazahmad759/8846ead6a0acc812a86dc30293065170 to your computer and use it in GitHub Desktop.
Save farazahmad759/8846ead6a0acc812a86dc30293065170 to your computer and use it in GitHub Desktop.
todos.json schema for hello-todo app
{
"tableName": "todos",
"fields": [
{
"title": "title",
"type": "string"
},
{
"title": "type",
"type": "string"
},
{
"title": "status",
"type": "string"
}
]
}
{
"tableName": "users",
"fields": [
{
"title": "name",
"type": "string"
},
{
"title": "email",
"type": "string"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment