strictyaml icon indicating copy to clipboard operation
strictyaml copied to clipboard

Type-safe YAML parser and validator.

Results 96 strictyaml issues
Sort by recently updated
recently updated
newest added

Hello, i was reading [this page](https://hitchdev.com/strictyaml/why/syntax-typing-bad/). Is it me (and my poor english) or the sentence under the section "What does it mean to attach syntax typing to data" is...

This is a hybrid of a support/feature request. I have a YAML database that I'd like to make sense of using the amazing `strictyaml`API. The problem is that, on specific...

Typing the following into the python interpreter ``` Python 3.7.1 (v3.7.1:260ec2c36a, Oct 20 2018, 14:05:16) [MSC v.1915 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more...

Hi, I wonder how could I support the following: I want to have different schemas for different use cases. I was thinking about: ``` base_schema = Map({"field1": Str(), "field2": Str()})...

I've a config which is partially exclusive OR. It may be either like this ``` common: - ... variant_a: - ... variant_a_again: - ... ``` or ``` common: - ......

ODIN - Object Data Instance Notation. See here: https://github.com/openEHR/odin/blob/master/README.md The main spec is linked near the top of that page. Might give you some ideas on one of the reasons...

Hi, there. Thanks for providing this nice library! I found myself in a problem here that is related to the following lines: ```python from strictyaml import Map, Float, load schema...

I would like to (re)implement `strictyaml` in Rust, but I could not find a list of futures that were actually removed. For example, the https://hitchdev.com/strictyaml/features-removed/ doesn't mention that only a...

We should create a suite of test cases that contains examples of valid and invalid StrictYAML, as well as the equivalent JSON or assciated error codes and messages. The test...