StringConstraints
age-schema-client / StringConstraints
Interface: StringConstraints
Defined in: src/schema/types.ts:166
String property constraints
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
minLength? | number | Minimum string length | src/schema/types.ts:170 |
maxLength? | number | Maximum string length | src/schema/types.ts:175 |
pattern? | string | Regular expression pattern | src/schema/types.ts:180 |
enum? | string[] | Enumerated allowed values | src/schema/types.ts:185 |
format? | string | Format validation (e.g., 'email', 'uri') | src/schema/types.ts:190 |