Git Product home page Git Product logo

Comments (2)

natesilva avatar natesilva commented on June 26, 2024

The uri format in JaySchema is very generous in what it allows. In your example, invalid is a valid relative URI. (Imagine an HTML tag, <a href="pagename">, which is valid.)

This should probably be fixed, so the uri format expects an absolute URI – which I think is what you’re looking for. But it needs testing to ensure it doesn’t break stuff. In particular, in the Core/Validation Meta-Schema, the id property is specified to use the uri format. That needs special handling, for example, with this example in the JSON Schema documentation.

I don’t have time to study this right now, but I will keep the issue open. And of course, if someone else wants to do it, pull requests are welcome.

from jayschema.

natesilva avatar natesilva commented on June 26, 2024

Hi @asafyish. As of version 0.3.0, JaySchema can do this for you using a custom format validator. If the built-in uri format isn’t to your liking you can now override it:

var js = new JaySchema();

// This overrides the built-in `uri` format; you could also use your own
// format name (like `my-uri`).
js.addFormat('uri', function(value) {
  // Do your own URI validation here, and return null if the value is valid,
  // or, if the value is not valid, return a string describing the problem.
});

from jayschema.

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.