yaml-schema 0.9.1

A YAML schema validator
Documentation
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
Feature: Object types

  Scenario: object
    Given a YAML schema:
      ```
      type: object
      ```
    Then it should accept:
      ```
      key: value
      another_key: another_value
      ```
    And it should accept:
      ```
      Sun: 1.9891e30
      Jupiter: 1.8986e27
      Saturn: 5.6846e26
      Neptune: 10.243e25
      Uranus: 8.6810e25
      Earth: 5.9736e24
      Venus: 4.8685e24
      Mars: 6.4185e23
      Mercury: 3.3022e23
      Moon: 7.349e22
      Pluto: 1.25e22
      ```
    # Unlike JSON, YAML allows numeric keys, which are treated as strings
    And it should accept:
      ```
      0.01: cm
      1: m
      1000: km
      ```
    But it should NOT accept:
      ```
      "Not an object"
      ```
    And it should NOT accept:
      ```
      ["An", "array", "not", "an", "object"]
      ```

  Scenario: properties
    Given a YAML schema:
      ```
      type: object
      properties:
        number:
          type: number
        street_name:
          type: string
        street_type:
          enum: [Street, Avenue, Boulevard]
      ```
    Then it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      ```
    # If we provide the number in the wrong type, it is invalid:
    But it should NOT accept:
      ```
      number: "1600"
      street_name: Pennsylvania
      street_type: Avenue
      ```
    # By default, leaving out properties is valid
    And it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      ```
    # By extension, even an empty object is valid
    And it should accept:
      ```
      {}
      ```
    # By default, providing additional properties is valid
    And it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      direction: NW
      ```

  Scenario: Pattern properties
    Given a YAML schema:
      ```
      type: object
      patternProperties:
        ^S_:
          type: string
        ^I_:
          type: integer
      ```
    Then it should accept:
      ```
      S_25: This is a string
      ```
    And it should accept:
      ```
      I_0: 42
      ```
    # If the name starts with S_, it must be a string
    But it should NOT accept:
      ```
      S_0: 42
      ```
    # If the name starts with I_, it must be an integer
    And it should NOT accept:
      ```
      I_42: This is a string
      ```
    # This is a key that doesn't match any of the regular expressions
    But it should accept:
      ```
      keyword: value
      ```

  Scenario: Additional properties
    Given a YAML schema:
      ```
      type: object
      properties:
        number:
          type: number
        street_name:
          type: string
        street_type:
          enum: [Street, Avenue, Boulevard]
      additionalProperties: false
      ```
    Then it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      ```
    # Since additionalProperties is false, an extra property "direction" makes the object invalid:
    But it should NOT accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      direction: NW
      ```

  Scenario: additionalProperties as a schema
    Given a YAML schema:
      ```
      type: object
      properties:
        number:
          type: number
        street_name:
          type: string
        street_type:
          enum: [Street, Avenue, Boulevard]
      additionalProperties:
        type: string
      ```
    Then it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      ```
    # This is valid, since the additional property's value is a string:
    And it should accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      direction: NW
      ```
    # This is invalid, since the additional property's value is not a string:
    And it should NOT accept:
      ```
      number: 1600
      street_name: Pennsylvania
      street_type: Avenue
      office_number: 201
      ```

  Scenario: Additional properties with properties and patternProperties
    Given a YAML schema:
      ```
      type: object
      properties:
        builtin:
          type: number
      patternProperties:
        ^S_:
          type: string
        ^I_:
          type: integer
      additionalProperties:
        type: string
      ```
    Then it should accept:
      ```
      builtin: 42
      ```
    # This is a key that doesn't match any of the regular expressions
    And it should accept:
      ```
      keyword: value
      ```
    # It must be a string, not an integer
    And it should NOT accept:
      ```
      keyword: 42
      ```

  Scenario: patternProperties takes priority over additionalProperties
    Given a YAML schema:
      ```
      type: object
      properties:
        builtin:
          type: string
      patternProperties:
        ^pattern_[a-z]*$:
          type: string
      additionalProperties:
        type: integer
      ```
    Then it should accept:
      ```
      builtin: hello
      pattern_string: bonjour
      whatever: 21
      ```
    But it should NOT accept:
      ```
      builtin: hello
      pattern_integer: 12
      whatever: 21
      ```

  Scenario: properties and patternProperties both apply to the same key
    Given a YAML schema:
      ```
      type: object
      properties:
        foo:
          type: number
          minimum: 0
      patternProperties:
        ^f:
          type: number
          maximum: 10
      additionalProperties: false
      ```
    Then it should accept:
      ```
      foo: 5
      ```
    But it should NOT accept:
      ```
      foo: 50
      ```

  Scenario: additionalProperties as a object schemas with unused properties
    Given a YAML schema:
      ```
      type: object
      properties:
        number:
          type: number
      additionalProperties:
        type: object
        description: "Any extra props"
        properties:
          id:
            type: string
      ```
    Then it should accept:
      ```
      number: 1600
      myCustomProperty:
        id: my-id
      ```
    # This is valid, since the additional property's value is a string:
    And it should accept:
      ```
      number: 1600
      one:
        id: first
      two:
        id: second
      ```
    # This is invalid, since the additional property's value is not a string:
    And it should NOT accept:
      ```
      number: 1600
      one: hello
      two: 2
      ```

  Scenario: $schema property in data is ignored
    Given a YAML schema:
      ```
      type: object
      properties:
        musics:
          type: array
          items:
            type: string
            enum: [Salsa, Bachata]
      additionalProperties: false
      required:
        - musics
      ```
    Then it should accept:
      ```
      $schema: "./schema.json"
      musics:
        - Bachata
      ```
    And it should accept:
      ```
      musics:
        - Salsa
      ```

  Scenario: Required properties
    Given a YAML schema:
      ```
      type: object
      properties:
        name:
          type: string
        email:
          type: string
        address:
          type: string
        telephone:
          type: string
      required:
        - name
        - email
      ```
    Then it should accept:
      ```
      name: William Shakespeare
      email: bill@stratford-upon-avon.co.uk
      ```
    # Providing extra properties is fine, even properties not defined in the schema:
    And it should accept:
      ```
      name: William Shakespeare
      email: bill@stratford-upon-avon.co.uk
      address: Henley Street, Stratford-upon-Avon, Warwickshire, England
      authorship: in question
      ```
    # Missing the required "email" property makes the YAML document invalid:
    But it should NOT accept:
      ```
      name: William Shakespeare
      address: Henley Street, Stratford-upon-Avon, Warwickshire, England
      ```
    # A property with a null value is considered not being present:
    And it should NOT accept:
      ```
      name: William Shakespeare
      address: Henley Street, Stratford-upon-Avon, Warwickshire, England
      email: null
      ```

  Scenario: Property names
    Given a YAML schema:
      ```
      type: object
      propertyNames:
        pattern: "^[A-Za-z_][A-Za-z0-9_]*$"
      ```
    Then it should accept:
      ```
      _a_proper_token_001: "value"
      ```
    But it should NOT accept:
      ```
      -001 invalid: "value"
      ```
    And the error message should be "[1:1] .: Property name '-001 invalid' does not match pattern '^[A-Za-z_][A-Za-z0-9_]*$'"

  Scenario: Size
    Given a YAML schema:
      ```
      type: object
      minProperties: 2
      maxProperties: 3
      ```
    Then it should NOT accept:
      ```
      {}
      ```
    And it should NOT accept:
      ```
      a: 0
      ```
    But it should accept:
      ```
      a: 0
      b: 1
      ```
    And it should accept:
      ```
      a: 0
      b: 1
      c: 2
      ```
    But it should NOT accept:
      ```
      a: 0
      b: 1
      c: 2
      d: 3
      ```

  Scenario: dependentRequired when trigger absent
    Given a YAML schema:
      ```
      type: object
      dependentRequired:
        credit_card:
          - billing_address
      properties:
        name:
          type: string
      ```
    Then it should accept:
      ```
      name: Alice
      ```

  Scenario: dependentRequired when trigger present without dependency
    Given a YAML schema:
      ```
      type: object
      dependentRequired:
        credit_card:
          - billing_address
      properties:
        credit_card:
          type: string
        billing_address:
          type: string
      ```
    Then it should accept:
      ```
      credit_card: "4111"
      billing_address: "1 Main St"
      ```
    But it should NOT accept:
      ```
      credit_card: "4111"
      ```

  Scenario: dependentSchemas when trigger absent
    Given a YAML schema:
      ```
      type: object
      dependentSchemas:
        credit_card:
          type: object
          required:
            - billing_address
      properties:
        name:
          type: string
      ```
    Then it should accept:
      ```
      name: Alice
      ```

  Scenario: dependentSchemas when trigger present and subschema fails
    Given a YAML schema:
      ```
      type: object
      dependentSchemas:
        credit_card:
          type: object
          required:
            - billing_address
      properties:
        credit_card:
          type: string
        billing_address:
          type: string
      ```
    But it should NOT accept:
      ```
      credit_card: "4111"
      ```

  Scenario: dependentSchemas when trigger present and subschema passes
    Given a YAML schema:
      ```
      type: object
      dependentSchemas:
        credit_card:
          type: object
          required:
            - billing_address
      properties:
        credit_card:
          type: string
        billing_address:
          type: string
      ```
    Then it should accept:
      ```
      credit_card: "4111"
      billing_address: "1 Main St"
      ```

  Scenario: dependentRequired and dependentSchemas together
    Given a YAML schema:
      ```
      type: object
      dependentRequired:
        opt_in:
          - email
      dependentSchemas:
        opt_in:
          type: object
          required:
            - email
          properties:
            email:
              type: string
      properties:
        opt_in:
          type: boolean
        email:
          type: string
      ```
    But it should NOT accept:
      ```
      opt_in: true
      ```
    Then it should accept:
      ```
      opt_in: true
      email: "a@example.com"
      ```