Yurik added a subscriber: Milimetric.
Yurik added a comment.

  Some of this functionality is already supported by JsonConfig extension, and 
I will be happy to guide that approach.  Also, I would advise against too many 
data formats - we got burnt by it with the API. TSV/CSV are great for 
representing tables, but their storage format is poorly defined when it comes 
to escaping.  So I would suggest TSV stored as JSON, e.g.
  
    col1,col2,col3
    10,20,30
    50,60,70
  
  to be stored as
  
    {
      "columns": ["col1", "col2", "col3"],
      "data": [
        [10, 20, 30],
        [50, 60, 70]
      ]
    }
  
  There can be an api that handles this specific format and returns it as a TSV 
for easier processing by graphs.

TASK DETAIL
  https://phabricator.wikimedia.org/T120452

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Yurik
Cc: Milimetric, Thryduulf, JEumerus, MarkTraceur, Yurik, Matanya, ekkis, 
matmarex, Lydia_Pintscher, Aklapper, Steinsplitter, StudiesWorld, DannyH, 
D3r1ck01, Izno, Wikidata-bugs, aude, Bawolff, El_Grafo, Ricordisamoa, 
Fabrice_Florin, Mbch331, Jay8g, Krenair



_______________________________________________
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs

Reply via email to