GithubHelp home page GithubHelp logo

Comments (3)

blakeembrey avatar blakeembrey commented on May 13, 2024

Just some thoughts, but why wouldn't you be able to use dataPath programmatically? I think the idea of prettyDataPath would end up too opinionated. A different idea would be to show the containing object in the data output. That said, I think the tooling around consuming the dataPath is the best way to go forward - if you use JSON pointers you can use https://www.npmjs.com/package/json-pointer and with the default dataPath you could try something like https://github.com/component/to-function (haven't researched too much on that, maybe someone else can help you more).

from ajv.

epoberezkin avatar epoberezkin commented on May 13, 2024

There is also a simple library object-path that can be used to find an object by path. Another approach is to use eval:

var data = { /*...*/ };
var dataPath = '.assetGroups['166'].previewUrl';
var value = eval('data' + dataPath);

It is most likely faster than a library that parses and iterates path.

There is also an option verbose that would include both the related schema and the data object in the error.

from ajv.

epoberezkin avatar epoberezkin commented on May 13, 2024

What is probably wrong here is that the number should not be in quotes. Although it makes no difference for JS, they are unnecessary. So renaming the issue...

from ajv.

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.