Thanks for the reply. You're probably right, it would be nice to search on a key and not just plain text.
I thought I could do this manually using webscripts (extracting the json object and manually creating the "properties"), but it appears the JSON object is only available when the webscript receives an application/json request header. Is that right?
The docs state:
The JSON Object API provides the ability to programmatically traverse JSON documents, where the root of the document is either a JSON array or a JSON object. The Web Script Framework, if instructed, supplies one of two root object type named json to the web script, depending on the root of the JSON document.
"If instructed": how do I "instruct" the webscript to include those root objects? It's obviously instructed automatically where the request header has application/json, but can I "instruct it" myself?
I don't want to send the script any json, because the json object is actually in the repository already.