Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 860 Bytes

exportsheetarrays.md

File metadata and controls

53 lines (47 loc) · 860 Bytes

Export sheet arrays

Export sheet arrays will export sheets as JSON arrays with each row creating an element in the array.

Note

This setting will force the first column to be included in each row's object.

Example:

Sheet name: Companies

Name Console
Microsoft Xbox Series X
Nintendo Switch
Sony Playstation 5

Default Output:

{
  "Companies": {
    "Microsoft": {
      "Console": "Xbox Series X"
    },
    "Nintendo": {
      "Console": "Switch"
    },
    "Sony": {
      "Console": "Playstation 5"
    }
  }
}

Sheet Array Output:

{
  "Companies": [
    {
      "Name": "Microsoft",
      "Console": "Xbox Series X"
    },
    {
      "Name": "Nintendo",
      "Console": "Switch"
    },
    {
      "Name": "Sony",
      "Console": "Playstation 5"
    }
  ]
}