{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/canvas-lms/main/json-schema/canvas-lms-assignment-schema.json", "title": "Canvas LMS Assignment", "description": "A Canvas Assignment as returned by GET /api/v1/courses/{course_id}/assignments/{id}. See https://canvas.instructure.com/doc/api/assignments.html", "type": "object", "required": ["id", "name", "course_id"], "properties": { "id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": ["string", "null"]}, "course_id": {"type": "integer"}, "created_at": {"type": "string", "format": "date-time"}, "updated_at": {"type": "string", "format": "date-time"}, "due_at": {"type": ["string", "null"], "format": "date-time"}, "lock_at": {"type": ["string", "null"], "format": "date-time"}, "unlock_at": {"type": ["string", "null"], "format": "date-time"}, "html_url": {"type": "string"}, "assignment_group_id": {"type": "integer"}, "due_date_required": {"type": "boolean"}, "allowed_extensions": {"type": "array", "items": {"type": "string"}}, "max_name_length": {"type": "integer"}, "turnitin_enabled": {"type": "boolean"}, "vericite_enabled": {"type": "boolean"}, "peer_reviews": {"type": "boolean"}, "automatic_peer_reviews": {"type": "boolean"}, "peer_review_count": {"type": "integer"}, "group_category_id": {"type": ["integer", "null"]}, "needs_grading_count": {"type": "integer"}, "position": {"type": "integer"}, "post_to_sis": {"type": ["boolean", "null"]}, "integration_id": {"type": ["string", "null"]}, "points_possible": {"type": "number"}, "submission_types": { "type": "array", "items": {"type": "string", "enum": ["discussion_topic", "online_quiz", "on_paper", "none", "external_tool", "online_text_entry", "online_url", "online_upload", "media_recording", "student_annotation"]} }, "has_submitted_submissions": {"type": "boolean"}, "grading_type": {"type": "string", "enum": ["pass_fail", "percent", "letter_grade", "gpa_scale", "points", "not_graded"]}, "grading_standard_id": {"type": ["integer", "null"]}, "published": {"type": "boolean"}, "unpublishable": {"type": "boolean"}, "only_visible_to_overrides": {"type": "boolean"}, "locked_for_user": {"type": "boolean"}, "muted": {"type": "boolean"}, "omit_from_final_grade": {"type": "boolean"}, "hide_in_gradebook": {"type": "boolean"}, "moderated_grading": {"type": "boolean"}, "grader_count": {"type": "integer"}, "final_grader_id": {"type": ["integer", "null"]}, "anonymous_grading": {"type": "boolean"}, "allowed_attempts": {"type": "integer"}, "post_manually": {"type": "boolean"} } }