|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-04/schema#", |
| 3 | + "$id": "http://jsonlogic.com/schemas/common/any.json", |
| 4 | + |
| 5 | + "title": "All", |
| 6 | + "description": "Any valid JSON Logic data source.", |
| 7 | + |
| 8 | + "anyOf": [ |
| 9 | + { "$ref": "http://jsonlogic.com/schemas/operators/accessor/variable.json" }, |
| 10 | + { "$ref": "http://jsonlogic.com/schemas/operators/accessor/missing.json" }, |
| 11 | + { "$ref": "http://jsonlogic.com/schemas/operators/accessor/missing_some.json" }, |
| 12 | + |
| 13 | + { "$ref": "http://jsonlogic.com/schemas/operators/arithmetic/add.json" }, |
| 14 | + { "$ref": "http://jsonlogic.com/schemas/operators/arithmetic/divide.json" }, |
| 15 | + { "$ref": "http://jsonlogic.com/schemas/operators/arithmetic/modulo.json" }, |
| 16 | + { "$ref": "http://jsonlogic.com/schemas/operators/arithmetic/multiply.json" }, |
| 17 | + { "$ref": "http://jsonlogic.com/schemas/operators/arithmetic/substract.json" }, |
| 18 | + |
| 19 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/all.json" }, |
| 20 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/filter.json" }, |
| 21 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/map.json" }, |
| 22 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/merge.json" }, |
| 23 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/none.json" }, |
| 24 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/reduce.json" }, |
| 25 | + { "$ref": "http://jsonlogic.com/schemas/operators/array/some.json" }, |
| 26 | + |
| 27 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/and.json" }, |
| 28 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/equal.json" }, |
| 29 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/if.json" }, |
| 30 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/not.json" }, |
| 31 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/notEqual.json" }, |
| 32 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/notnot.json" }, |
| 33 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/or.json" }, |
| 34 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/strictEqual.json" }, |
| 35 | + { "$ref": "http://jsonlogic.com/schemas/operators/logic/strictNotEqual.json" }, |
| 36 | + |
| 37 | + { "$ref": "http://jsonlogic.com/schemas/operators/misc/in.json" }, |
| 38 | + { "$ref": "http://jsonlogic.com/schemas/operators/misc/log.json" }, |
| 39 | + { "$ref": "http://jsonlogic.com/schemas/operators/misc/method.json" }, |
| 40 | + |
| 41 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/greater.json" }, |
| 42 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/greaterEqual.json" }, |
| 43 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/less.json" }, |
| 44 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/lessEqual.json" }, |
| 45 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/max.json" }, |
| 46 | + { "$ref": "http://jsonlogic.com/schemas/operators/numeric/min.json" }, |
| 47 | + |
| 48 | + { "$ref": "http://jsonlogic.com/schemas/operators/string/cat.json" }, |
| 49 | + { "$ref": "http://jsonlogic.com/schemas/operators/string/substr.json" }, |
| 50 | + |
| 51 | + { "$ref": "http://jsonlogic.com/schemas/common/all-types.json" } |
| 52 | + ] |
| 53 | +} |
0 commit comments