smart_schema icon indicating copy to clipboard operation
smart_schema copied to clipboard

Schema validation library for data structure objects in declarative DSL-powered style.

Results 1 smart_schema issues
Sort by recently updated
recently updated
newest added

```ruby data = { "a" => "x", "b" => "" } ``` ```ruby # Pseudo-Code SmartTypes::Value::Enum => ["x", "y", "z"] # our enum type ``` ```ruby # some part of...