# AUR4103

## Error Message

`AUR4103: Serializing a non-string displayName for rule property is not supported. Given: {{value}}`

## Description

This error occurs when validation rule serialization encounters a `displayName` value that is not a string. Only string `displayName` values are supported for serialization.

## Common Scenarios

```ts
import { ValidationRules } from '@aurelia/validation';

class Model {
  public name = '';
}

// ❌ Non-string displayName
ValidationRules
  .ensure((x: Model) => x.name)
  .displayName({ text: 'Name' } as any)
  .required()
  .on(Model);
```

## Solution

* Ensure `displayName` is a string when rules need to be serialized.

```ts
import { ValidationRules } from '@aurelia/validation';

class Model {
  public name = '';
}

// ✅ String displayName
ValidationRules
  .ensure((x: Model) => x.name)
  .displayName('Name')
  .required()
  .on(Model);
```

## Troubleshooting

* If you rely on dynamic/localized display names, apply them at runtime (after hydration) rather than serializing them.
* Inspect the error’s `{{value}}` to find which rule property had an unsupported `displayName`.


---

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