summaryrefslogtreecommitdiffstats
path: root/test/schemas/negative_test/reqs3/meta/requirements.yml.md
blob: 5de66434ea0e16fd4d6c6864ef3ed0dc1b1417df (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# ajv errors

```json
[
  {
    "instancePath": "",
    "keyword": "type",
    "message": "must be array",
    "params": {
      "type": "array"
    },
    "schemaPath": "#/anyOf/0/type"
  },
  {
    "instancePath": "",
    "keyword": "required",
    "message": "must have required property 'collections'",
    "params": {
      "missingProperty": "collections"
    },
    "schemaPath": "#/anyOf/0/required"
  },
  {
    "instancePath": "",
    "keyword": "required",
    "message": "must have required property 'roles'",
    "params": {
      "missingProperty": "roles"
    },
    "schemaPath": "#/anyOf/1/required"
  },
  {
    "instancePath": "",
    "keyword": "anyOf",
    "message": "must match a schema in anyOf",
    "params": {},
    "schemaPath": "#/anyOf"
  },
  {
    "instancePath": "",
    "keyword": "additionalProperties",
    "message": "must NOT have additional properties",
    "params": {
      "additionalProperty": "foo"
    },
    "schemaPath": "#/additionalProperties"
  },
  {
    "instancePath": "",
    "keyword": "anyOf",
    "message": "must match a schema in anyOf",
    "params": {},
    "schemaPath": "#/anyOf"
  }
]
```

# check-jsonschema

stdout:

```json
{
  "status": "fail",
  "errors": [
    {
      "filename": "negative_test/reqs3/meta/requirements.yml",
      "path": "$",
      "message": "{'foo': 'bar'} is not valid under any of the given schemas",
      "has_sub_errors": true,
      "best_match": {
        "path": "$",
        "message": "{'foo': 'bar'} is not of type 'array'"
      },
      "sub_errors": [
        {
          "path": "$",
          "message": "{'foo': 'bar'} is not of type 'array'"
        },
        {
          "path": "$",
          "message": "Additional properties are not allowed ('foo' was unexpected)"
        },
        {
          "path": "$",
          "message": "{'foo': 'bar'} is not valid under any of the given schemas"
        },
        {
          "path": "$",
          "message": "'collections' is a required property"
        },
        {
          "path": "$",
          "message": "'roles' is a required property"
        }
      ]
    }
  ],
  "parse_errors": []
}
```