GithubHelp home page GithubHelp logo

Comments (5)

KOFKOY avatar KOFKOY commented on May 27, 2024

version 1.3.3

from json-schema-validator.

justin-tay avatar justin-tay commented on May 27, 2024

Your schema is not valid and there is insufficient information to reproduce. As you are using the format keyword it is possible you are using a dialect where format assertions aren't enabled and therefore the data matches both as the type is string.

from json-schema-validator.

KOFKOY avatar KOFKOY commented on May 27, 2024

Your schema is not valid and there is insufficient information to reproduce. As you are using the format keyword it is possible you are using a dialect where format assertions aren't enabled and therefore the data matches both as the type is string.

This is a jsonschema file downloaded from Amazon. I can't change its format. I'll try another version or look at the source code.

from json-schema-validator.

KOFKOY avatar KOFKOY commented on May 27, 2024

After testing, I found that version 1.1.0 does not have this problem with time verification.

from json-schema-validator.

justin-tay avatar justin-tay commented on May 27, 2024

Closing as this cannot be reproduced.

package com.networknt.schema;

import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;

import org.junit.jupiter.api.Test;

import com.networknt.schema.SpecVersion.VersionFlag;

public class Issue969Test {
    @Test
    void test() {
        SchemaValidatorsConfig config = new SchemaValidatorsConfig();
        config.setFormatAssertionsEnabled(true);
        String schemaData = "{\r\n"
                + "  \"oneOf\": [\r\n"
                + "    {\r\n"
                + "      \"format\": \"date\"\r\n"
                + "    },\r\n"
                + "    {\r\n"
                + "      \"format\": \"date-time\"\r\n"
                + "    }\r\n"
                + "  ]\r\n"
                + "}";
        JsonSchema schema = JsonSchemaFactory.getInstance(VersionFlag.V202012).getSchema(schemaData, config);
        assertTrue(schema.validate("\"2024-02-23\"", InputFormat.JSON).isEmpty());
        assertFalse(schema.validate("\"2024-02-30\"", InputFormat.JSON).isEmpty());
        assertTrue(schema.validate("\"2021-12-31T23:59:59Z\"", InputFormat.JSON).isEmpty());
        assertFalse(schema.validate("\"2021-12-31T23:59:59\"", InputFormat.JSON).isEmpty());
    }
}

from json-schema-validator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.