{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ItemSearchFullText", "type": "object", "properties": { "text": { "type": "string" }, "fields": { "type": "array", "default": [ "NAME" ], "items": { "type": "string", "enum": [ "NAME", "DESCRIPTION", "TRAIT_VALUE" ] } } }, "required": [ "text" ] }