SoftwareItemOwner
M:n relation between SoftwareItem and RBAC User. Models software item ownership. Software Item Owners can be assigned special privileges on their owned products.
erDiagram
RbacUser ||--o{ SoftwareItemOwner : "RbacUserID"
SoftwareItem ||--o{ SoftwareItemOwner : "SoftwareItemID"
Fields
| Field |
Type |
Description |
| Created |
datetime |
Date/Time this relation was created |
| CreatedByRbacUserID |
numeric |
Rbac User that created the relation |
| ExtraData |
string |
An optional JSON document that can hold extra data for this SoftwareItemOwner relation |
| ID |
numeric |
Internal ID for the SoftwareItemOwner entity (Primary Key) |
| RbacUserID |
numeric |
Internal ID that references the RbacUser entity (Foreign Key) |
| SoftwareItemID |
numeric |
Internal ID that references the SoftwareItem entity (Foreign Key) |
References
| Column Name |
Referenced Table |
Description |
| RbacUserID |
RbacUser |
User object for RBAC. Typically replicated from Active Directory. |
| SoftwareItemID |
SoftwareItem |
Software items hold customer specific information about software objects |