Gathering detailed insights and metrics for @types/ibm-openapi-validator
Gathering detailed insights and metrics for @types/ibm-openapi-validator
Gathering detailed insights and metrics for @types/ibm-openapi-validator
Gathering detailed insights and metrics for @types/ibm-openapi-validator
The repository for high quality TypeScript type definitions.
npm install @types/ibm-openapi-validator
Typescript
Module System
64.6
Supply Chain
72.6
Quality
75.4
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
109,007
Last Day
17
Last Week
123
Last Month
467
Last Year
11,258
NOASSERTION License
50,070 Stars
89,774 Commits
30,432 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 19, 2025
Latest Version
0.15.4
Package Id
@types/ibm-openapi-validator@0.15.4
Unpacked Size
4.02 kB
Size
1.77 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
13.3%
17
Compared to previous day
Last Week
17.1%
123
Compared to previous week
Last Month
24.2%
467
Compared to previous month
Last Year
-44.2%
11,258
Compared to previous year
npm install --save @types/ibm-openapi-validator
This package contains type definitions for ibm-openapi-validator (https://github.com/IBM/openapi-validator#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ibm-openapi-validator.
1interface validatorResultItem { 2 path: string; 3 message: string; 4} 5 6interface validatorResult { 7 errors: [] | [validatorResultItem]; 8 warnings: [] | [validatorResultItem]; 9} 10 11/** 12 * @default false 13 */ 14type validatorParameterDefaultMode = boolean; 15 16/** 17 * OpenAPI document validator 18 * @param openApiDoc - OpenAPI document object 19 * @param defaultMode - If set to true, the validator will ignore the .validaterc file and will use the [configuration defaults](https://github.com/IBM/openapi-validator#default-values). 20 * @returns Validation results 21 */ 22declare function validator( 23 openApiDoc: { [property: string]: any }, 24 defaultMode?: validatorParameterDefaultMode, 25): Promise<validatorResult>; 26 27export = validator; 28
These definitions were written by Rifa Achrinza.
No vulnerabilities found.