UNPKG

ajv-json-logic

Version:
39 lines (37 loc) 837 B
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 }; export { $id, $schema, additionalProperties, logicNot as default, description, examples, properties, required, title, type }; //# sourceMappingURL=not.json.js.map