Skip to content

Commit d7a9d4a

Browse files
committed
Store locally openapi schemas
1 parent 9511f92 commit d7a9d4a

File tree

6 files changed

+6353
-8
lines changed

6 files changed

+6353
-8
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import schemaV20 from './v2.0/schema.json' with {type: 'json'}
2+
import schemaV30 from './v3.0/schema.json' with {type: 'json'}
3+
import schemaV31 from './v3.1/schema.json' with {type: 'json'}
4+
import schemaV32 from './v3.2/schema.json' with {type: 'json'}
5+
6+
export default {
7+
schemas: {
8+
'2.0': schemaV20,
9+
'3.0': schemaV30,
10+
'3.1': schemaV31,
11+
'3.2': schemaV32,
12+
},
13+
}

0 commit comments

Comments
 (0)