Howdy
I have a problem with aliases, I changed the alias of a field like this:

But when i try to use the field in an arcade expression, the alias seems to don't work
For instance, when i call this field, here what's Arcade see:
var fields = Schema($feature).fields
Console(fields[42])
var count = 0;
for (var field in $feature) {
if (count==41) Console(field)
count++
}
Console:
{"alias":"T2_C9_POUSSIER_WINSBACK_MARIE_AGNES","defaultValue":null,"editable":true,"name":"T2_C9_POUSSIER_WINSBACK_MARIE_A","nullable":true,"type":"esriFieldTypeInteger"}
T2_C9_POUSSIER_WINSBACK_MARIE_A
It seems that the field alias isn't stocked in the schema, but then, how can i get the aliases ?