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 };
}