(schema, value, path, validatedProperties)
| 487 | return errors |
| 488 | }, |
| 489 | properties (schema, value, path, validatedProperties) { |
| 490 | const errors = [] |
| 491 | Object.entries(schema.properties).forEach(([key, prop]) => { |
| 492 | validatedProperties[key] = true |
| 493 | errors.push(...this._validateSchema(prop, value[key], `${path}.${key}`)) |
| 494 | }) |
| 495 | return errors |
| 496 | }, |
| 497 | patternProperties (schema, value, path, validatedProperties) { |
| 498 | const errors = [] |
| 499 | Object.entries(schema.patternProperties).forEach(([i, prop]) => { |
nothing calls this directly
no test coverage detected