@novice1/validator-json - v0.1.9
    Preparing search index...

    Type Alias ValidatorJsonSchema

    ValidatorJsonSchema:
        | SomeJSONSchema
        | {
            body?: SomeJSONSchema
            | { [x: string]: SomeJSONSchema };
            cookies?: SomeJSONSchema | { [x: string]: SomeJSONSchema };
            files?: SomeJSONSchema | { [x: string]: SomeJSONSchema };
            headers?: SomeJSONSchema | { [x: string]: SomeJSONSchema };
            params?: SomeJSONSchema | { [x: string]: SomeJSONSchema };
            query?: SomeJSONSchema | { [x: string]: SomeJSONSchema };
        }