Skip to main content

Table

onboardingsurveyresponses

Each row represents one question-answer pair from an onboarding survey response, with user and survey linkage.

statusgroupRedshift
All tables

onboardingsurveyresponses

Each row represents one question-answer pair from an onboarding survey response, with user and survey linkage.

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)
useridvarchar(36)
onboardingsurveyidvarchar(36)
questionvarchar(65535)
answervarchar(65535)
createdattimestamp
updatedattimestamp
licenseidvarchar(36)
statusgroupvarchar(256)
statusgroupupdatedattimestamp

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

Sample query

select
  t.userid,
  t.onboardingsurveyid,
  t.question,
  t.answer,
  t.licenseid
from onboardingsurveyresponses as t
limit 100