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
| Column | Type | Nullable |
|---|---|---|
id | varchar(36) | No |
companyid | varchar(36) | No |
createdat | timestamp | Yes |
updatedat | timestamp | Yes |
courseid | varchar(36) | No |
userid | varchar(36) | Yes |
clientid | varchar(36) | Yes |
response | varchar(65535) | Yes |
dismissed | bool | Yes |
dismissedreason | varchar(65535) | Yes |
importid | varchar(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