# AUR4105

## Error Message

`AUR4105: Unsupported rule {{ruleName}}`

## Description

This error occurs when attempting to hydrate a validation rule that is not recognized or supported by the current validation system. This can happen when:

1. Using custom rules that weren't registered
2. Deserializing rules from a different validation library
3. Rule names have changed between versions
4. Typos in rule names

## Common Scenarios

```typescript
// ❌ Problem: Unsupported rule name
const rules = [{
  property: 'age',
  rules: [{ name: 'isPositiveInteger' }] // Custom rule not registered
}];
```

## Solution

```typescript
// ✅ Correct: Register custom rules first
import { ValidationRules } from '@aurelia/validation';

// Register custom rule
ValidationRules.customRule(
  'isPositiveInteger',
  (value) => value > 0 && Number.isInteger(value),
  'Value must be a positive integer'
);

// Now the rule can be hydrated
validationRules.hydrateRules(rules);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/4100-to-4106/aur4105.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
