public.vwgroupdetails

public.vwgroupdetails

Description

View for agent group details and metadata

Table Definition
CREATE VIEW vwgroupdetails AS (
 SELECT groupdetails.id,
    groupdetails.name,
    groupdetails.description,
    groupdetails.membercount,
    groupdetails.state,
    groupdetails.type,
    groupdetails.selfuri
   FROM groupdetails
)

Columns

Name Type Default Nullable Children Parents Comment
id varchar(50) true Primary Key / Agent Group GUID
name varchar(255) true Agent Group Name
description varchar(255) true Agent Group Description
membercount integer true Agent Group Number of Members (Includes all members and owners if flag set in GC)
state varchar(50) true Agent Group State
type varchar(50) true Agent Group Type
selfuri varchar(150) true

Referenced Tables

Name Columns Comment Type
public.groupdetails 8 Agent Group Lookup Data BASE TABLE