Hello I.,
If you want to use `Provider.Role2`, you must to use `namespace` without `object` (object seems to not work with namespace...), then change :
- `object` to `class`
- `package` to `namespace`
with that, see your expected result:
@startuml
hide circle
hide empty members
namespace Provider {
class Role2 {
scope = reseller
priv = all
}
}
namespace Reseller {
class Role6 {
scope = reseller
priv = all
}
class Staff1
class Staff2
Staff1 --> Role6
Staff2 --> Provider.Role2
}
@enduml

If that can help,
Regards.