Skip to main content

Table

userlicenses

Each row represents a license seat allocated to an individual user with role and status.

statusgroupRedshift
All tables

userlicenses

Each row represents a license seat allocated to an individual user with role and status.

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
companyidvarchar(36)
idvarchar(36)
useridvarchar(36)
licenseidvarchar(36)
statusvarchar(16)
updatedattimestamp
licenserolevarchar(65535)
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.licenseid,
  t.licenserole
from userlicenses as t
limit 100