ajv-json-logic
Version:
JSON Logic integration for Ajv validator
37 lines (33 loc) • 789 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var $schema = "http://json-schema.org/draft-07/schema#";
var $id = "http://jsonlogic.com/schemas/common/all-types-wo-array.json";
var title = "All";
var description = "Any valid JSON data type, except array primitive.";
var oneOf = [
{
type: [
"boolean",
"null",
"number",
"string"
]
},
{
$ref: "http://jsonlogic.com/schemas/common/no-logic-object.json"
}
];
var allTypesWoArray = {
$schema: $schema,
$id: $id,
title: title,
description: description,
oneOf: oneOf
};
exports.$id = $id;
exports.$schema = $schema;
exports.default = allTypesWoArray;
exports.description = description;
exports.oneOf = oneOf;
exports.title = title;
//# sourceMappingURL=all-types-wo-array.json.cjs.map