Interface APISchemaValidation<T>

Interface representing the data structure for a schema validation.

DataObj

interface APISchemaValidation<
    T extends APISchemaValidationTypes = APISchemaValidationTypes,
> {
    type: T;
    required?: boolean;
    enum?: any[];
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

type: T
required?: boolean
enum?: any[]