Last active
October 4, 2017 03:40
-
-
Save SUPERCILEX/72d6f78c4281a822166c7d8f9aa827d0 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
{ | |
"team-indices": { | |
"uid1": { | |
"teamKey1": 2521, // We sort our teams in ascending order by team number | |
"teamKey2": { ... }, | |
"teamKey3": { ... } | |
}, | |
"uid2": { ... }, | |
"uid3": { ... } | |
}, | |
"teams": { | |
"teamKey1": { | |
"name": "SERT", | |
"number": 2521, | |
// Other fields | |
}, | |
"teamKey2": { ... }, | |
"teamKey3": { ... } | |
}, | |
"scout-indices": { | |
"teamKey1": { | |
"scoutKey1": 1489877223288, // We sort our scouts in descending order by creation date | |
"scoutKey2": { ... }, | |
"scoutKey3": { ... } | |
}, | |
"teamKey2": { ... }, | |
"teamKey3": { ... } | |
}, | |
"scouts": { | |
"scoutKey1": { | |
"name": "Scout 1", | |
"metrics": { | |
// List of metrics | |
} | |
}, | |
"scoutKey2": { ... }, | |
"scoutKey3": { ... } | |
}, | |
"template-indices": { | |
"uid1": { | |
"templateKey1": 1489877223288, // We also sort our templates in descending order by creation date | |
"templateKey2": { ... }, | |
"templateKey3": { ... } | |
}, | |
"uid2": { ... }, | |
"uid3": { ... } | |
}, | |
"templates": { | |
"templateKey1": { | |
"name": "My custom template", | |
"metrics": { | |
// List of metrics to be used for a scout | |
} | |
}, | |
"templateKey2": { ... }, | |
"templateKey3": { ... } | |
}, | |
"users": { | |
"uid1": { | |
"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