# Interface: NumericSchema

Defined in: [schema.ts:323](https://github.com/coda/packs-sdk/blob/847d13d5a58c742cf00b61d2f56f80ad74747aee/schema.ts#L323)

A schema representing a return value or object property that is a numeric value, i.e. a raw number with an optional decimal precision.

## Extends

- `BaseNumberSchema`

## Properties

### codaType?

> `optional` **codaType**: [`Percent`](../../enumerations/ValueHintType/#percent)

Defined in: [schema.ts:325](https://github.com/coda/packs-sdk/blob/847d13d5a58c742cf00b61d2f56f80ad74747aee/schema.ts#L325)

If specified, instructs Coda to render this value as a percentage.

#### Overrides

`BaseNumberSchema.codaType`

______________________________________________________________________

### description?

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

Defined in: [schema.ts:285](https://github.com/coda/packs-sdk/blob/847d13d5a58c742cf00b61d2f56f80ad74747aee/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`

______________________________________________________________________

### precision?

> `optional` **precision**: `number`

Defined in: [schema.ts:327](https://github.com/coda/packs-sdk/blob/847d13d5a58c742cf00b61d2f56f80ad74747aee/schema.ts#L327)

The decimal precision. The number will be rounded to this precision when rendered.

______________________________________________________________________

### type

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

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

Identifies this schema as relating to a number value.

#### Inherited from

`BaseNumberSchema.type`

______________________________________________________________________

### useThousandsSeparator?

> `optional` **useThousandsSeparator**: `boolean`

Defined in: [schema.ts:329](https://github.com/coda/packs-sdk/blob/847d13d5a58c742cf00b61d2f56f80ad74747aee/schema.ts#L329)

If specified, will render thousands separators for large numbers, e.g. `1,234,567.89`.
