0.2.0 • Published 3 years ago

yet-another-json-schema-validator v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Yet Another Json Schema Validator

Quick Start

Install

npm i yet-another-json-schema-validator --global

Use

yajsv

File Search

Searches for a .schema.json and .json files, then it uses the schema associated to validate the json file.

Example:

hobbies.json

{"name": "James", "hobbies": [".NET"]}

hobbies.schema.json

{
  "description":"A person",
  "type":"object",
  "properties":{
    "name":{
      "type":"string"
    },
    "hobbies":{
      "type":"array",
      "items":{
          "type":"string"
      }
    }
  }
}

Useful Websites

0.2.0

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago