# Interface: SliderSchema

Defined in: [schema.ts:454](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L454)

A schema representing a return value or object property that is a number that should be rendered as a slider.

## Extends

- `BaseNumberSchema`\<[`Slider`](../../enumerations/ValueHintType/#slider)>

## Properties

### codaType

> **codaType**: [`Slider`](../../enumerations/ValueHintType/#slider)

Defined in: [schema.ts:456](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L456)

Instructs Coda to render this value as a slider.

#### Overrides

`BaseNumberSchema.codaType`

______________________________________________________________________

### description?

> `optional` **description**: `string`

Defined in: [schema.ts:285](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L285)

A explanation of this object schema property shown to the user in the UI.

If your pack has an object schema with many properties, it may be useful to explain the purpose or contents of any property that is not self-evident.

#### Inherited from

`BaseNumberSchema.description`

______________________________________________________________________

### maximum?

> `optional` **maximum**: `string` | `number`

Defined in: [schema.ts:460](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L460)

The maximum value selectable by this slider (supports number or formula).

______________________________________________________________________

### minimum?

> `optional` **minimum**: `string` | `number`

Defined in: [schema.ts:458](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L458)

The minimum value selectable by this slider (supports number or formula).

______________________________________________________________________

### showValue?

> `optional` **showValue**: `boolean`

Defined in: [schema.ts:464](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L464)

Whether to display the underlying numeric value in addition to the slider.

______________________________________________________________________

### step?

> `optional` **step**: `string` | `number`

Defined in: [schema.ts:462](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L462)

The minimum amount the slider can be moved when dragged (supports number or formula).

______________________________________________________________________

### type

> **type**: [`Number`](../../enumerations/ValueType/#number)

Defined in: [schema.ts:314](https://github.com/coda/packs-sdk/blob/b2b4c9dba5ca748bdbb94481cc13b5ca3c328ef6/schema.ts#L314)

Identifies this schema as relating to a number value.

#### Inherited from

`BaseNumberSchema.type`
