Skip to content

Instantly share code, notes, and snippets.

@SUPERCILEX
Last active October 4, 2017 03:40
Show Gist options
  • Save SUPERCILEX/72d6f78c4281a822166c7d8f9aa827d0 to your computer and use it in GitHub Desktop.
Save SUPERCILEX/72d6f78c4281a822166c7d8f9aa827d0 to your computer and use it in GitHub Desktop.
{
"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": "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