Skip to content

Instantly share code, notes, and snippets.

@SUPERCILEX
Last active October 4, 2017 03:40
Show Gist options
  • Save SUPERCILEX/95813a9e0ff4854e3d51dbff75282aef to your computer and use it in GitHub Desktop.
Save SUPERCILEX/95813a9e0ff4854e3d51dbff75282aef to your computer and use it in GitHub Desktop.
{
"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": "saveau.alexandre@gmail.com",
// Other fields
},
"uid2": { ... },
"uid3": { ... }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment