Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,111 changes: 1,111 additions & 0 deletions examples/valid/openapi.v3.2.yml

Large diffs are not rendered by default.

1,308 changes: 62 additions & 1,246 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
"debug": "^4.3.7",
"jsonpathly": "^2.0.2",
"mergician": "^2.0.2",
"oas-schemas": "git+https://[email protected]/OAI/OpenAPI-Specification.git#882d1caedb0bff825a1fd10728e7e3dc43912d37",
"open": "^10.1.0"
}
}
13 changes: 13 additions & 0 deletions src/core/schemas/oas-schemas/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import schemaV20 from './v2.0/schema.json' with {type: 'json'}
import schemaV30 from './v3.0/schema.json' with {type: 'json'}
import schemaV31 from './v3.1/schema.json' with {type: 'json'}
import schemaV32 from './v3.2/schema.json' with {type: 'json'}

export default {
schemas: {
'2.0': schemaV20,
'3.0': schemaV30,
'3.1': schemaV31,
'3.2': schemaV32,
},
}
Loading
Loading