Skip to content

AjvValidateOptions

@tsed/ajv

Usage

typescript
import { AjvValidateOptions } from "@tsed/ajv";

See /packages/specs/ajv/src/types/services/AjvService.ts.

Overview

ts
interface AjvValidateOptions extends Record<string, any> {
    schema?: JsonSchema | Partial<JsonSchemaObject>;
    type?: Type<any> | any;
    collectionType?: Type<any> | any;
}

schema

ts
schema?: JsonSchema | Partial<JsonSchemaObject>;

type

ts
type?: Type<any> | any;

collectionType

ts
collectionType?: Type<any> | any;

Released under the MIT License.