User Import / Export Extension - Role migration

Hi there ,

I’m testing User Import / Export Extension, I am generating a JSON file with user info for importing.

I’m wondering if role migration is possible or not.

According to this documentation looks like it is:

I tried with this example but role was not populated (tried also with role-id)

[
{
   "email": "jsmith@mailiminator.com",
   "email_verified": true,
   "given_name": "John",
   "family_name": "Smith",
   "blocked": false,
   "custom_password_hash": {
    ...,
   "app_metadata": {
      "roles": ["my-role"]
   }
}
]

Is possible to migrate roles ?

thank you