Skip to content

This project provide YAML schema validation using JSON schema.

Notifications You must be signed in to change notification settings

buddhikac96/goodyaml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

goodyaml

This project provide YAML schema validation.

There are two options to provide JSON schema to validate YAML file.

  1. By C# class
  2. By external JSON file

User can provide both YAML and JSON file by comamnd line arguments.

Yaml-Schema-Validator.exe -y myyaml -j myjson
Yaml-Schema-Validator.exe --yaml myyaml --json myjson

-y / --yaml Token is required and -j / --json token not required.

Sample YAML File

Name: your name
Mobile: your mobile number
Email: your emial
University: your univeristy

Sample JSON file

{
"Name": {"type":"string"},
"Email": {"type":"string"},
"Mobile": {"type":"string"},
"University": {"type":"string"},
}

About

This project provide YAML schema validation using JSON schema.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages