ajv-json-logic
Version:
JSON Logic integration for Ajv validator
25 lines (21 loc) • 712 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var $schema = "http://json-schema.org/draft-07/schema#";
var $id = "http://jsonlogic.com/schemas/json-logic.json";
var title = "JSON-Logic Schema";
var description = "Build complex rules, serialize them as JSON, share them between front-end and back-end.";
var $ref = "http://jsonlogic.com/schemas/common/any.json";
var jsonLogicSchema = {
$schema: $schema,
$id: $id,
title: title,
description: description,
$ref: $ref
};
exports.$id = $id;
exports.$ref = $ref;
exports.$schema = $schema;
exports.default = jsonLogicSchema;
exports.description = description;
exports.title = title;
//# sourceMappingURL=json-logic.json.cjs.map