# Enumeration: CurrencyFormat

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

Enumeration of formats supported by schemas that use [ValueHintType.Currency](../ValueHintType/#currency).

These affect how a numeric value is rendered in docs.

## Enumeration Members

### Accounting

> **Accounting**: `"accounting"`

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

Indicates the value should be rendered as a number with a currency symbol as a prefix, but padded to allow the numeric values to line up vertically, e.g.

```
$       2.50
$      29.99
```

______________________________________________________________________

### Currency

> **Currency**: `"currency"`

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

Indicates the value should be rendered as a number with a currency symbol as a prefix, e.g. `$2.50`.

______________________________________________________________________

### Financial

> **Financial**: `"financial"`

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

Indicates the value should be rendered as a number without a currency symbol, e.g. `2.50`.
