Raw data row from the metadata dataset / database view.
copyInitData maps this into the typed properties (ID, Name, ParentID, etc.).
Optional_md: IMetadataProviderAccepted but unused; retained so the signature matches the universal
new m.class(dataRow, metadataProvider) convention used by
MetadataFromSimpleObjectWithoutUser.
Timestamp when the authorization was created
Timestamp when the authorization was last updated
Description of the authorization
Unique identifier for the authorization
Indicates whether this authorization is currently active and can be granted to users or roles
Name of the authorization
Name of the parent authorization
The unique identifier for the parent authorization, if applicable
When set to 1, Audit Log records are created whenever this authorization is invoked for a user
Returns the role assignments for this authorization.
Lazy resolution — filters from the global Metadata.Provider.AuthorizationRoles
collection on every call, like QueryInfo.Permissions filters from
Metadata.Provider.QueryPermissions. No result caching is applied because
AuthorizationRoleInfo objects are lightweight and the collection is small.
ProtectedcopyCopies initialization data from a plain object to the class instance. Only copies properties that already exist on the class to prevent creating new fields. Special handling for DefaultValue fields to extract actual values from SQL Server syntax.
The initialization data object
Determines if a given role can execute actions under this authorization.
Phase 2b also honours Deny semantics for consistency with UserCanExecute.
The role to check for execution rights.
True if an Allow authorization-role exists for this role and no Deny does.
Default JSON serialization for BaseInfo subclasses.
Emits all non-underscored direct field declarations. For _-prefixed private backing fields
(the MJ pattern for collection storage — e.g. _Fields, _RelatedEntities, _OrganicKeys),
emits the value of the corresponding same-named public getter instead. Purely computed getters
without a backing field (display-name formatters, derived flags) are intentionally skipped —
they can throw when source fields are null and don't belong on the wire anyway.
Nested BaseInfo instances and arrays of them unwrap automatically via JSON.stringify's native toJSON() protocol.
Subclasses may override to emit a filtered subset or custom shape (see EntityFieldValueInfo).
Determines if a given user can execute actions under this authorization based on their roles.
Evaluation rules (fixed in Phase 2b):
AuthorizationRoleInfo.RoleID (the FK to Roles), not the authorization-role PK.Type column: any matching Deny row wins; without a Deny, at least one Allow is required.The user to check for execution rights.
True if the user has a matching Allow role and no matching Deny role; false otherwise.
Stores the fundamental permissions and access rights that can be granted to users and roles throughout the system.