Skip to content

Commit

Permalink
Merge pull request #24 from Real-Dev-Squad/feat/tag-level-items-data-…
Browse files Browse the repository at this point in the history
…models

Data models for tags , items and levels
  • Loading branch information
ankushdharkar authored Mar 31, 2023
2 parents de4ca95 + e7e5a8e commit 1b57fef
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
15 changes: 15 additions & 0 deletions items/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# items firestore collection data model

```
{
'id': string,
'itemId': string,
'itemType': string,
'levelId': string,
'levelName': string,
'levelNumber': number,
'tagId': string,
'tagName': string,
'tagType': string,
}
```
11 changes: 11 additions & 0 deletions levels/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# levels firestore collection data model

```
{
'id': string,
'date': timeStamp,
'createdBy': string,
'value': number,
'name': string,
}
```
12 changes: 12 additions & 0 deletions tags/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# tags firestore collection data model

```
{
'id': string,
'date': timeStamp,
'reason': string,
'createdBy': string,
'name': string,
'type': string,
}
```

0 comments on commit 1b57fef

Please sign in to comment.