Coder Social home page Coder Social logo

mikaelvesavuori / mikrovalid Goto Github PK

View Code? Open in Web Editor NEW
5.0 2.0 2.0 715 KB

MikroValid is the JSON validator that cuts out all the bullshit.

License: MIT License

Shell 0.10% TypeScript 99.90%
json object-validator schema schema-validation validation validator

mikrovalid's Issues

Documentation inconsistency

In README at line 102 the example says:

{
  "properties": {
    "username": {
      "type": "string"
    }
  },
  "required": ["name"]
}

Where the required property name does not exist in the properties declaration, or the valid input in the following paragraph.

Would a PR with a suggestion on stricter types for the schema input be of interest?


In MikroValid.ts, the example has the required properties on the same level as the actual properties.

In the tests and in the README, those properties are on the same level as the properties property.

The way they are placed in the code description is similar to how they are placed in the rest of the hierarchy, like

work: {
  office: 'string', // <- referenced by required on the same level
  currency: 'string',
  salary: 'number',
  required: ['office'] // <- here
},
// ---------- Tests and README
{
  properties: {
    thing: {},  // <- referenced by required on one level up
  },
  required: ['thing'] // <- only on this level for things inside properties?
}

If this is an inconsistency, and it would be addressed, it is also valid for additionalProperties . (Not explicitly written in the code description though).


Also in the code description:

work: {
  office: 'string', // <- These should be `{ type: 'string' }` ?
  currency: 'string',
  salary: 'number',
  required: ['office']
},

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.