`files` on message object contains all files sent, not the rest

The documentation says on files:

The information on the rest of the files in the multiple file message, which were either directly uploaded to the Sendbird server or specified by an externally hosted URL. It has properties like url, file_name, file_size, file_type, and thumbnails.

  1. It is an array, and not a nested object.
  2. It contains ALL the files uploaded in a message, not the “rest”:
{
  "type": "FILE",
  "file": {
    "name": "1329130540.svg",
    "url": "https://file-us-3.sendbird.com/xxxxxxfb3d6541c1929217d4e1fxxxx.svg",
    "type": "image/svg+xml",
    "data": "",
    "size": 459
  },
  "files": [
    {
      "url": "https://file-us-3.sendbird.com/xxxxxfb3d6541c1929217d4e1fxxxxx.svg",
      "file_name": "1329130540.svg",
      "file_size": 459,
      "file_type": "image/svg+xml",
      "thumbnails": [],
      "require_auth": true
    },
    {
      "url": "https://file-us-3.sendbird.com/xxxxxxa371ea4a0a86e03e2a3axxxxxx.png",
      "file_name": "temp.png",
      "file_size": 25760,
      "file_type": "image/png",
      "thumbnails": [],
      "require_auth": true
    }
  ],
}

The message was sent using React UI Kit with isMultipleFilesMessageEnabled={true} defined on the <GroupChannel/>, without any other modification.