UNPKG

ajv-json-logic

Version:
39 lines (35 loc) 977 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var $schema = "http://json-schema.org/draft-07/schema#"; var $id = "http://jsonlogic.com/schemas/common/one-or-more-args.json"; var title = "1 or more args"; var description = "With 1 or more arguments."; var oneOf = [ { title: "Single Array", description: "An array with 1 or more elements.", type: "array", items: { $ref: "http://jsonlogic.com/schemas/common/any.json" } }, { $ref: "http://jsonlogic.com/schemas/common/any-wo-array.json", title: "Single Arg", description: "Note: 1 or more operators can also take a single, non array argument:" } ]; var oneOrMoreArgs = { $schema: $schema, $id: $id, title: title, description: description, oneOf: oneOf }; exports.$id = $id; exports.$schema = $schema; exports.default = oneOrMoreArgs; exports.description = description; exports.oneOf = oneOf; exports.title = title; //# sourceMappingURL=one-or-more-args.json.cjs.map