Data:I18n/Module:TNT.tab

From Minescape
Revision as of 00:10, 26 August 2020 by L1ghtsword (talk | contribs) (Created page with "{ // !!!!! All comments will be automatically deleted on save !!!!! // Optional "description" field to describe this data "description": {"en": "table description...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

{

   // !!!!! All comments will be automatically deleted on save !!!!!
   // Optional "description" field to describe this data
   "description": {"en": "table description"},
   // Optional "sources" field to describe the sources of the data.  Can use Wiki Markup
   "sources": "Copied from Example Data Source",
   // Mandatory "license" field.

// Recommended license: CC0-1.0. // Please uncomment one of the licenses: // "license": "CC0-1.0", // Creative Commons Zero // "license": "CC-BY-1.0", // Creative Commons Attribution 1.0 // "license": "CC-BY-2.0", // Creative Commons Attribution 2.0 // "license": "CC-BY-2.5", // Creative Commons Attribution 2.5 // "license": "CC-BY-3.0", // Creative Commons Attribution 3.0 // "license": "CC-BY-4.0", // Creative Commons Attribution 4.0 // "license": "CC-BY-4.0+", // Creative Commons Attribution 4.0 or later version // "license": "CC-BY-SA-1.0", // Creative Commons Attribution-Share Alike 1.0 // "license": "CC-BY-SA-2.0", // Creative Commons Attribution-Share Alike 2.0 // "license": "CC-BY-SA-2.5", // Creative Commons Attribution-Share Alike 2.5 // "license": "CC-BY-SA-3.0", // Creative Commons Attribution-Share Alike 3.0 // "license": "CC-BY-SA-4.0", // Creative Commons Attribution-Share Alike 4.0 // "license": "CC-BY-SA-4.0+", // Creative Commons Attribution-Share Alike 4.0 or later version // "license": "ODbL-1.0", // ODC Open Database License v1.0 // "license": "dl-de-zero-2.0", // Data licence Germany - Zero - Version 2.0 // "license": "dl-de-by-1.0", // Data licence Germany – attribution – Version 1.0 // "license": "dl-de-by-2.0", // Data licence Germany – attribution – version 2.0


   // Mandatory fields schema. Each field must be an object with
   //   "name" being a valid identifier with consisting of letters, digits, and "_"
   //   "type" being one of the allowed types like "number", "string", "boolean", "localized"
   "schema": {
       "fields": [
           {
               "name": "header1",
               "type": "number",
               // Optional label for this field
               "title": {"en": "header 1"},
           },
           {
               "name": "header2",
               "type": "string",
               // Optional label for this field
               "title": {"en": "header 2"},
           }
       ]
   },
   // array of data, with each row being an array of values
   "data": [
       [ 42, "peace" ]
   ]

}