Last active
October 4, 2017 03:40
-
-
Save SUPERCILEX/95813a9e0ff4854e3d51dbff75282aef to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"teams": { // Collection | |
"teamId1": { // Document | |
"name": "SERT", | |
"number": 2521, | |
"owners": { // Object within document | |
"uid1": 2521, // We sort our teams in ascending order by team number | |
"uid2": { ... }, | |
"uid3": { ... } | |
}, | |
"scouts": { // Subcollection | |
"scoutId1": { // Document | |
"name": "Scout 1", | |
"timestamp": 1489877223288, // We sort our scouts in descending order by creation date | |
"metrics": { // Subcollection | |
// List of metrics | |
} | |
}, | |
"scoutId2": { ... }, | |
"scoutId3": { ... } | |
} | |
// Other fields | |
}, | |
"teamId2": { ... }, | |
"teamId3": { ... } | |
}, | |
"templates": { // Collection | |
"templateId1": { // Document | |
"name": "My custom template", | |
"timestamp": 1489877223288, | |
"owners": { // Object within document | |
"uid1": 1489877223288, // We also sort our templates in descending order by creation date | |
"uid2": { ... }, | |
"uid3": { ... } | |
}, | |
"metrics": { // Subcollection | |
// List of metrics to be used for a scout | |
} | |
}, | |
"templateId2": { ... }, | |
"templateId3": { ... } | |
}, | |
"users": { // Collection | |
"uid1": { // Document | |
"name": "Alex Saveau", | |
"email": "[email protected]", | |
// Other fields | |
}, | |
"uid2": { ... }, | |
"uid3": { ... } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment