Skip to main content

Table

assignmentsubmissions

Each row represents a single learner submission to a graded assignment, including grade, comment count, and license context.

statusgroupRedshift
All tables

assignmentsubmissions

Each row represents a single learner submission to a graded assignment, including grade, comment count, and license context.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

Yes, this table includes a statusgroup column. See Status Group for details.

Column details

ColumnType
idvarchar(36)
companyidvarchar(36)
companysubdomainvarchar(255)
companyhostvarchar(255)
courseidvarchar(36)
useridvarchar(36)
assignmentidvarchar(36)
gradevarchar(16)
commentscountint4
createdattimestamp
migratedint4
updatedattimestamp
licenseidvarchar(36)
numericgradefloat8
statusgroupvarchar(256)
statusgroupupdatedattimestamp

Column names and types come from the Redshift analytics schema. SchemaSpy is authoritative for nullability, defaults, keys, and relationships.

Platform Documentation

Sample query

select
  t.courseid,
  t.userid,
  t.assignmentid,
  t.grade,
  t.commentscount
from assignmentsubmissions as t
limit 100