> ## 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.

# Does not equal (Strict)

> Checks if the values are not strictly equal (different value or type).

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 value coming in is *not* strictly equal to the value you set here. It is the exact opposite of [Equals (Strict)](/references/condition/equals): the condition is met whenever the incoming value differs in either its content or its type. Because the comparison is strict, the text `"12"` counts as different from the number `12`. Use this to act on everything except one specific value, for example to handle all statuses other than `"cancelled"`. If you want `"12"` and `12` to be treated as the same, use [Does not equal (Loose)](/references/condition/not-equals-adaptive) instead.

This documentation describes: [Schema](/schemas/condition/not-equals)

## Fields

<FormField property="value" label="Value" required>
  The value the incoming value is compared against. The condition is met when the incoming value is not identical in both content and type, so a value of `"12"` is considered different from the number `12`. You can compare against text, a number, a true/false value, a list, or an empty (null) value.
</FormField>

## Sample data

This compares each entity's `quantity` field against the text value `"12"` and is met when they are not strictly equal.

| Field | Value         |
| ----- | ------------- |
| Value | `"12"` (text) |

| Incoming value | Result         |
| -------------- | -------------- |
| `"12"` (text)  | Does not match |
| `12` (number)  | Matches        |
| `"5"` (text)   | Matches        |

```json Configuration theme={null}
{
  "prototype": "not-equals",
  "parameters": {
    "value": "12"
  }
}
```
