Skip to main content

Table

coursecustomfields

Each row represents a label-value pair for custom metadata on an individual course offering.

statusgroupRedshift
All tables

coursecustomfields

Each row represents a label-value pair for custom metadata on an individual course offering.

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)
courseidvarchar(36)
labelvarchar(65535)
valuevarchar(65535)
updatedattimestamp
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.label,
  t.value
from coursecustomfields as t
limit 100