json-schema-merge-allof icon indicating copy to clipboard operation
json-schema-merge-allof copied to clipboard

Simplify your schema by combining allOf

Results 18 json-schema-merge-allof issues
Sort by recently updated
recently updated
newest added

The unit tests create patterns like `(?=bar)(?=foo)`, e.g. in the test that [merges contains](https://github.com/mokkabonna/json-schema-merge-allof/blob/b3cf311e5c7891b6ab1e115ced3e98804fca1acb/test/specs/index.spec.js#L877). Yet this resulting pattern seems to be unsatisfiable. The following instances are valid w.r.t. the original...

See #44 Can not combine, only simplify anyOf and oneOf, contains etc. Also need to look at properties and items. The library is also outdated in terms of only supporting...

Some schemas have cyclical references. For example, a definition in the schema tree references a parent or ancestor For an example in the wild see the bitbucket API swagger definition....

Integer and Number JSON Schemas are immediately marked as incompatible without inspecting the other keywords in the schema. If a JSON Schema is of "type": "number" and has a "multipleOf"...

eIt seems as if the required value resolved is not firing when mixing required and non-required values: ```js export function mergeSchemas(schemas: any[]) { return mergeAllOf({ allOf: schemas, }, { resolvers:...

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

Should add all in latest spec, but this is a start.

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...

dependencies

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...

dependencies

I am using this as dependency/part of https://github.com/rjsf-team/react-jsonschema-form/ and arrow functions and `...` rest operator where not transpiled, that is, the app was not running in IE11. I guess when...