1º Currently when we banned some player from the server, using their control panel, a file is created by calling Bans.json, with this structure
[
{
"playerId": "XXXXXXXXXXXXXXXXX",
"banTime": 1559602688,
"duration": 1440,
"banReason": "Banned by admin",
"adminId": "YYYYYYYYYYYYYYYYY"
}
]
but when it is accessed through Rcon, to the list of banned, the value of adminId does not appear, by any side.
How can you access this data?

2º It would be possible, through Rcon, to change the value of "banReason".
For example.
rcon -> ban XXXXXXXXXXXXXXX 1440 "Cheating" YYYYYYYYYYYYYYYYY
and the structure is created
[
{
"playerId": "XXXXXXXXXXXXXXXXX",
"banTime": 1559602688,
"duration": 1440,
"banReason": "Cheating",
"adminId": "YYYYYYYYYYYYYYYYY"
}
]

It would be to better take control of the people expelled, who has expelled them, and for what reason.
Thank you