feat: exact match search

This commit is contained in:
Methapon2001 2023-12-14 15:35:18 +07:00
parent e65fb9f5d9
commit 6e9145e3cc
No known key found for this signature in database
GPG key ID: 849924FEF46BD132
4 changed files with 26 additions and 4 deletions

View file

@ -138,6 +138,9 @@
"AND": {
"items": {
"properties": {
"exact": {
"type": "boolean"
},
"value": {
"type": "string"
},
@ -156,6 +159,9 @@
"OR": {
"items": {
"properties": {
"exact": {
"type": "boolean"
},
"value": {
"type": "string"
},
@ -170,8 +176,14 @@
"type": "object"
},
"type": "array"
},
"exact": {
"type": "boolean"
}
},
"required": [
"exact"
],
"type": "object",
"additionalProperties": false
},