Skip to content

Commit

Permalink
docs: update
Browse files Browse the repository at this point in the history
  • Loading branch information
sagold committed Dec 2, 2024
1 parent 3452a84 commit 20b6b86
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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**:
Expand Down

0 comments on commit 20b6b86

Please sign in to comment.