File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 7.0.0
4
+
5
+ - b9c4bcb Add support for ` additionalItems ` for tuple types
6
+ - c5f4f03 Add support for ` minItems ` and ` maxItems `
7
+
3
8
## 6.1.0
4
9
5
10
- 57f759f Add @tslint directive to disable linting for generated files by default (#192 )
Original file line number Diff line number Diff line change @@ -146,6 +146,8 @@ json2ts -i foo.json -o foo.d.ts --style.singleQuote --no-style.semi
146
146
- [x] ` allOf ` ("intersection")
147
147
- [x] ` anyOf ` ("union")
148
148
- [x] ` oneOf ` (treated like ` anyOf ` )
149
+ - [x] ` maxItems ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L166 ) )
150
+ - [x] ` minItems ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L165 ) )
149
151
- [x] ` additionalProperties ` of type
150
152
- [x] ` patternProperties ` (partial support)
151
153
- [x] [ ` extends ` ] ( https://github.com/json-schema/json-schema/wiki/Extends )
@@ -163,8 +165,6 @@ json2ts -i foo.json -o foo.d.ts --style.singleQuote --no-style.semi
163
165
- ` multipleOf ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L186 ) )
164
166
- ` maximum ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L183 ) )
165
167
- ` minimum ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L182 ) )
166
- - ` maxItems ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L166 ) )
167
- - ` minItems ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L165 ) )
168
168
- ` maxProperties ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L113 ) )
169
169
- ` minProperties ` ([ eg] ( https://github.com/tdegrunt/jsonschema/blob/67c0e27ce9542efde0bf43dc1b2a95dd87df43c3/examples/all.js#L112 ) )
170
170
- ` not ` /` disallow `
You can’t perform that action at this time.
0 commit comments