summaryrefslogtreecommitdiff
path: root/tests/files/fail/test_required.yaml
blob: 60385446ae88c67aee2c1aac46c23b864ad2ff74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
name: fail-required-1
desc: 
data:
  - name: foo
    email: foo@mail.com
  - email: bar@mail.net
schema:
  type: seq
  sequence:
    - type: map
      mapping:
        name:
          type: str
          required: True
        email:
          type: str
errors:
  - "Cannot find required key 'name'. Path: '/1'"