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

JSON Schema Validation, Annotation, and Bundling. Supports Draft 04, 06, 07, 2019-09, 2020-12, OpenAPI 3.0, and OpenAPI 3.1

Results 8 json-schema issues
Sort by recently updated
recently updated
newest added

Hi! Any chance of supporting YAML validations of a json schema?

I really can't figure out how to just import a schema that's defined inline. How do I load a simple schema and then execute it using this library without using...

Currently the definition of `JsonType` is as follows: https://github.com/hyperjump-io/json-schema-core/blob/c808bedbb80e90b649b263c92c38df23a32e87bb/lib/common.d.ts#L1 I've haven't read all the specs, but draft-07 and 2020-12 have identical definitions for "type": > String values MUST be one...

The `$id` description is only added for now to see if updating the node module would make things work correctly.

### I have the following schema ```jsonc { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "array", "items": { "type": "string" } } ``` ### and following data ```jsonc [1,2,3] ``` ### Now when I...

I like to use the Hyperjump's bundle functionality like this one: https://libraries.io/npm/@skriptfabrik%2Fjson-schema-bundler Does the library currently support the command line interface?

Hi, I'm trying to bundle a schema with urn identifiers. I added the urn plugin for `@hyperjump/browser` based on [the example](https://github.com/hyperjump-io/browser/#uri-schemes). The external schema (Address) is added to `$defs` in...

Let's consider the following schema ```json { "$id": "https://example.com/user-data", "$schema": "http://json-schema.org/draft-07/schema", "type": "object", "properties": { "name": { "type": "string", "default": "Unknown" }, "email": { "type": "string", "format": "email", }, "tags":...