UNPKG

@redocly/ajv

Version:

Another JSON Schema Validator

18 lines 764 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.schemaHasRulesForType = schemaHasRulesForType; exports.shouldUseGroup = shouldUseGroup; exports.shouldUseRule = shouldUseRule; function schemaHasRulesForType({ schema, self }, type) { const group = self.RULES.types[type]; return group && group !== true && shouldUseGroup(schema, group); } function shouldUseGroup(schema, group) { return group.rules.some((rule) => shouldUseRule(schema, rule)); } function shouldUseRule(schema, rule) { var _a; return (schema[rule.keyword] !== undefined || ((_a = rule.definition.implements) === null || _a === void 0 ? void 0 : _a.some((kwd) => schema[kwd] !== undefined))); } //# sourceMappingURL=applicability.js.map