About 50 results
Open links in new tab
  1. Validate JSON schema compliance with Jackson against an external …

    Jul 2, 2015 · 6 As far as I know Jackson can only produce schemas for given types, but not do validation. There is json-schema-validator but it is no longer maintained.

  2. c# - Customize JsonSchemaValidation Error Messages - Stack Overflow

    May 23, 2017 · c# json jsonschema json-schema-validator edited May 23, 2017 at 14:16 asked May 23, 2017 at 13:27 Midhun Mathew

  3. Validating JSON against Swagger API schema - Stack Overflow

    Sep 1, 2016 · Swagger uses a subset of JSON Schema (missing: oneOf, patternProperties, among others). To that end, you can use a JSON Schema validator. There are 37 listed here; I'll give a …

  4. How to get customised error message defined in Json Schema using …

    Aug 10, 2022 · 2 According to the documentation, you can provide the custom message in the JSON schema itself, but not in the way you did. For example if you have a JSON schema like this (with …

  5. How to validate JSON schema structure with another JSON schema …

    Mar 2, 2022 · We had requirement to validate schema with most stable schemas such as - 2020-12, 2019-09, draft-07,-06, etc., And validate example JSON messages with custom schema as well.

  6. Json schema validation in Spring REST APIs - Stack Overflow

    Jan 18, 2016 · I’m looking the best way to validate the request JSON payload arriving to my APIs endpoints (Spring controllers) against the defined JSON schema defined for the exposed resource, …

  7. jsonschema validation not returning error as expected?

    Oct 31, 2018 · The validator has no clue what you meant by providing specific JSON for validation against schema, so if "allOf" (logical XOR) condition is not satisfied, I'd expect errors from all …

  8. Validate request body against dynamic OpenAPI specification with json ...

    Oct 2, 2022 · Validate request body against dynamic OpenAPI specification with json-schema-validator Asked 3 years, 4 months ago Modified 2 years, 6 months ago Viewed 4k times

  9. c++ - JSON schema validation - Stack Overflow

    Jan 13, 2011 · 34 Is there a stable library that can validate JSON against a schema? json-schema.org provides a list of implementations. Notably C and C++ are missing. Is there a reason I can't easily …

  10. Json schema validation error - Stack Overflow

    May 11, 2018 · This errors happen when validating the JSON with the schema draft-04 or higher, the problem is that "id" is expected to be in URI format and "type" as defined in the schema is an array, …