simple-json-match
v1.3.0
Published
Lightweight solution to evalute if JSON match desired input
Downloads
1,558
Readme
simple-json-match
simple-json-match
library to evaluate match a JSON document values with a simple syntax.
It was designed to be used within hookdeck.com filtering engine and provides for a simple method for users to input their desired filter.
This is not a full schema validation library like json-schema
instead its goal is to provide a simple straitforward syntax to evalute match between values rather then type.
Install
npm install simple-json-match
yarn add simple-json-match
Typescript definitions are provided within the package.
Getting Started
simple-match-json
exports a single method to evaluate the match between a JSON document and the input schema.
import matchJSONToSchema from 'simple-json-match';
const product = {
id: 123,
title: 'A product',
};
const schema = {
id: 123,
};
matchJSONToSchema(product, schema); // true
Supported Types
matchJSONToSchema supports raw string
boolean
number
or null
and the library Schema JSON syntax.
matchJSONToSchema(true, true); // true
matchJSONToSchema(true, false); // false
matchJSONToSchema({ test: true }, { test: false }); // false
Schema Syntax
JSON filter supports matching on any value (string
number
boolean
null
), on nested objects and on arrays.
Simple primitives
Simple primitive are string
, number
, boolean
or null
that will be matched if equal.
const product = {
type: 'order/created',
order: {
id: 123,
},
};
const schema = {
type: 'order/created',
};
matchJSONToSchema(product, schema); // true
Nested Objects
Just like normal JSON, objects can be nested
const product = {
product: {
title: 'A product',
inventory: 0,
},
};
const schema = {
product: {
inventory: 0,
},
};
matchJSONToSchema(product, schema); // true
Arrays
Arrays are always matched partially. It's effectively the same as contains
const product = {
product: {
title: 'Gift Card',
tags: ['gift', 'something'],
},
};
const schema = {
product: {
tags: 'gift',
},
};
matchJSONToSchema(product, schema); // true
You can also match multiple items (they must all be contained)
const product = {
product: {
title: 'Gift Card',
tags: ['gift', 'something', 'another'],
},
};
const schema = {
product: {
tags: ['gift', 'something'],
},
};
matchJSONToSchema(product, schema); // true
Or even nested objects
const order = {
order: {
id: 123,
items: [
{
id: 456,
title: 'My product',
},
],
},
};
const schema = {
order: {
items: {
id: 456,
},
},
};
matchJSONToSchema(order, schema); // true
Operators
Sometimes you need more than simple a equal
matching. Our syntax support different operators to allow for more complex matching strategies.
Operators can be used as an object instead of the matching primitive (value)
const product = {
product: {
title: 'A product',
inventory: 5,
},
};
const schema = {
product: {
inventory: {
$lte: 10,
},
},
};
matchJSONToSchema(product, schema); // true
All operators
| Operator | Supported Type | Description |
| ----------- | ---------------------------------------- | ----------------------------- |
| $eq | any
| Equal (or deep equal) |
| $neq | any
| Not Equal (or deep not equal) |
| $gte | string
,number
| Greater than or equal to |
| $gt | string
,number
| Greater than |
| $lte | string
,number
| Less than or equal to |
| $lt | string
,number
| Less than |
| $in | string
,number
,string[]
, number[]
| Contains |
| $nin | string
,number
,string[]
, number[]
| Does not contain |
| $startsWith | string
,string[]
| Starts with text |
| $endsWith | string
,string[]
| Ends with text |
| $exist | boolean
| Undefined or not undefined |
| $or | array
| Array of conditions to match |
| $and | array
| Array of conditions to match |
| $ref | <field> | Reference a field |
| $not | Valid syntax | Negation |
$or / $and Operator
The reference $or
and $and
are special operator to evaluate match with an array of conditions. For the match to be true, only one of the condition needs to match. The array of condition can contain any other valid schema supported.
const product = {
product: {
title: 'A product',
inventory: 5,
},
};
const schema = {
product: {
inventory: {
$or: [1, 5],
},
},
};
matchJSONToSchema(product, schema); // true
const exmaple = {
"hello": "world"
}
const schema = {
$or: [
{ "hello": "johny"}
{ "hello": "mark"},
]
}
matchJSONToSchema(example, schema); // false
References
The refrence $ref
is a special operator to reference other values in your JSON input when evaluating match. The reference input must be a string
representing the value path. For example using this JSON input:
const example = {
type: 'example',
nested_object: {
hello: 'world'
array: [1, 2, 3]
}
};
const ref1 = 'type' // example
const ref2 = 'type.nested_object.hello' // world
const ref3 = 'type.nested_object.array[1]' // 1
const ref3 = 'type.nested_object.array[$index]' // 1,2 or 3 depending on the current index
const product = {
updated_at: '2020-04-20',
created_at: '2020-04-20',
};
const schema = {
updated_at: {
$ref: 'created_at',
},
};
matchJSONToSchema(product, schema); // true
You can also reference the current array index instead of a specific index with $index
. You can have multiple $index
in your reference if you are dealing with nested arrays.
const input = {
variants: [
{ updated_at: '2020-05-20', created_at: '2020-04-20' },
{ updated_at: '2020-04-20', created_at: '2020-04-20' },
],
};
const schema = {
variants: {
updated_at: {
$ref: 'variants[$index].created_at',
},
},
};
matchJSONToSchema(product, schema); // true
A reference can also be used in conjuction with other operators
const product = {
inventory: 0,
old_inventory: 10,
};
const schema = {
inventory: {
$lte: { $ref: 'old_inventory' },
},
};
matchJSONToSchema(product, schema); // true
$exist operator
$exist
requires a field to be undefined when false and array, number, object, string, boolean or null when true.
const product = {
inventory: 0,
};
const schema = {
old_inventory: {
$exist: false,
},
};
Negation operator
$not
negation of the schema.
const product = {
inventory: 0,
};
const schema = {
$not: {
inventory: 1,
},
};