ColumnSpecification interface

Swagger 2.0 schema for a column within the data table representing a web service input or output. See Swagger specification: http://swagger.io/specification/

Properties

enum

If the data type is categorical, this provides the list of accepted categories.

format

Additional format information for the data type.

type

Data type of the column.

xMsIsnullable

Flag indicating if the type supports null values or not.

xMsIsordered

Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.

Property Details

enum

If the data type is categorical, this provides the list of accepted categories.

enum?: Record<string, unknown>[]

Property Value

Record<string, unknown>[]

format

Additional format information for the data type.

format?: string

Property Value

string

type

Data type of the column.

type: string

Property Value

string

xMsIsnullable

Flag indicating if the type supports null values or not.

xMsIsnullable?: boolean

Property Value

boolean

xMsIsordered

Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.

xMsIsordered?: boolean

Property Value

boolean