Create OLX Grading Policy#
You create a grading policy file to specify how problems are graded in your course.
Create the Grading Policy File#
You define policies for your course in the grading_policy.json
file.
Save the grading_policy.json
file in the policy/<course-name>
directory.
The <course-name>
directory must match the value of the url_name
attribute in the course.xml
file.
Course Policy JSON Objects#
GRADE_CUTOFFS
The minimal grade for passing the course, and receiving a certificate if offered.
GRADER
For each assignment type:
min_count
: TBD
weight
: The percentage of the total grade determined byassignments of this type. The total value for all assignment types must equal 1.0.
type
: The name of the assignment type.
short_label
: The label for the assignment type shown on the student’s Progress page.
drop_count
: The number of assignments of this type that can be dropped when calculating the final grade.
Example Grading Policy File#
{
"GRADE_CUTOFFS": {"Pass": 0.6},
"GRADER": [
{
"min_count": 3,
"weight": 0.75,
"type": "Homework",
"drop_count": 1,
"short_label": "Ex"
},
{
"short_label": "",
"min_count": 1,
"type": "Exam",
"drop_count": 0,
"weight": 0.25
}
]
}
See also
About Graded Subsections (concept)
What is Open Learning XML? (concept)
Example of an OLX Course (reference)
Getting Started with OLX (quickstart)
What is the OLX Course Structure? (reference)
Example of OLX for a Studio Course (reference)
Maintenance chart
Review Date |
Working Group Reviewer |
Release |
Test situation |