Meta in Roles table

I was wondering how to populate the Meta field in the UserAuthRole table?
Current services (AssignRoleService) do not have any feature to add meta information (or am I missing something?).
Can I add the same Role for 1 user but with different Meta?
I would like to add a Role “VenueManager” and in the Meta data I would like to add the ID of the Venue. But the same user can also manage another Venue. Can I add a second role “VenueManager” with different ID in the Meta?

The UserAuthRole is an internal support table used by some Auth Repository implementations to maintain User Roles in a separate table, it’s something your Custom Auth Repository would be able to maintain when it saves Roles/Permissions, it doesn’t have an external user-facing API to access it itself.

Ok thanks for explaining.