0.2.0 • Published 1 year ago

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

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year 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

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago