-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
> footprint or high performance, this package focuses on exposing utilities for browser and node environments and | ||
> lessens the pain to build custom tools around json-schema. | ||
> ⚠️ This documentation refers to the upcoming release version 10, which can be installed by `npm install [email protected]rc2`. For the latest release please refer to the [documentation of version 9.3.5](https://github.com/sagold/json-schema-library/tree/v9.3.5) | ||
> ⚠️ This documentation refers to the upcoming release version 10, which can be installed by `npm install [email protected]rc3`. For the latest release please refer to the [documentation of version 9.3.5](https://github.com/sagold/json-schema-library/tree/v9.3.5) | ||
<p style="text-align:center"> | ||
<a href="#draft-methods">draft methods</a> | <a href="#draft-extensions">draft extensions</a> | <a href="#draft-customization">draft customization</a> | <a href="#breaking-changes">breaking changes</a> | ||
|
@@ -1009,6 +1009,13 @@ _Draft 2019-09_ requires collection of previous resolved sub-schemas. Thus, an a | |
|
||
- `step` and resolvers work on and return a `schemaNode`, containing the requested schema | ||
|
||
A control property `__oneOfIndex: number` is added to resolved oneOf-schema to retrieve the source of the original schema. If this unwanted behaviour you can disabled this behaviour by: | ||
|
||
```ts | ||
import { settings } from "json-schema-library"; | ||
settings.EXPOSE_ONE_OF_INDEX = false; | ||
``` | ||
|
||
### v9.0.0 | ||
|
||
**breaking changes**: | ||
|