Skip to main content

Table

coursefeedbackresponses

Each row represents a learner feedback submission for a course, including the response payload and dismissal state.

Redshift
All tables

coursefeedbackresponses

Each row represents a learner feedback submission for a course, including the response payload and dismissal state.

Full schema

View all columns and table relationships (SchemaSpy)

Status group

No, this table does not include a statusgroup column.

Column details

ColumnTypeNullable
idvarchar(36)No
companyidvarchar(36)No
createdattimestampYes
updatedattimestampYes
courseidvarchar(36)No
useridvarchar(36)Yes
clientidvarchar(36)Yes
responsevarchar(65535)Yes
dismissedboolYes
dismissedreasonvarchar(65535)Yes
importidvarchar(65535)Yes

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

Sample query

select
  t.courseid,
  t.userid,
  t.clientid,
  t.response,
  t.dismissed
from coursefeedbackresponses as t
limit 100