Glossary term
Permission model
A permission model is the structure a system uses to decide who may do what — which principals exist, which containers hold grantable capability, how multiple grants combine, and what happens when nothing grants access — as distinct from any individual permission expressed within it.
Also known as access control modelauthorization modelpermission set modelRBAC model
In practice
The distinction between a permission model and a permission is the difference between the rules of chess and a move. Three properties of the model, not of any rule, decide whether it survives a security review. What are the containers — roles, groups, profiles, permission sets — and is there more than one kind doing the same job? How do grants combine when a person holds several: additively, so any grant allows, or with denies that override, so evaluation order and precedence decide the outcome? And what is the default when nothing matches — deny, or allow? Products accumulate overlapping containers over the years, and the resulting question "why can this person see this record" becomes unanswerable without simulating the engine, which is precisely the question an auditor opens with.
ObjectStack collapses that surface deliberately. There is one capability container — the permission set — and it is union-merged and purely additive: no bit inside it is a deny. Positions are a flat distribution group that binds sets to people, business units are the visibility hierarchy, and there is no Profile concept at all. Access is denied by default in the literal sense that every allow bit defaults to false, so an object is unreadable until a definition says otherwise. On top of that one model sit four enforcement layers: object-level CRUD, field-level read and edit, row-level predicates (see row-level security), and per-record sharing for the collaboration exceptions that would otherwise be solved by widening a whole role. Export is its own axis rather than a consequence of read, because reading a record on screen and pulling the whole table down as a CSV are different privileges — a separation Salesforce, Dynamics, NetSuite and SAP all make, and one that a coarse model quietly loses.
Additive-with-no-deny is a real constraint, and it is chosen for reviewability rather than expressiveness. Because grants only ever add, "why can this person see this" is answered by listing the sets that grant it — a finite, readable list — where a deny-capable model requires reasoning about precedence between rules that may have been written years apart by different people. The same property is what lets an AI agent be governed without inventing anything for it: the agent acts as the signed-in user and resolves against that user’s sets, so there is no privileged service identity whose authority has to be reasoned about separately, and reviewing what the agent may do is the same exercise as reviewing what the person may do.
Where this term is used
Pages and articles that put this term to work.
Product pages
- Permissions & security Role-based, row-level, and field-level access control with a permission matrix editor and an audit log viewer, record sharing, and tenant isolation — enforced on people and AI agents alike.
- Trust center Review the ObjectOS trust model: data residency, self-hosted deployment, identity, permissions, approvals, audit logs, AI tool boundaries, and enterprise security review materials.
- App interfaces Forms, views, and dashboards render straight from metadata — shaped by each user’s permissions, updated in real time, and fine-tuned in a live-preview view designer with column inspectors and filter builders.
Articles
- Wie AI Agents innerhalb von Unternehmensberechtigungen arbeiten Unternehmen brauchen keine AI Agents als Super-Admins. Sie brauchen kontrollierte Nutzer, die Berechtigungen erben, riskante Aktionen zur Freigabe senden und auditierbar bleiben.
- Warum Low-Code in komplexen Unternehmen bricht Low-Code hilft Teams, Seiten und Workflows schneller zu bauen. Komplexe Geschäftssysteme werden jedoch durch Objekte, Berechtigungen, Integration, Veränderung und Wartbarkeit begrenzt.