Top "Jsonschema" questions

A JSON Schema is a JSON document (an object) which defines constraints on what other JSON documents (the instances) should obey; it can also be used to interpret instances so as to provide links to external resources (hyper schema).

JSON Schema - how do I specify that a boolean value must be false?

Let's say I have a type that will be boolean, but I don't just want to specify that it will …

jsonschema
set Jackson ObjectMapper class not to use scientific notation for double

I am using a library com.fasterxml.jackson library for JsonSchema, I am creating an IntegerSchema object, when I set …

java jackson jsonschema jackson-modules
In JsonSchema, the format value should be set as "full-date" or "date"?

You may use jsonSchemaLint for testing purposes. I have this JsonSchema, which sets format as "full-date". All Draft-6 validators (Json.…

json json.net jsonschema rfc json-schema-validator
JSON Schema - require all properties

The required field in JSON Schema JSON Schema features the properties, required and additionalProperties fields. For example, { "type": "object", "properties": { "…

jsonschema
JSON Schema to GraphQL schema converters

Are there any adapters which are converting JSON Schema schemas (e.g from Swagger) to GraphQL schemas? There is even …

swagger graphql jsonschema
NodeJS validation library for json objects

I need to validate some object in my NodeJS app. I have already used an awesome library express-validator, it works …

json node.js validation jsonschema ajv
How to specify a property as null or a reference?

I have a json document in which a part can be either null or a subobject, like this: [{ "owner":null }, { "…

jsonschema
JSON Schema validation in PostgreSQL?

I can't find any information about JSON schema validation in PostgreSQL, is there any way to implement JSON Schema validation …

json postgresql jsonschema postgresql-json
Can JSON schema enums be case insensitive?

JSON Schema enums JSON Schemas feature enums, which impose a constraint on the values of a string type: { "type": "array", "…

enums case-insensitive jsonschema
json-schema-validator custom message

I am using json-schema-validator2.2.6 library to validate my json against json schema. The problem is that it gives generic error …

json jsonschema json-schema-validator