Or maybe not. I was thinking of full-fledged JSON array,
[
{
"id": "123"
"first-name": "Joe",
"last-name": "Biden",
"address": "1600 Pennsylvania Ave, Washington DC, USA"
"latitude": 38.897957,
"longitude": -77.036560,
"more": "fields here"
},
{
"id": "456"
"first-name": "Anthony",
"last-name": "Albanese",
"address": " 10 Downing St, London SW1A 2AA, United Kingdom"
"latitude": 51.503368,
"longitude": -0.127721,
"more": "fields here"
}
]
Or I could structure it as an object:
{
"123": {
"first-name": "Joe",
"last-name": "Biden",
"address": "1600 Pennsylvania Ave, Washington DC, USA"
"latitude": 38.897957,
"longitude": -77.036560,
"more": "fields here"
},
"456": {
"first-name": "Anthony",
"last-name": "Albanese",
"address": " 10 Downing St, London SW1A 2AA, United Kingdom"
"latitude": 51.503368,
"longitude": -0.127721,
"more": "fields here"
}
}
But the point is that I want to search the name fields to find a match. I’d like to use the address
, first-
/last-name
, and latitude
/longitude
in building a new tiddler when the user searches “alban”, finds and selects the record for “Anthony Albanese”.
If needed, I will add a full-name
field to simplify the searching.
I’m not sure that plugin will add anything to help with this. But I’ll check it out.