mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-01-09 11:17:32 +01:00
24 lines
582 B
JSON
24 lines
582 B
JSON
[
|
|
{
|
|
"description": "pattern validation",
|
|
"schema": {"pattern": "^a*$"},
|
|
"tests": [
|
|
{
|
|
"description": "a matching pattern is valid",
|
|
"data": "aaa",
|
|
"valid": true
|
|
},
|
|
{
|
|
"description": "a non-matching pattern is invalid",
|
|
"data": "abc",
|
|
"valid": false
|
|
},
|
|
{
|
|
"description": "ignores non-strings",
|
|
"data": true,
|
|
"valid": true
|
|
}
|
|
]
|
|
}
|
|
]
|