(schema, value, path)
| 171 | return schema.allOf.reduce(validate, []) |
| 172 | }, |
| 173 | anyOf (schema, value, path) { |
| 174 | const valid = schema.anyOf.some(e => !this._validateSchema(e, value, path).length) |
| 175 | if (!valid) { |
| 176 | return [{ |
| 177 | path, |
| 178 | property: 'anyOf', |
| 179 | message: this.translate('error_anyOf', null, schema) |
| 180 | }] |
| 181 | } |
| 182 | return [] |
| 183 | }, |
| 184 | oneOf (schema, value, path) { |
| 185 | let valid = 0 |
| 186 | const oneofErrors = [] |
nothing calls this directly
no test coverage detected