DataAutoList

From Wikipedia, the free encyclopedia

{

   "sources": "Copied verbatim from my head",
   "description": "Some good fruits for you",
   "license": {
       "text": "⧼jsonconfig-license-name-CC0-1.0+⧽",
       "url": "⧼jsonconfig-license-url-CC0-1.0+⧽",
       "code": "CC0-1.0+"
   },
   "schema": {
       "fields": [
           {
               "type": "string",
               "name": "id",
               "title": "Fruite ID"
           },
           {
               "type": "number",
               "name": "count",
               "title": "Count"
           },
           {
               "type": "boolean",
               "name": "liked",
               "title": "Do I like it?"
           },
           {
               "type": "localized",
               "name": "description",
               "title": "Description"
           }
       ]
   },
   "data": [
       [
           "peaches",
           100,
           true,
           "in english"
       ],
       {
           "1": "plums",
           "3": false,
           "4": "in english"
       },
       [
           "blueberries",
           180,
           true,
           "in english"
       ],
       [
           "strawberries",
           46,
           false,
           "in english"
       ],
       [
           "bananas",
           21,
           true,
           "in english"
       ]
   ]

}