Last active
November 24, 2020 04:54
-
-
Save farazahmad759/8846ead6a0acc812a86dc30293065170 to your computer and use it in GitHub Desktop.
todos.json schema for hello-todo app
This file contains hidden or 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
{ | |
"tableName": "todos", | |
"fields": [ | |
{ | |
"title": "title", | |
"type": "string" | |
}, | |
{ | |
"title": "type", | |
"type": "string" | |
}, | |
{ | |
"title": "status", | |
"type": "string" | |
} | |
] | |
} |
This file contains hidden or 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
{ | |
"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