Last active
April 22, 2019 20:32
-
-
Save grosscol/9d009f385ea6d8f2297cd8a4ad58f3ad to your computer and use it in GitHub Desktop.
Illustrating performance as a dimension or not.
This file contains hidden or 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
{ | |
"MAPT_data_points":[ | |
{ "performer": "Alice", | |
"time": "2019-01-01", | |
"measure": "Documentation Rate", | |
"performance": "0.90" | |
}, | |
{ "performer": "Alice", | |
"time": "2019-02-01", | |
"measure": "Documentation Rate", | |
"performance": "0.80" | |
} | |
] | |
}, | |
{ | |
"MAT_data_points":[ | |
{ "performer": "Alice", | |
"time": "2019-01-01", | |
"measure": { | |
"name": "Documentation Rate", | |
"value": 0.90 | |
} | |
}, | |
{ "performer": "Alice", | |
"time": "2019-02-01", | |
"measure": { | |
"name": "Documentation Rate", | |
"value": 0.80 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment