Code Monkey home page Code Monkey logo

Comments (1)

korzio avatar korzio commented on August 15, 2024

  1. Check and change if necesarry if boolean values could be a valid schema

Boolean values are equivalent to the following behaviors:
 true Always passes validation, as if the empty schema {} |  
 false Always fails validation, as if the schema { "not":{} }

  1. Optionally check for $schema in the root, and warn about presence in subschemas

The "$schema" keyword SHOULD be used in a root schema. It MUST NOT appear in subschemas.

  1. Use $id instead of id

9.2. The "$id" keyword

  1. Check other keywords

all core keywords prefixed with "$"

  1. Add contains keyword validation

The value of this keyword MUST be a valid JSON Schema.
An array instance is valid against "contains" if at least one of its

  1. Add propertyNames keyword validation

If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema. Note the property name that the schema is testing will always be a string.

  1. Change exclusiveMaximum, exclusiveMinimum from boolean to number

  2. Add const keyword validation

The value of this keyword MAY be of any type, including null. An instance validates successfully against this keyword if its value is equal to the value of the keyword.

  1. Add examples keyword validation (warning)

The value of this keyword MUST be an array. There are no restrictions placed on the values within the array.

  1. Change format uriref -> uri-reference
  2. Add format uri-template
  3. Add format json-pointer
  4. Allow empty "required" and "dependencies" arrays

  5. Fixed "type" reference to primitive types

from djv.

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.