# CustomFieldValueValidationSettings

Represents the settings for field input validation.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**unique** | **boolean** | &#x60;TRUE&#x60; if this field does not allow duplicate values, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**validationPattern** | **string** | The expected format for the input. | [optional] [default to undefined]

## Example

```typescript
import { CustomFieldValueValidationSettings } from './api';

const instance: CustomFieldValueValidationSettings = {
    unique,
    validationPattern,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
