summaryrefslogtreecommitdiffstats
path: root/test/schemas/negative_test/changelogs/invalid-plugin-namespace/changelogs/changelog.yaml.md
blob: ef847c3cf41cdf1ebb5941ce4e8d192c0dbe3ee7 (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": "/releases/1.0.0/plugins/lookup/0/namespace",
    "keyword": "type",
    "message": "must be null",
    "params": {
      "type": "null"
    },
    "schemaPath": "#/$defs/plugin-descriptions/items/properties/namespace/type"
  }
]
```

# check-jsonschema

stdout:

```json
{
  "status": "fail",
  "errors": [
    {
      "filename": "negative_test/changelogs/invalid-plugin-namespace/changelogs/changelog.yaml",
      "path": "$.releases.1.0.0.plugins.lookup[0].namespace",
      "message": "'foo' is not of type 'null'",
      "has_sub_errors": false
    }
  ],
  "parse_errors": []
}
```