| 91 | * @since 1.0.0 |
| 92 | */ |
| 93 | export interface String extends Annotations { |
| 94 | type: "string" |
| 95 | minLength?: number |
| 96 | maxLength?: number |
| 97 | pattern?: string |
| 98 | format?: string |
| 99 | contentMediaType?: string |
| 100 | contentSchema?: JsonSchema |
| 101 | allOf?: globalThis.Array<{ |
| 102 | minLength?: number |
| 103 | maxLength?: number |
| 104 | pattern?: string |
| 105 | }> |
| 106 | nullable?: boolean |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * @category model |
no outgoing calls
no test coverage detected