1.5 KiB
1.5 KiB
V1TableColumnDefinition
TableColumnDefinition contains information about a column returned in the Table.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | description is a human readable description of this column. | [default to ''] |
| format | str | format is an optional OpenAPI type modifier for this column. A format modifies the type and imposes additional rules, like date or time formatting for a string. The 'name' format is applied to the primary identifier column which has type 'string' to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more. | [default to ''] |
| name | str | name is a human readable name for the column. | [default to ''] |
| priority | int | priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority. | [default to 0] |
| type | str | type is an OpenAPI type definition for this column, such as number, integer, string, or array. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more. | [default to ''] |