This project provide YAML schema validation.
There are two options to provide JSON schema to validate YAML file.
- By C# class
- 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.
Name: your name
Mobile: your mobile number
Email: your emial
University: your univeristy
{
"Name": {"type":"string"},
"Email": {"type":"string"},
"Mobile": {"type":"string"},
"University": {"type":"string"},
}