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

Show value of const data in validation message if its a string #846

Open
rishabh413 opened this issue Aug 10, 2023 · 0 comments
Open

Show value of const data in validation message if its a string #846

rishabh413 opened this issue Aug 10, 2023 · 0 comments

Comments

@rishabh413
Copy link

Below code:

import static com.networknt.schema.SpecVersion.VersionFlag.V202012;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.networknt.schema.JsonSchemaFactory;

String schema =
    "{"
        + "  \"type\": \"object\","
        + "  \"properties\": {"
        + "    \"myKey\" : {"
        + "        \"type\" : \"string\","
        + "        \"oneOf\" : ["
        + "          { \"const\": \"aa\" },"
        + "          { \"const\": \"bb\" }"
        + "        ]"
        + "      }"
        + "  }"
        + "}";

String serializedData = "{ \"myKey\" : \"cc\"}";
JsonNode data = new ObjectMapper().readTree(serializedData);

JsonSchemaFactory.getInstance(V202012)
    .getSchema(schema)
    .validate(data)
    .forEach(System.out::println);

gives below validation errors:

$.myKey: should be valid to one and only one schema, but 0 are valid
$.myKey: must be a constant value aa
$.myKey: must be a constant value bb

It would be very helpful if validation errors were:

$.myKey: should be valid to one and only one schema, but 0 are valid
$.myKey: must be a constant value aa but is cc
$.myKey: must be a constant value bb but is cc

so that we can clearly see what has mismatched directly from error.

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

1 participant