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).
Let's say I have a type that will be boolean, but I don't just want to specify that it will …
jsonschemaI am using a library com.fasterxml.jackson library for JsonSchema, I am creating an IntegerSchema object, when I set …
java jackson jsonschema jackson-modulesYou 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-validatorThe required field in JSON Schema JSON Schema features the properties, required and additionalProperties fields. For example, { "type": "object", "properties": { "…
jsonschemaAre there any adapters which are converting JSON Schema schemas (e.g from Swagger) to GraphQL schemas? There is even …
swagger graphql jsonschemaI 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 ajvI have a json document in which a part can be either null or a subobject, like this: [{ "owner":null }, { "…
jsonschemaI can't find any information about JSON schema validation in PostgreSQL, is there any way to implement JSON Schema validation …
json postgresql jsonschema postgresql-jsonJSON Schema enums JSON Schemas feature enums, which impose a constraint on the values of a string type: { "type": "array", "…
enums case-insensitive jsonschemaI 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