> ## Documentation Index
> Fetch the complete documentation index at: https://docs.custral.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Property types for numeric and monetary values.

## Number properties

Number properties store quantitative values. Use plain
[Number](/data/properties/number/number) for counts and scores,
[Currency](/data/properties/number/currency) when the value is money and needs
a currency code attached, and [Timer](/data/properties/number/timer) for
durations.

Numeric types are what reporting charts aggregate: sums, averages, and running
totals all depend on the value being stored as a number rather than text.
Choosing Currency over Number also formats the value correctly across the app
and keeps the currency code with it.

<CardGroup cols={2}>
  <Card title="Number" icon="hashtag" href="/data/properties/number/number">
    A signed numeric value.
  </Card>

  <Card title="Currency" icon="dollar-sign" href="/data/properties/number/currency">
    A monetary value with a currency code.
  </Card>

  <Card title="Timer" icon="stopwatch" href="/data/properties/number/timer">
    A duration in milliseconds.
  </Card>
</CardGroup>


## Related topics

- [Overview](/data/properties/common/overview.md)
