ColumnSpecificationResponse

data class ColumnSpecificationResponse(val enum: List<Any>? = null, val format: String? = null, val type: String, val xMsIsnullable: Boolean? = null, val xMsIsordered: Boolean? = null)

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/

Constructors

Link copied to clipboard
constructor(enum: List<Any>? = null, format: String? = null, type: String, xMsIsnullable: Boolean? = null, xMsIsordered: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enum: List<Any>? = null

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

Link copied to clipboard
val format: String? = null

Additional format information for the data type.

Link copied to clipboard

Data type of the column.

Link copied to clipboard
val xMsIsnullable: Boolean? = null

Flag indicating if the type supports null values or not.

Link copied to clipboard
val xMsIsordered: Boolean? = null

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