Skip to content

Enumeration: CurrencyFormat

core.CurrencyFormat

Enumeration of formats supported by schemas that use Currency.

These affect how a numeric value is rendered in docs.

Enumeration Members

Accounting

Accounting = "accounting"

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

Defined in

schema.ts:426


Currency

Currency = "currency"

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

Defined in

schema.ts:416


Financial

Financial = "financial"

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

Defined in

schema.ts:430