Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example for schema written in YAML and files to validate in JSON #1150

Closed
hasant73 opened this issue Feb 5, 2025 · 1 comment
Closed

Example for schema written in YAML and files to validate in JSON #1150

hasant73 opened this issue Feb 5, 2025 · 1 comment

Comments

@hasant73
Copy link

hasant73 commented Feb 5, 2025

Hi there,

I have a quite complicated schema from my customer with a lot of references inside and I'm struggling to find a library that works with it.
Could you please give a example that accepts a YAML file as a schema and a JSON file as data to be validated.

My code looks like this so far:

ObjectMapper yamlReader = new ObjectMapper(new YAMLFactory());
Object obj = yamlReader.readValue(openAPIFile, Object.class);
ObjectMapper jsonWriter = new ObjectMapper();
String jsonSchemaStr = jsonWriter.writeValueAsString(obj);

ObjectMapper jsonReader = new ObjectMapper();
JsonNode node = jsonReader.readValue(inputFile, JsonNode.class);

// convert the schemas to json
JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V4);
JsonSchema jsonSchema = factory.getSchema(jsonSchemaStr);
Set<ValidationMessage> validationMessage = jsonSchema.validate(node);
for (ValidationMessage v : validationMessage) {
  LOGGER.error(v.toString());
}
if (!validationMessage.isEmpty()) {
  throw new RuntimeException("Validation error");
}

Thanks you

@jkosternl
Copy link
Contributor

Hi @hasant73, what about checking out how we are using it in our project with YAML schemas and JSON data validation?
Next to that, this project itself also has Unit tests with examples as well, checkout doc/quickstart.md for example.

This is how we're using it, in our project:
https://github.com/dcsaorg/Conformance-Gateway/blob/c32d038322d759c37a719666d5d5d217f7ee7e1a/core/src/main/java/org/dcsa/conformance/core/check/JsonSchemaValidator.java#L50

@stevehu stevehu closed this as completed Feb 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants