| title | Concepts |
|---|---|
| sidebar_position | 2 |
| slug | /concepts |
| description | Learning about FGA concepts |
import { AuthzModelSnippetViewer, CheckRequestViewer, DocumentationNotice, IntroductionSection, ListObjectsRequestViewer, Playground, ProductName, ProductNameFormat, RelatedSection, RelationshipTuplesViewer, UpdateProductNameInLinks, } from '@components/Docs';
The service answers checks by determining whether a relationship exists between an object and a user. Checks reference your authorization model against your relationship tuples for authorization authority. Below are explanations of basic FGA concepts, like type and authorization model, and a playground to test your knowledge.
A type is a string. It defines a class of objects with similar characteristics.
The following are examples of types:
workspacerepositoryorganizationdocument
A type definition defines all possible relations a user or another object can have in relation to this type.
Below is an example of a type definition:
<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type: 'document', relations: { viewer: { this: {}, }, commenter: { this: {}, }, editor: { this: {}, }, owner: { this: {}, }, }, metadata: { relations: { viewer: { directly_related_user_types: [{ type: 'user' }] }, commenter: { directly_related_user_types: [{ type: 'user' }] }, editor: { directly_related_user_types: [{ type: 'user' }] }, owner: { directly_related_user_types: [{ type: 'user' }] }, }, }, }} skipVersion={true} />
An authorization model combines one or more type definitions. This is used to define the permission model of a system.
Below is an example of an authorization model:
<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type_definitions: [ { type: 'document', relations: { viewer: { this: {}, }, commenter: { this: {}, }, editor: { this: {}, }, owner: { this: {}, }, }, metadata: { relations: { viewer: { directly_related_user_types: [{ type: 'domain', relation: 'member' }, { type: 'user' }] }, commenter: { directly_related_user_types: [{ type: 'domain', relation: 'member' }, { type: 'user' }] }, editor: { directly_related_user_types: [{ type: 'domain', relation: 'member' }, { type: 'user' }] }, owner: { directly_related_user_types: [{ type: 'domain', relation: 'member' }, { type: 'user' }] }, }, }, }, { type: 'domain', relations: { member: { this: {}, }, }, metadata: { relations: { member: { directly_related_user_types: [{ type: 'user' }] }, }, }, }, { type: 'user', }, ], }} />
Together with relationship tuples, the authorization model determines whether a relationship exists between a user and an object.
uses two different syntaxes to define the authorization model:
- A JSON syntax accepted by the API that closely follows the original syntax in the Zanzibar Paper. For more information, see Equivalent Zanzibar Concepts.
- A simpler-to-use DSL that's accepted by both the OpenFGA VS Code extension and OpenFGA CLI and offers syntax highlighting and validation in the VS Code extension. The DSL is used in the Sample Stores modeling examples and is translated to API-supported syntax using the CLI or OpenFGA language before being sent to the API.
Click here to learn more about the .
A store is an entity used to organize authorization check data.
Each store contains one or more versions of an authorization model and can contain various relationship tuples. Store data cannot be shared across stores; we recommended storing all data that may be related or affect your authorization result in a single store.
Separate stores can be created for separate authorization needs or isolated environments, e.g. development/prod.
An object represents an entity in the system. Users' relationships to it are defined by relationship tuples and the authorization model.
An object is a combination of a type and an identifier.
For example:
workspace:fb83c013-3060-41f4-9590-d3233a67938frepository:auth0/express-jwtorganization:org_ajUc9kJdocument:new-roadmap
User, relation and object are the building blocks for relationship tuples.
For an example, see Direct Access.
A user is an entity in the system that can be related to an object.
A user is is a combination of a type, an identifier, and an optional relation.
For example,
- any identifier: e.g.
user:anneoruser:4179af14-f0c0-4930-88fd-5570c7bf6f59 - any object: e.g.
workspace:fb83c013-3060-41f4-9590-d3233a67938f,repository:auth0/express-jwtororganization:org_ajUc9kJ - a group or a set of users (also called a userset): e.g.
organization:org_ajUc9kJ#members, which represents the set of users related to the objectorganization:org_ajUc9kJasmember - everyone, using the special syntax:
*
User, relation and object are the building blocks for relationship tuples.
For more information, see Direct Access.
A relation is a string defined in the type definition of an authorization model. Relations define a possible relationship between an object (of the same type as the type definition) and a user in the system.
Examples of relation:
- User can be a
readerof a document - Team can
administera repo - User can be a
memberof a team
A relation definition lists the conditions or requirements under which a relationship is possible.
For example:
editordescribing a possible relationship between a user and an object in thedocumenttype allows the following:- user identifier to object relationship: the user id
anneof typeuseris related to the objectdocument:roadmapaseditor - object to object relationship: the object
application:ifftis related to the objectdocument:roadmapaseditor - userset to object relationship: the userset
organization:auth0.com#memberis related todocument:roadmapaseditor- indicates that the set of users who are related to the object
organization:auth0.comasmemberare related to the objectdocument:roadmapaseditors - allows for potential solutions to use-cases like sharing a document internally with all members of a company or a team
- indicates that the set of users who are related to the object
- everyone to object relationship: everyone (
*) is related todocument:roadmapaseditor- this is how one could model publicly editable documents
- user identifier to object relationship: the user id
These would be defined in the authorization model:
<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type_definitions: [ { type: 'document', relations: { viewer: { this: {}, }, commenter: { this: {}, }, editor: { this: {}, }, owner: { this: {}, }, }, metadata: { relations: { viewer: { directly_related_user_types: [{ type: 'user' }] }, commenter: { directly_related_user_types: [{ type: 'user' }] }, editor: { directly_related_user_types: [{ type: 'user' }] }, owner: { directly_related_user_types: [{ type: 'user' }] }, }, }, }, { type: 'user', }, ], }} skipVersion={true} />
:::info
There are four relations in the document type configuration: viewer, commenter, editor and owner.
:::
User, relation and object are the building blocks for relationship tuples.
For an example, see Direct Access.
A directly related user type is an array specified in the type definition to indicate which types of users can be directly related to that relation.
For the following model, only relationship tuples with user of type user may be assigned to document.
<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type_definitions: [ { type: 'document', relations: { viewer: { this: {}, }, }, metadata: { relations: { viewer: { directly_related_user_types: [{ type: 'user' }] }, }, }, }, ], }} skipVersion={true} />
A relationship tuple with user user:anne or user:3f7768e0-4fa7-4e93-8417-4da68ce1846c may be written for objects with type document and relation viewer, so writing {"user": "user:anne","relation":"viewer","object":"document:roadmap"} succeeds.
A relationship tuple with a disallowed user type for the viewer relation on objects of type document - for example workspace:auth0 or folder:planning#editor - will be rejected, so writing {"user": "folder:product","relation":"viewer","object":"document:roadmap"} will fail.
This affects only relations that are directly related and have direct relationship type restrictions in their relation definition.
## What is a Condition?
A condition is a function composed of one or more parameters and an expression. Every condition evaluates to a boolean outcome, and expressions are defined using Google's Common Expression Language (CEL).
In the following snippet less_than_hundred defines a Condition that evaluates to a boolean outcome. The provided parameter x, defined as an integer type, is used in the boolean expression x < 100. The condition returns a truthy outcome if the expression returns a truthy outcome, but is otherwise false.
condition less_than_hundred(x: int) {
x < 100
}
A relationship tuple is a base tuple/triplet consisting of a user, relation, and object. Tuples may add an optional condition, like Conditional Relationship Tuples. Relationship tuples are written and stored in .
A relationship tuple consists of:
- a user, e.g.
user:anne,user:3f7768e0-4fa7-4e93-8417-4da68ce1846c,workspace:auth0orfolder:planning#editor - a relation, e.g.
editor,memberorparent_workspace - an object, e.g
repo:auth0/express_jwt,domain:auth0.comorchannel:marketing - a condition (optional), e.g.
{"condition": "in_allowed_ip_range", "context": {...}}
An authorization model, together with relationship tuples, determinate whether a relationship exists between a user and an object.
Relationship tuples are usually shown in the following format:
<RelationshipTuplesViewer relationshipTuples={[ { user: 'user:anne', relation: 'editor', object: 'document:new-roadmap', }, ]} />
For more information, see Direct Access.
## What Is A Conditional Relationship Tuple?
A conditional relationship tuple is a relationship tuple that represents a relationship conditioned upon the evaluation of a condition.
If a relationship tuple is conditioned, then that condition must to a truthy outcome for the relationship tuple to be permissible.
The following relationship tuple is a conditional relationship tuple because it is conditioned on less_than_hundred. If the expression for less_than_hundred is defined as x < 100, then the relationship is permissible because the expression - 20 < 100 - evaluates to a truthy outcome.
<RelationshipTuplesViewer relationshipTuples={[ { user: 'user:anne', relation: 'editor', object: 'document:new-roadmap', condition: { "name": "less_than_hundred", "context": { "x": 20 } } }, ]} />
A relationship is the realization of a relation between a user and an object.
An authorization model, together with relationship tuples, determine whether a relationship exists between a user and an object. Relationships may be direct or implied.
A direct relationship (R) between user X and object Y means the relationship tuple (user=X, relation=R, object=Y) exists, and the authorization model for that relation allows the direct relationship because of direct relationship type restrictions).
An implied (or computed) relationship (R) exists between user X and object Y if user X is related to an object Z that is in a direct or implied relationship with object Y, and the authorization model allows it.
-
user:annehas a direct relationship withdocument:new-roadmapasviewerif the type definition allows it with direct relationship type restrictions, and one of the following relationship tuples exist:-
<RelationshipTuplesViewer relationshipTuples={[ { _description: 'Anne of type user is directly related to the document', user: 'user:anne', relation: 'viewer', object: 'document:new-roadmap', }, ]} />
-
<RelationshipTuplesViewer relationshipTuples={[ { _description: 'Everyone (
*) of type user is directly related to the document', user: '*', relation: 'viewer', object: 'document:new-roadmap', }, ]} /> -
<RelationshipTuplesViewer relationshipTuples={[ { _description: 'The userset is directly related to this document', user: 'team:product#member', relation: 'viewer', object: 'document:new-roadmap', }, { _description: 'AND Anne of type user is a member of a userset (e.g. team:product#member)', user: 'user:anne', relation: 'member', object: 'team:product#member', }, ]} />
-
-
user:annehas an implied relationship withdocument:new-roadmapasviewerif the type definition allows it, and the presence of relationship tuples satisfying the relationship exist.For example, assume the following type definition:
<AuthzModelSnippetViewer configuration={{ schema_version: '1.1', type_definitions: [ { type: 'document', relations: { viewer: { union: { child: [ { // a user can be assigned a direct
viewerrelation, i.e., not implied through another relation this: {}, }, { // a user who is related as an editor is also implicitly related as a viewer computedUserset: { relation: 'editor', }, }, ], }, }, editor: { this: {}, }, }, metadata: { relations: { editor: { directly_related_user_types: [{ type: 'user' }] }, viewer: { directly_related_user_types: [{ type: 'user' }] }, }, }, }, ], }} skipVersion={true} />And assume the following relationship tuple exists in the system:
<RelationshipTuplesViewer relationshipTuples={[ { user: 'user:anne', relation: 'editor', object: 'document:new-roadmap', }, ]} />
In this case, the relationship between
user:anneanddocument:new-roadmapas avieweris implied from the directeditorrelationshipuser:annehas with that same document. Thus, the following request to check whether a viewer relationship exists betweenuser:anneanddocument:new-roadmapwill returntrue.<CheckRequestViewer user={'user:anne'} relation={'viewer'} object={'document:new-roadmap'} allowed={true} />
A check request is a call to the check endpoint, returning whether the user has a certain relationship with an object.
Check requests use the check methods in the SDKs (JavaScript SDK/Go SDK/.NET SDK) by manually calling the check endpoint using curl or in your code. The check endpoint responds with { "allowed": true } if a relationship exists, and with { "allowed": false } if the relationship does not.
For example, the following will check whether anne of type user has a viewer relation to document:new-roadmap:
<CheckRequestViewer user={'user:anne'} relation={'viewer'} object={'document:new-roadmap'} allowed={true} />
For more information, see the Relationship Queries page and the official Check API Reference.
A list objects request is a call to the list objects endpoint that returns all objects of a given type that a user has a specified relationship with.
List object requests are completed using the listobjects methods in the SDKs (JavaScript SDK/Go SDK/.NET SDK) by manually calling the list objects endpoint using curl or in your code.
The list objects endpoint responds with a list of objects for a given type that the user has the specified relationship with.
For example, the following returns all the objects with document type for which anne of type user has a viewer relation with:
<ListObjectsRequestViewer authorizationModelId="1uHxCSuTP0VKPYSnkq1pbb1jeZw" objectType="document" relation="viewer" user="user:anne" expectedResults={['document:otherdoc', 'document:planning']} />
For more information, see the Relationship Queries page and the official Check API Reference.
Contextual tuples are tuples that can be added to a check request and only exist within the context of that particular request.
Similar to relationship tuples, contextual tuples are composed of a user, relation and object. Unlike relationship tuples, they are not written to the store. However, if contextual tuples are sent alongside a check request in the context of a particular check request, they are treated if they had been written in the store.
For more information, see Contextual and Time-Based Authorization, Authorization Through Organization Context and Check API Request Documentation.
In , type bound public access (represented by <type>:*) is a special syntax meaning "every object of [type]" when invoked as a user within a relationship tuple. For example, user:* represents every object of type user , including those not currently present in the system.
<type>:*) is a special syntax meaning "every object of [type]" when invoked as a user within a relationship tuple. For example, user:* represents every object of type user , including those not currently present in the system.For example, to indicate document:new-roadmap is publicly writable (in other words, has everyone of type user as an editor, add the following relationship tuple:
<RelationshipTuplesViewer relationshipTuples={[ { user: 'user:*', relation: 'editor', object: 'document:new-roadmap', }, ]} />
Note: <type>:* cannot be used in the relation or object properties. In addition, <type>:* cannot be used as part of a userset in the tuple's user field.
For more information, see Modeling Public Access and Advanced Modeling: Modeling Google Drive.
<RelatedSection description="Check the following sections for more on how object-to-object relationships can be used." relatedLinks={[ { title: 'Authorization Concepts', description: 'Learn about Authorization.', link: './authorization-concepts', id: './authorization-concepts', }, { title: 'Modeling Language', description: 'Learning about the FGA modeling language', link: './modeling-language', id: './modeling-language', }, { title: 'Direct access', description: 'Get started with modeling your permission system in {ProductName}', link: './modeling/direct-access', id: './modeling/direct-access', }, ]} />