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

# Number: Greater than

> Checks that a number is greater than the given value.

export const FormField = ({property, label, required = false, diType, uiPatterns, children}) => {
  const patterns = Array.isArray(uiPatterns) ? uiPatterns : uiPatterns ? [uiPatterns] : [];
  return <div style={{
    margin: '1.5rem 0'
  }}>
      <div style={{
    display: 'flex',
    alignItems: 'baseline',
    flexWrap: 'wrap',
    gap: '0.5rem',
    marginBottom: '0.25rem'
  }}>
        <strong>{label}</strong>
        <span style={{
    fontSize: '0.7rem',
    fontWeight: 600,
    textTransform: 'uppercase',
    letterSpacing: '0.04em',
    color: required ? '#6241f5' : '#6b7280'
  }}>
          {required ? 'Required' : 'Optional'}
        </span>
      </div>

      <div>{children}</div>

      {diType || patterns.length > 0 ? <p style={{
    fontSize: '0.85rem',
    color: '#6b7280',
    marginBottom: 0
  }}>
          {diType ? <>
              See the <a href={`/references/${diType}`}>{diType}</a> reference.{' '}
            </> : null}
          {patterns.length > 0 ? <>
              Accepts a <a href={`/documentation/placeholders-and-patterns/patterns#${patterns[0]}`}>pattern</a>.
            </> : null}
        </p> : null}
    </div>;
};

Checks whether the incoming number is greater than the value you set here. The check only succeeds when the incoming value is strictly larger, so a value exactly equal to the one you set does not match. Use this to act only on amounts above a threshold, for example shipping an order only when its quantity is more than 100. If you want the threshold itself to count as a match, use [Number: Greater than or equals](/references/condition/number-greater-than-or-equals) instead.

This documentation describes: [Schema](/schemas/condition/number-greater-than)

## Fields

<FormField property="value" label="Value" required>
  The number the incoming value is compared against. The check passes when the incoming value is greater than this number. The threshold value itself does not match; only values strictly above it do.
</FormField>

## Sample data

This compares each entity's `quantity` field against the number `100`.

| Field | Value |
| ----- | ----- |
| Value | `100` |

| Incoming value | Result         |
| -------------- | -------------- |
| `99`           | Does not match |
| `100`          | Does not match |
| `101`          | Matches        |

```json Configuration theme={null}
{
  "prototype": "number-greater-than",
  "parameters": {
    "value": 100
  }
}
```
