blob: 761fa6f511a30b665efffb540a17b7373268887a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# ajv errors
```json
[
{
"instancePath": "/requires_ansible",
"keyword": "pattern",
"message": "must match pattern \"^[^\\s]*$\"",
"params": {
"pattern": "^[^\\s]*$"
},
"schemaPath": "#/properties/requires_ansible/pattern"
}
]
```
# check-jsonschema
stdout:
```json
{
"status": "fail",
"errors": [
{
"filename": "negative_test/meta/runtime.yml",
"path": "$.requires_ansible",
"message": "'>= 2.12' does not match '^[^\\\\s]*$'",
"has_sub_errors": false
}
],
"parse_errors": []
}
```
|