From b8b154e1e84f8e86ec9342d36bfca362877f36a3 Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Mon, 17 May 2021 15:54:42 -0600 Subject: [PATCH] Add m0ar context --- projects/yamlschema/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/yamlschema/README.md b/projects/yamlschema/README.md index d8e6977..31e9f76 100644 --- a/projects/yamlschema/README.md +++ b/projects/yamlschema/README.md @@ -1,7 +1,9 @@ # YAML Schema A library that implements some amount of jsonschema validation against YAML document ASTs. + Unlike other JSON-schema validation tools which give document path relative errors, this approach allows for line & file errors more appropriate to user-facing tools. +yamlschema [(PyPi)](https://pypi.org/project/yamlschema/) [(Github)](https://github.com/Brightmd/yamlschema) [(source)](https://github.com/Brightmd/yamlschema/blob/master/yamlschema/lib.py) just loads the YAML document fully and punts directly to jsonschema; making it difficult-to-impossible to map errors back to source locations. ## API Overview