new Table(name, group, shortDescription, description, isEnabled, queryLanguages, keys, schema)
    Defines the properties of a LiveView Table. Properties are read-only.
    Parameters:
| Name | Type | Description | 
|---|---|---|
name | 
            
            String | The name of the table. | 
group | 
            
            String | The group the table belongs to. | 
shortDescription | 
            
            String | A short description of the table. Ideal for length-limited fields. | 
description | 
            
            String | A full description of the table. | 
isEnabled | 
            
            boolean | A flag indicating whether or not the table is enabled. | 
queryLanguages | 
            
            String | A CSV string of supported query languages for this table. | 
keys | 
            
            Array | Field names of key fields | 
schema | 
            
            LiveView.Schema | The Schema that defines the table fields. | 
Members
description :String
    A full description of the table.
    Type:
- String
 
group :String
    The group the table belongs to.
    Type:
- String
 
isEnabled :boolean
    A flag indicating whether or not the table is enabled.
    Type:
- boolean
 
keys :Array
    An array of string field names identifying the table's key fields.
    Type:
- Array
 
name :String
    The name of the table.
    Type:
- String
 
queryLanguages :String
    A CSV string of supported query languages for this table.
    Type:
- String
 
schema :LiveView.Schema
    The 
    Schema for the table.
Type:
shortDescription :String
    A short description of the table. Ideal for length-limited fields.
    Type:
- String