TableSpecificationResponse

data class TableSpecificationResponse(val description: String? = null, val format: String? = null, val properties: Map<String, ColumnSpecificationResponse>? = null, val title: String? = null, val type: String)

The swagger 2.0 schema describing a single service input or output. See Swagger specification: http://swagger.io/specification/

Constructors

Link copied to clipboard
constructor(description: String? = null, format: String? = null, properties: Map<String, ColumnSpecificationResponse>? = null, title: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val description: String? = null

Swagger schema description.

Link copied to clipboard
val format: String? = null

The format, if 'type' is not 'object'

Link copied to clipboard

The set of columns within the data table.

Link copied to clipboard
val title: String? = null

Swagger schema title.

Link copied to clipboard

The type of the entity described in swagger.