<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>identity management Archives - IDPro</title>
	<atom:link href="https://idpro.org/tag/identity-management/feed/" rel="self" type="application/rss+xml" />
	<link>https://idpro.org/tag/identity-management/</link>
	<description>The Professional Organization for Digital Identity Management</description>
	<lastBuildDate>Mon, 31 Aug 2026 13:59:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://idpro.org/wp-content/uploads/2023/07/cropped-idpro_stickerA-circle-100-32x32.jpg</url>
	<title>identity management Archives - IDPro</title>
	<link>https://idpro.org/tag/identity-management/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Authorization Terminology is a Mess: Let&#8217;s Fix It</title>
		<link>https://idpro.org/authorization-terminology-is-a-mess-lets-fix-it/</link>
		
		<dc:creator><![CDATA[Elizabeth Garber]]></dc:creator>
		<pubDate>Mon, 31 Aug 2026 13:59:31 +0000</pubDate>
				<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[access control]]></category>
		<category><![CDATA[authorization]]></category>
		<category><![CDATA[identity management]]></category>
		<category><![CDATA[idpro]]></category>
		<guid isPermaLink="false">https://idpro.org/?p=3083</guid>

					<description><![CDATA[<p>Andrea Chiarelli argues that Authorization terminology conflates ideas and presents complementary technologies as rivals. This post proposes a new taxonomy.</p>
<p>The post <a href="https://idpro.org/authorization-terminology-is-a-mess-lets-fix-it/">Authorization Terminology is a Mess: Let&#8217;s Fix It</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><strong>by Andrea Chiarelli</strong></p>



<p class="wp-block-paragraph">In <a href="https://idpro.org/is-pbac-an-authorization-model/">Is Policy-Based Access Control (PBAC) an Authorization Model?</a>, I argued that PBAC gets compared to Role-Based Access Control (RBAC) and Attribute-Based Access Control (ABAC) as if it belonged in the same category, when it actually answers a different question.</p>



<p class="wp-block-paragraph">RBAC and ABAC describe <em>what data</em> a decision is based on: a role, an attribute. PBAC describes <em>how</em> that decision gets made: through a centralized policy engine instead of logic wired into the application. One is about the shape of the rule. The other is about where the rule lives and who evaluates it.</p>



<p class="wp-block-paragraph">In my opinion, treating them as competing options is like comparing a recipe to a kitchen.</p>



<p class="wp-block-paragraph">That distinction attempted to solve one specific confusion, but it left a bigger one untouched: PBAC isn&#8217;t the only term that gets misfiled this way.</p>



<p class="wp-block-paragraph">Mandatory Access Control (MAC) and Discretionary Access Control (DAC) get compared to RBAC and ABAC too, even though they describe who administers the rules, not what the rules look like.</p>



<p class="wp-block-paragraph">Access Control List (ACL) and Relationship-Based Access Control (ReBAC) show up in the same breath as &#8220;authorization models,&#8221; but one is arguably a special case of the other, depending on which paper you read.</p>



<p class="wp-block-paragraph">The terminology around authorization has accumulated for decades across access control research, identity vendors, and standards bodies, and a lot of it answers different questions while using the language of a single one: &#8220;<em>what model is this?</em>&#8220;</p>



<p class="wp-block-paragraph">This piece generalizes the model-versus-architecture distinction into a full taxonomy. Instead of asking &#8220;<em>which authorization model is this system using?</em>&#8220;, I want to ask five narrower questions about any authorization system, answer each one independently, and only then see where familiar labels like RBAC, ABAC, MAC, and PBAC actually land. If the terms stop competing once they&#8217;re placed on the right axis, that&#8217;s a sign the axes are doing real work.</p>



<h2 class="wp-block-heading">The Core Problem of Authorization</h2>



<p class="wp-block-paragraph">Authorization answers one question: <strong>can this subject perform this action on this object?</strong> A user reading a file, a service calling an API, a process writing to a database. Every authorization decision reduces to that same triple: subject, action, object.</p>



<p class="wp-block-paragraph">In the simplest possible system, there&#8217;s no decision to make because there&#8217;s no separation between the party asking and the party deciding. Picture your own diary, kept in a drawer in your own room. You want to read it, so you open the drawer and read it. Nobody has to grant you permission, because nobody else is involved: wanting and getting are the same act.</p>



<p class="wp-block-paragraph">Real systems rarely stay this simple, because the thing being accessed usually belongs to more than one interested party. Put that same diary in a house with housemates, or move it into a company&#8217;s filing cabinet, and the picture changes immediately. Not everyone who wants to open the drawer should be allowed to, and somebody has to decide, case by case, who does and who doesn&#8217;t.</p>



<p class="wp-block-paragraph">A resource server does exactly that job for software. A multi-tenant SaaS application, an internal API, a cloud storage bucket accessed by dozens of services: all of them need something that looks at a request and decides whether to honor it. That &#8220;something&#8221; is what the rest of this piece is about, and it turns out to have more moving parts than a single word like &#8220;RBAC&#8221; or &#8220;PBAC&#8221; can capture.</p>



<h2 class="wp-block-heading">How an Authorization Request Gets Processed</h2>



<p class="wp-block-paragraph">Follow a single authorization request through a resource server and a consistent set of stages emerges, regardless of the specific technology involved: a request arrives, the server gathers context about the user and the resource, a policy evaluates that context against a rule. The evaluation produces an allow or deny decision, and the server enforces that decision by letting the request through or rejecting it.</p>



<p class="wp-block-paragraph">The same five stages appear in essentially every authorization system:</p>



<ol class="wp-block-list">
<li><strong>Someone defines the rules.</strong> A developer hardcodes a check; a security team writes a policy; a resource owner sets sharing permissions on their own file.</li>



<li><strong>The rules take some concrete shape.</strong> A conditional in application code; a JSON document; an XACML policy; a row in a spreadsheet someone exports into a database table.</li>



<li><strong>Some data has to feed the decision.</strong> The user&#8217;s role; the department listed in a database; the time of day; the relationship between the requesting user and the resource&#8217;s owner.</li>



<li><strong>A decision gets computed.</strong> The rule and the data get evaluated together, producing allow or deny.</li>



<li><strong>The decision gets enforced.</strong> Something has to actually act on the result: block the request or redirect it.</li>
</ol>



<p class="wp-block-paragraph">These five stages map onto a vocabulary that&#8217;s been around in access control architecture for a while:</p>



<ul class="wp-block-list">
<li>Policy Administration Point (who defines the rules)</li>



<li>Policy Information Point (what data feeds the decision)</li>



<li>Policy Decision Point (where the decision gets computed)</li>



<li>Policy Enforcement Point (where it gets enforced)</li>
</ul>



<p class="wp-block-paragraph"><a href="https://idpro.org/the-state-of-the-union-of-authorization/">Brossard&#8217;s overview of ABAC architecture</a> lays out this PAP/PIP/PDP/PEP breakdown in more detail, and it&#8217;s worth reading if these terms are new.</p>



<p class="wp-block-paragraph">There&#8217;s a related, more academic framing worth pulling in here, from a 2022 systematic <a href="https://www.sciencedirect.com/org/science/article/pii/S1744008422000180">literature review of authorization and access control research</a> by Mohamed, Auer, Hofer, and Küng. The paper draws a ladder with four levels: an <strong>authorization strategy</strong> (discretionary, mandatory, or hybrid) sits above an <strong>authorization model</strong> (the subjects, objects, and other components a system reasons about), which sits above an <strong>authorization policy</strong> (the concrete rule instance). In parallel, an <strong>access control model</strong> (the logic for deciding allow/deny) is enforced by an <strong>access control mechanism</strong> (the actual running software). It&#8217;s a rigorous way of saying the same thing this piece is arguing: strategy, model, policy, and mechanism are separate layers, and conflating them is where the terminology breaks down.</p>



<p class="wp-block-paragraph">None of these five stages, by themselves, tells you whether a system &#8220;is RBAC&#8221; or &#8220;is PBAC.&#8221; Each stage is actually a separate question, with its own independent set of answers. That&#8217;s the seed of the classification below.</p>



<h2 class="wp-block-heading">A Consistent Classification</h2>



<p class="wp-block-paragraph">Six axes cover the five stages above (Authorization Policy gets split from Authorization Model, since a model can be instantiated by more than one kind of concrete policy artifact). Each axis has a small number of common answers, and every familiar term (ACL, RBAC, ABAC, ReBAC, MAC, DAC, PBAC) is really an answer to one specific axis, not a label for the whole system.</p>



<p class="wp-block-paragraph">A useful way to keep the six axes distinct is a metaphor borrowed from outside software entirely: the machinery of law. A legislature drafts rules, the rules get written down as statutes, courts weigh those statutes against the facts of a case, and police carry out the verdict. Swap &#8220;legal system&#8221; for &#8220;authorization system&#8221; and the same six jobs reappear below, one at a time.</p>



<h3 class="wp-block-heading">Authorization Administration: who sets the rules?</h3>



<p class="wp-block-paragraph">Before a rule can be evaluated, someone has to have the authority to write it in the first place. That authority can be concentrated in one place or spread across many, and a system&#8217;s answer here is independent of what the rules actually say. Authorization administration can be:</p>



<ul class="wp-block-list">
<li><strong>Centralized</strong>: a security team or administrator defines rules for everyone. This is the pattern behind MAC (Mandatory Access Control): access is determined by a central authority, not by the resource owner.</li>



<li><strong>Decentralized</strong>: the owner of a resource decides who else can access it. This is DAC (Discretionary Access Control): the classic &#8220;<em>share this file with these people</em>&#8221; pattern.</li>



<li><strong>Hybrid</strong>: some rules come from a central authority, others from individual resource owners, layered together.</li>
</ul>



<p class="wp-block-paragraph">Mohamed et al&#8217;s literature review treats strategy this way too, and their comparative analysis is instructive: when they classified access control models against this axis, RBAC, ABAC, and ReBAC families all landed in the hybrid category, not cleanly in DAC or MAC. That&#8217;s a useful data point on its own. It confirms administration strategy is genuinely independent of authorization model: a role-based system can be centrally administered, owner-administered, or both, and it&#8217;s still RBAC either way.</p>



<p class="wp-block-paragraph">The legal system runs on exactly this split. A parliament, or a king under older systems, legislates for an entire population: centralized administration. Two neighbors agreeing on where a fence line runs, or a homeowner deciding who gets a key, is decentralized administration, closer to how contract law and property law actually work. Most real legal systems mix both, the same way most authorization systems do.</p>



<h3 class="wp-block-heading">Authorization Model: what data type drives the decision?</h3>



<p class="wp-block-paragraph">Once the authority to write a rule is settled, the next question is what the rule actually reasons about: the specific kind of information a decision checks each time it runs. This is the axis most people mean when they say &#8220;authorization model,&#8221; and it&#8217;s the one my earlier PBAC article focused on. Here are a few common authorization models:</p>



<ul class="wp-block-list">
<li><strong>Identity-based (ACL)</strong>: the decision checks whether the specific subject appears on a list attached to the object.</li>



<li><strong>Role-based (RBAC)</strong>: the decision checks whether the subject holds a role that&#8217;s been granted the requested permission.</li>



<li><strong>Attribute-based (ABAC)</strong>: the decision checks attributes of the subject, object, action, or environment against a rule (department = &#8220;finance&#8221;, clearance ≥ &#8220;secret&#8221;, time between 9 AM and 5 PM).</li>



<li><strong>Relationship-based (ReBAC)</strong>: the decision checks the relationship between subject and object, often by traversing a graph (is this user a member of the team that owns this document?).</li>
</ul>



<p class="wp-block-paragraph">It&#8217;s worth being honest about the fuzziness here. Depending on which academic source you read, ACL and RBAC can be described as special cases of ABAC, where the attribute in question happens to be identity or role membership. These four categories are the most useful cut for a working taxonomy, not a claim that the categories are mutually exclusive at the mathematical level.</p>



<p class="wp-block-paragraph">The law makes the same kind of distinction between what a rule is actually about. Constitutional and administrative law usually define who may act by office, &#8220;<em>only the president may sign this treaty</em>&#8220;, which is role-based. Regulatory law more often reaches for attributes, &#8220;<em>any business with revenue over ten million dollars must file this report</em>&#8220;. Family and contract law hinge on a relationship: spouse, parent, business partner. And a law or injunction naming one specific person or company is the legal equivalent of an ACL. Different areas of law reach for different criteria for the same reason different authorization systems do: each criterion fits a different kind of decision.</p>



<h3 class="wp-block-heading">Authorization Policy: what shape does the rule take?</h3>



<p class="wp-block-paragraph">Once a model is chosen, it still has to be written down somewhere as a concrete artifact:</p>



<ul class="wp-block-list">
<li>Hardcoded conditionals in application code.</li>



<li>A structured document (JSON, YAML) loaded and interpreted at runtime.</li>



<li>A declarative policy language purpose-built for authorization, like XACML, Rego (Open Policy Agent), or Cedar.</li>



<li>A row in a database table.</li>
</ul>



<p class="wp-block-paragraph">This axis matters because two systems can share the same authorization model (both are RBAC) while differing completely in maintainability, auditability, and who&#8217;s allowed to change the rules, purely because of how the policy is expressed.</p>



<p class="wp-block-paragraph">In the legal metaphor, this is simply the law itself: the actual text of the statute or code, independent of who passed it and independent of which area of law it belongs to.</p>



<h3 class="wp-block-heading">Authorization Information: where does the decision-relevant data come from?</h3>



<p class="wp-block-paragraph">A rule is only as good as the data it&#8217;s evaluated against, and that data doesn&#8217;t all arrive the same way. It&#8217;s worth separating what the rule depends on from how the system actually gets its hands on it:</p>



<ul class="wp-block-list">
<li><strong>Wired in</strong>: the data is already available in the application&#8217;s normal request flow, no extra lookup required.</li>



<li><strong>Token-based</strong>: the data arrives as claims in a JWT or similar credential, populated by the identity provider at issuance time.</li>



<li><strong>Looked up</strong>: the application queries a database, directory, or external service at decision time.</li>



<li><strong>Environmental</strong>: the data describes the context of the request itself rather than the subject or object: time, location, device posture, network.</li>
</ul>



<p class="wp-block-paragraph">This is a place where even careful academic treatments blur a real distinction. Mohamed et al&#8217;s framework folds environmental attributes into the authorization model&#8217;s component list, alongside subjects and objects, rather than treating &#8220;<em>where does this data physically come from at runtime</em>&#8221; as its own architectural concern. I think that&#8217;s a small version of the same mistake the PBAC article calls out: knowing that a decision depends on &#8220;time of day&#8221; is a modeling question but knowing that the request has to make a network round-trip to a directory service to get it is an architecture question, with real consequences for latency and failure modes.</p>



<p class="wp-block-paragraph">A courtroom depends on the same kind of input: facts and events. Testimony, documents, timestamps, prior records. The same law applied to a different set of facts produces a different verdict, exactly the way the same policy applied to different token claims or different database lookups produces a different authorization decision. And, just as in an authorization system, where those facts come from (a witness on the stand, a document requested via subpoena, or an expert report) is its own separate concern from what the law says.</p>



<h3 class="wp-block-heading">Authorization Decision: how and where is the decision computed?</h3>



<p class="wp-block-paragraph">Once a rule and its data are both available, something has to actually run the evaluation. That &#8220;something&#8221; can live in a few different places, and where it lives is a question about architecture, not about the rule itself:</p>



<ul class="wp-block-list">
<li><strong>Wired into application code</strong>: an if statement or a framework-native permission check inline with the business logic.</li>



<li><strong>A dedicated library or module</strong>: decision logic factored out but still running inside the application process.</li>



<li><strong>A centralized policy engine</strong>: a separate service that receives context and returns a decision, often shared across many applications.</li>
</ul>



<p class="wp-block-paragraph"><strong>PBAC lives here</strong>, not on the &#8220;authorization model&#8221; axis. Centralizing the decision point into a policy engine is an architectural choice about <em>where</em> evaluation happens, and it&#8217;s compatible with any of the authorization models: a PBAC engine can evaluate role-based rules, attribute-based rules, or a mix. That&#8217;s exactly why PBAC isn&#8217;t a peer of RBAC and ABAC. It&#8217;s an answer to a different question than the one RBAC and ABAC answer.</p>



<p class="wp-block-paragraph">This is where the courtroom metaphor lands squarely: a court, and specifically a judge, is the decision engine. The law and the facts go in, a verdict comes out. And a legal system&#8217;s habit of routing different kinds of cases to different, specialized courts (traffic court, family court, a supreme court) without changing what the underlying law says is a good picture of what PBAC actually is. It&#8217;s a choice about which court hears the case, not a change to the law itself.</p>



<h3 class="wp-block-heading">Authorization Enforcement: how and where is the decision enforced?</h3>



<p class="wp-block-paragraph">A decision only matters if something acts on it, and that action doesn&#8217;t have to happen in the same place the decision was made. Authorization enforcement can live in:</p>



<ul class="wp-block-list">
<li><strong>Wired into application code</strong>: the same code path that made the decision also acts on it.</li>



<li><strong>Dedicated middleware</strong>: a framework-level component intercepts the request based on the decision.</li>



<li><strong>Distributed enforcement</strong>: a gateway, sidecar, or proxy enforces decisions at the network edge, independent of the application itself.</li>
</ul>



<p class="wp-block-paragraph">Like the authorization decision axis, this is architecture, not model. A system enforcing ABAC decisions through an API gateway and a system enforcing ABAC decisions through inline middleware are both, unambiguously, ABAC. They just made different choices about where enforcement lives, usually driven by concerns like operational scale or the number of services that need to share one policy.</p>



<p class="wp-block-paragraph">This is the police, in the metaphor: the verdict gets carried out regardless of whether that happens inside the courtroom or on a street corner miles away. The court decides; the police act. It&#8217;s the same separation between authorization decision and enforcement in an authorization system.</p>



<h3 class="wp-block-heading">Putting it together</h3>



<p class="wp-block-paragraph"><strong>A real authorization system&#8217;s full description is a tuple across all six axes, not a single word</strong>. &#8220;RBAC&#8221; says something about the authorization model axis and nothing about the other five axes. An authorization system can have:</p>



<ul class="wp-block-list">
<li>Centralized administration (MAC)</li>



<li>Role-based model (RBAC)</li>



<li>JSON policy documents</li>



<li>Token-based information</li>



<li>A shared policy engine (PBAC architecture)</li>



<li>Gateway-level enforcement.</li>
</ul>



<p class="wp-block-paragraph">That&#8217;s a coherent, common real-world setup, and every label in it is accurate simultaneously, because each one answers a different question. The confusion in most authorization discussions comes from picking one label per system and treating it as exhaustive, when it&#8217;s really just the answer to whichever axis happened to come up first in the conversation.</p>



<figure class="wp-block-image size-full is-resized"><img fetchpriority="high" decoding="async" width="721" height="503" src="https://idpro.org/wp-content/uploads/2026/08/image.png" alt="" class="wp-image-3084" style="aspect-ratio:1.4344827586206896;width:624px;height:auto" srcset="https://idpro.org/wp-content/uploads/2026/08/image.png 721w, https://idpro.org/wp-content/uploads/2026/08/image-300x209.png 300w" sizes="(max-width: 721px) 100vw, 721px" /></figure>



<p class="wp-block-paragraph">The legal metaphor running through this section is useful precisely because it breaks down in the same places the software terminology does. Nobody would call a law court an &#8220;administrative law&#8221; or claim the existence of a &#8220;witness-based law&#8221; because a judge renders a verdict considering the deposition of a witness. But the six jobs underneath it (who legislates, what kind of law applies, what the law actually says, what facts it&#8217;s applied to, who judges, who enforces) are as separable in a courtroom as they are in a policy engine, and confusing them causes the same kind of category error either way.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">The terminology problem in authorization isn&#8217;t that the field lacks vocabulary. If anything, it has too much: MAC, DAC, RBAC, ABAC, ReBAC, ACL, PBAC, and more, each coined by a different paper, standard, or vendor, at a different layer of the same request lifecycle. The problem is a habit of treating all of it as one flat list of &#8220;authorization models&#8221; to choose between, when most of these terms don&#8217;t compete with each other at all.</p>



<p class="wp-block-paragraph">Separating the questions helps in a very practical way when you&#8217;re actually choosing an approach for a real system: pick the authorization model based on what your access rules naturally depend on (roles, attributes, relationships). Separately, pick the architecture (where decisions get made and enforced) based on your operational constraints (how many services need to share policy, how much latency you can tolerate, who needs to audit or change rules). Those are two separate decisions with two separate sets of tradeoffs and bundling them into a single choice (&#8220;<em>we&#8217;re doing PBAC</em>&#8221; or &#8220;<em>we&#8217;re doing RBAC</em>&#8220;) tends to hide half of what actually needs deciding.</p>



<p class="wp-block-paragraph">None of this makes the individual labels wrong. RBAC is a real, useful description of a model. PBAC is a real, useful description of an architecture. They&#8217;re just not describing the same thing, and a consistent classification is what lets you say precisely which thing each one is.</p>



<h2 class="wp-block-heading">References</h2>



<ul class="wp-block-list">
<li><a href="https://idpro.org/is-pbac-an-authorization-model/">Is Policy-Based Access Control (PBAC) an Authorization Model?</a></li>



<li><a href="https://idpro.org/a-taxonomy-of-modern-authorization-models/">A Taxonomy of Modern Authorization Models</a></li>



<li><a href="https://idpro.org/the-state-of-the-union-of-authorization/">The State of the Union of Authorization</a></li>



<li><a href="https://www.sciencedirect.com/org/science/article/pii/S1744008422000180">A systematic literature review for authorization and access control: definitions, strategies and models</a>. <em>International Journal of Web Information Systems</em>, 18(2/3), 156-180. <a href="https://doi.org/10.1108/IJWIS-04-2022-0077">https://doi.org/10.1108/IJWIS-04-2022-0077</a></li>
</ul>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<figure class="wp-block-image size-medium"><img decoding="async" width="282" height="300" src="https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-282x300.jpg" alt="" class="wp-image-2889" srcset="https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-282x300.jpg 282w, https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-962x1024.jpg 962w, https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-768x817.jpg 768w, https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-1443x1536.jpg 1443w, https://idpro.org/wp-content/uploads/2025/10/Andrea-Chiarelli-1924x2048.jpg 1924w" sizes="(max-width: 282px) 100vw, 282px" /></figure>
</div>
</div>
</div>
</div>



<p class="wp-block-paragraph">Andrea Chiarelli is a Principal Developer Advocate at Auth0 (Okta). He has extensive experience in software development, holding various technical roles. In recent years, he has focused on Identity, developing a passion for the core concepts, which he aims to disseminate to developer communities.</p>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-full"><img decoding="async" width="346" height="350" data-id="2898" src="https://idpro.org/wp-content/uploads/2025/11/image-2.png" alt="" class="wp-image-2898" srcset="https://idpro.org/wp-content/uploads/2025/11/image-2.png 346w, https://idpro.org/wp-content/uploads/2025/11/image-2-297x300.png 297w" sizes="(max-width: 346px) 100vw, 346px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="600" height="600" data-id="2390" src="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author.png" alt="" class="wp-image-2390" srcset="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author.png 600w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-300x300.png 300w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-150x150.png 150w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-320x320.png 320w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="600" height="600" data-id="2391" src="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Active_BoK_Reviewer.png" alt="" class="wp-image-2391" srcset="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Active_BoK_Reviewer.png 600w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Active_BoK_Reviewer-300x300.png 300w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Active_BoK_Reviewer-150x150.png 150w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Active_BoK_Reviewer-320x320.png 320w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>
</figure>



<p class="wp-block-paragraph"></p>
<p>The post <a href="https://idpro.org/authorization-terminology-is-a-mess-lets-fix-it/">Authorization Terminology is a Mess: Let&#8217;s Fix It</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Identity of Everything… Else</title>
		<link>https://idpro.org/the-identity-of-everything-else/</link>
		
		<dc:creator><![CDATA[VTM Web Services]]></dc:creator>
		<pubDate>Thu, 04 Dec 2025 19:51:37 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[digital identity]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[identity management]]></category>
		<guid isPermaLink="false">https://idpro.org/?p=2903</guid>

					<description><![CDATA[<p>This article is about “identity.” However, this is explicitly not about user accounts and what some may call “digital identities”. [&#8230;]</p>
<p>The post <a href="https://idpro.org/the-identity-of-everything-else/">The Identity of Everything… Else</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">This article is about “identity.”</p>



<p class="wp-block-paragraph">However, this is explicitly <em>not </em>about user accounts and what some may call “digital identities”. It’s also not about non-human identities (NHIs), workload, service, machine-to-machine, or customer accounts.&nbsp;</p>



<p class="wp-block-paragraph">There are a lot of great articles already written on each and every one of these identity types by thought leaders, so I’d like to address the neglected others.</p>



<p class="wp-block-paragraph">So, if this article is about identities, but none of the above, then what’s this article about? This is about other constructs that are fundamental to all Identity and Access Management programs, and to their related tools and applications. I’m referring to the identities of constructs like groups, applications, policies, networks, etc.</p>



<h2 class="wp-block-heading"><strong>Identity Constitution</strong></h2>



<p class="wp-block-paragraph">Allow me to simplify the constitution of ‘Identity’ into having three parts: </p>



<ol class="wp-block-list">
<li>An identifier (as unique as possible)</li>



<li>Attributes, which provide further differentiation, context, etc.</li>



<li>Relationships (e.g., “belongs to”), which can be documented as part of #2</li>
</ol>



<p class="wp-block-paragraph">“My dog’s name is Lola” ← These five words already encompass the three parts above:</p>



<ol class="wp-block-list">
<li>Her identifier: Lola</li>



<li>Attributes: type: Dog</li>



<li>Relationships: owner: Me (although, if Lola could talk, she’d tell you her human is my wife)</li>
</ol>



<p class="wp-block-paragraph">An example of a non-living object is “my lucky t-shirt”. I’ve had this t-shirt for years, and it’s green, and it has a print of mountains with “Colo ‘rad’ o” written above (I’m a dad, I love it). At home, I may say, “have you seen my lucky t-shirt?”, and in the context of my family, chances are they’d know which one I’m talking about. If my daughter is not sure which t-shirt I’m talking about, she may ask, “what color is it?” (It’s green, an attribute). Life gives us an extensible schema to define any number of attributes to identify objects.</p>



<p class="wp-block-paragraph">In the examples above, I shared the ‘Identities’ of two objects. The point is to ‘identify’ them.</p>



<p class="wp-block-paragraph">If we turn to IAM-related objects, we can look at groups as in immediate need of proper identification. A group’s system identifier may be “xyz123”, attributes may include Group Name = “App X Users” (this may be considered the identifier, to the human eyes at least), and Group Description = “Accounts with access to App X”. Is this sufficient? Perhaps initially you’ll think “absolutely”. I’d argue that there’s a rich group identity hidden behind the ID, Name, and Description for this group. </p>



<p class="wp-block-paragraph">The IAM systems I’m most familiar with allow me to define a rich, extensible schema for accounts with many different attributes and even different attribute-types (string, Boolean, array, etc). This is excellent and much needed. In the last few years, the ‘group schema’ became available, so I may now define a Boolean value ‘For SSO’, ‘For SCIM Provisioning’, or ‘For Policy’. In addition, I want to define ‘Pushed to App’ as a Boolean value, and if TRUE, then ‘App’ (string type, as I can’t define an App object relationship).</p>



<p class="wp-block-paragraph">But, there’s no extensible schema for ‘Apps’, or for ‘Group Rules’, or ‘Policies’, or ‘Networks’, etc. Lots of opportunities here to elevate the schemas of other objects to a whole new level.&nbsp;</p>



<h2 class="wp-block-heading"><strong>The CMDB is an Identity Management system</strong></h2>



<p class="wp-block-paragraph">It follows that the system of record for constructs such as applications, systems, and perhaps groups is actually an IAM system, but for constructs other than accounts.</p>



<p class="wp-block-paragraph">A proper CMDB will contain the creation date for any of its configuration items (CIs), its reason for being, its location, and, importantly, its relationships to other CIs.</p>



<h3 class="wp-block-heading"><strong>A Source of Truth</strong></h3>



<p class="wp-block-paragraph">One way to make your IAM system compliant and elevate its security is to delegate account creation to the correct source of truth. HR-driven provisioning is one example of this. If the IAM system delegates employee account creation to a correlated HR record, and the permissions to create accounts are removed from humans, a bad actor would have to shift their tactics to the HR system in order to create an account, which would likely require creating a role requisition, an applicant account, and then a hire/onboarding process.</p>



<p class="wp-block-paragraph">Similarly, if the base attributes for a group, application, or other IAM construct are established and properly governed by the right source of truth, then the entire identity fabric will be more secure and compliant, but it’ll be like a self-maintaining organism, keeping the parts that are needed and auto-shedding those that have come to the end of their useful existence. </p>



<h2 class="wp-block-heading"><strong>Naming Conventions Don’t Work</strong></h2>



<p class="wp-block-paragraph">You’ve likely implemented or have seen many naming conventions implemented to address this very topic. In my experience, a naming convention typically encodes attributes into the name (perhaps into a `Description`) with the intent to give more context to the object. This may work in some situations and it may help humans visually inspect the object. The problem begins when these existing encoded dimensions change or no longer capture the entirety of the object’s schema. When faced with this challenge, proper hygiene means renaming all existing objects, or, in the more common scenario, breaking the naming convention altogether. The end result is heterogeneous names and paralysis due to confusion and the need to research.</p>



<h2 class="wp-block-heading"><strong>Suggested Actions</strong></h2>



<p class="wp-block-paragraph">If you have access to an extensible schema for your objects, use it. Give those objects a rich identity that empowers a complete lifecycle of the object, from creation to decommissioning.</p>



<p class="wp-block-paragraph">In the case of our Lola, she has her tag on her collar with her name and our cell phone numbers. However, she also has a microchip that extends the schema of her attributes to include our details, her vaccinations, etc. in case she gets lost and loses her collar.</p>



<p class="wp-block-paragraph">If you’re building or managing IAM software, expand the universe to enable rich schemas in the system. Some of us may want to have a “lucky” group/policy/agent, and we certainly want better ways to identify and protect our Lola’s.</p>



<p class="wp-block-paragraph"></p>



<p class="wp-block-paragraph"><em>Disclaimer: The views expressed in the content are solely those of the author and do not necessarily reflect the views of the IDPro organization.</em></p>



<p class="wp-block-paragraph"></p>



<h2 class="wp-block-heading">About the author</h2>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-8f761849 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="400" height="400" src="https://idpro.org/wp-content/uploads/2025/12/image.jpeg" alt="" class="wp-image-2904" srcset="https://idpro.org/wp-content/uploads/2025/12/image.jpeg 400w, https://idpro.org/wp-content/uploads/2025/12/image-300x300.jpeg 300w, https://idpro.org/wp-content/uploads/2025/12/image-150x150.jpeg 150w, https://idpro.org/wp-content/uploads/2025/12/image-320x320.jpeg 320w" sizes="auto, (max-width: 400px) 100vw, 400px" /></figure>



<p class="wp-block-paragraph">Pablo Valarezo is an Identity practitioner building and modernizing secure IAM programs over the last decade. His primary focus has been in the workforce side of IAM. He came to Information Security via system administration, project management, and audit and compliance.</p>
</div>



<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="346" height="350" data-id="2898" src="https://idpro.org/wp-content/uploads/2025/11/image-2.png" alt="" class="wp-image-2898" srcset="https://idpro.org/wp-content/uploads/2025/11/image-2.png 346w, https://idpro.org/wp-content/uploads/2025/11/image-2-297x300.png 297w" sizes="auto, (max-width: 346px) 100vw, 346px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="600" height="600" data-id="2390" src="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author.png" alt="" class="wp-image-2390" srcset="https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author.png 600w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-300x300.png 300w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-150x150.png 150w, https://idpro.org/wp-content/uploads/2023/10/IDPro_BoK_Badges_R5__Newsletter_Author-320x320.png 320w" sizes="auto, (max-width: 600px) 100vw, 600px" /></figure>
</figure>
<p>The post <a href="https://idpro.org/the-identity-of-everything-else/">The Identity of Everything… Else</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Announcing IDPro®’s Diversity &#038; Inclusion Packages for Identiverse® 2022!</title>
		<link>https://idpro.org/announcing-idpros-diversity-inclusion-packages-for-identiverse-2022/</link>
		
		<dc:creator><![CDATA[VTM Web Services]]></dc:creator>
		<pubDate>Thu, 02 Jun 2022 18:18:21 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cyber security]]></category>
		<category><![CDATA[digital identity]]></category>
		<category><![CDATA[diversity]]></category>
		<category><![CDATA[iam]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[identity management]]></category>
		<category><![CDATA[idpro]]></category>
		<category><![CDATA[inclusion]]></category>
		<guid isPermaLink="false">https://idpro.org/?p=1650</guid>

					<description><![CDATA[<p>As part of IDPro®’s continued efforts to promote a diverse and inclusive identity community, we are pleased to announce that [&#8230;]</p>
<p>The post <a href="https://idpro.org/announcing-idpros-diversity-inclusion-packages-for-identiverse-2022/">Announcing IDPro®’s Diversity &#038; Inclusion Packages for Identiverse® 2022!</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">As part of IDPro<sup>®</sup>’s continued efforts to promote a diverse and inclusive identity community, we are pleased to announce that we are offering two Diversity &amp; Inclusion Packages for those wishing to attend <a href="https://identiverse.com/">Identiverse<strong><sup>®</sup></strong></a> 2022.&nbsp;</p>



<p class="wp-block-paragraph">These packages include one Identiverse event ticket, donated by Identiverse, and up to $1,000 for expense reimbursement, fully funded by generous donations from IDPro<strong><sup> </sup></strong>members.</p>



<p class="wp-block-paragraph">“We are excited to be able to offer these Diversity &amp; Inclusion Packages to the identity community.<strong> </strong>I have been a firsthand witness to the impact these values are having on this industry and am very proud of our organization for being able to support this effort.”<strong> </strong>—<strong> </strong>Heather Vescent, Executive Director and President of IDPro.</p>



<p class="wp-block-paragraph">To be considered, please submit a personal statement of no more than 300 words to <a href="mailto:director@idpro.org">director@idpro.org</a> by 11:59 PM PDT on June 7, 2022. Your personal statement should answer the following questions:</p>



<ol class="wp-block-list"><li>Can you please share a little bit about your background?</li><li>How did your interest in identity come about?</li><li>What do you hope to learn at Identiverse 2022?</li><li>Why are diversity and inclusion important to you?</li><li>Are you willing to write a brief blog post or be interviewed about what you learn at Identiverse 2022?&nbsp;</li></ol>



<p class="wp-block-paragraph">Please include any social media links in your personal statement.&nbsp;</p>



<p class="wp-block-paragraph">Our vision at IDPro drives us toward enabling a diverse, supportive, and inclusive identity community and we are grateful for our dedicated members who are helping us achieve this important goal. We look forward to reviewing your submissions and we hope to see you at Identiverse 2022!</p>
<p>The post <a href="https://idpro.org/announcing-idpros-diversity-inclusion-packages-for-identiverse-2022/">Announcing IDPro®’s Diversity &#038; Inclusion Packages for Identiverse® 2022!</a> appeared first on <a href="https://idpro.org">IDPro</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk

Served from: idpro.org @ 2026-09-08 21:09:06 by W3 Total Cache
-->