ajv/spec/tests/issues/28_escaping_pattern_error.json

22 lines
409 B
JSON

[
{
"description": "escaping pattern error (#28)",
"schema": {
"type" : "object",
"properties": {
"mediaType": {
"type": "string",
"pattern": "^[a-zA-Z0-9!#$%^&*_\\-+{}|'.`~]+/[a-zA-Z0-9!#$%^&*_\\-+{}|'.`~]+$"
}
}
},
"tests": [
{
"description": "empty object",
"data": {},
"valid": true
}
]
}
]