Last active
July 21, 2020 17:04
-
-
Save adambouchard/0eaa839e3156097132d660c40055eaf1 to your computer and use it in GitHub Desktop.
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
const rubric = { | |
dimensions: [ | |
{id: 1, text: "Writing Quality"}, | |
{id: 2, text: "Description of Service Learning"}, | |
{id: 3, text: "Insights and Understanding"}, | |
{id: 4, text: "Committment & Challenge"} | |
], | |
criteria: [ | |
{id: 1, text: "Excellent", points: 4}, | |
{id: 2, text: "Very Good", points: 3}, | |
{id: 3, text: "Satisfactory", points: 2}, | |
{id: 4, text: "Needs Work", points: 1}, | |
{id: 5, text: "Unsatisfactory", points: 0} | |
], | |
scales: [ | |
{id: 1, criteriaId: 1, dimensionId: 1, text: "Strong writing"}, | |
{id: 2, criteriaId: 2, dimensionId: 1, text: "Good writing"}, | |
{id: 3, criteriaId: 3, dimensionId: 1, text: "Adequate writing"}, | |
{id: 4, criteriaId: 4, dimensionId: 1, text: "difficult to comprehend"}, | |
{id: 5, criteriaId: 5, dimensionId: 1, text: "No idea what they are saying"} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment