I want to include in one of my tiddywikis a telphone database. First I tried wit dictionary tiddlers:
Mike: 6365588
Paul: 4565432
But I need more data of each contact, not only name:phone. I need a Description and the mobile phone, so I try with JSON:
{
"Mike":
{
"Phone": "6365588",
"Description": "Technical assistance",
"Mobile": "9365588"
},
"Paul":
{
"Phone": "4565432",
"Description": "Legal assistance",
"Mobile": "9565432"
}
}
Now the questions:
Is it possible to have all phones in one JSON tiddler?
How I get all data of the contacts?
What is the “tyddlywiki-way” of doing this telphone database?