UNPKG

ajv-json-logic

Version:
52 lines (48 loc) 1.09 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var $schema = "http://json-schema.org/draft-07/schema#"; var $id = "http://jsonlogic.com/schemas/operators/logic/not.json"; var title = "!"; var description = "Logical negation (“not”). Takes just one argument."; var type = "object"; var additionalProperties = false; var required = [ "!" ]; var properties = { "!": { $ref: "http://jsonlogic.com/schemas/common/unary-arg.json" } }; var examples = [ { "!": [ true ] }, { "!": true } ]; var logicNot = { $schema: $schema, $id: $id, title: title, description: description, type: type, additionalProperties: additionalProperties, required: required, properties: properties, examples: examples }; exports.$id = $id; exports.$schema = $schema; exports.additionalProperties = additionalProperties; exports.default = logicNot; exports.description = description; exports.examples = examples; exports.properties = properties; exports.required = required; exports.title = title; exports.type = type; //# sourceMappingURL=not.json.cjs.map