Partial Schema Update
As development teams regularly roll out new features or API endpoints, features each addition often necessitates corresponding updates to the Permify schema.
To streamline this process, we have published an endpoint allows authorized users to make partial updates to the schema by adding or modifying actions within individual entities.
Endpoint Definition
/v1/{tenant_id}/schemas/partial-write
This endpoint allows authorized users to make partial updates to the schema by adding or modifying actions within individual entities.
Request Payload Structure
body:
Behavior Description
When the schema_version
in the request metadata is left empty, the system will default to using the latest(head) schema version as the base for updates.
name
(string): The name of the entity to be changed.write
(string array): Conditions to be added. If a relation or permission/action already exists, it should return an error.delete
(string array): Names (permissions/actions) to be deleted. If the relation/permission/action name does not exist, it should return an error. Note: specifying the name is enough as relation/permission/action names should be unique.update
(string array): Conditions to be updated.
If schema_version
is specified, the endpoint will perform the same update process on the given version and generate a new version thereafter.
Partial Schema Endpoint Example Usage
Existing Schema
The code block above outlines the existing schema definitions for the user
, organization
, and team
entities. This includes their respective relationships and permissions within the schema.
Partial Schema Update Request
To update the team
entity by introducing new permissions, the following PATCH request with the accompanying payload is sent:
By leaving the schema_version
empty string, it signals the system to take the latest(head) schema version as a base for applying updates.
Resulting Schema After Update
After the request is processed, the system outputs a new schema version where the team
entity is revised to include the new permissions as illustrated below:
invite
and remove_user
permissions have been added, a member
relation has been included, the edit
permission has been deleted, and the delete
permission has been updated.
Path Parameters
tenant_id is a string that identifies the tenant. It must match the pattern "[a-zA-Z0-9-,]+", be a maximum of 64 bytes, and must not be empty.
Body
SchemaPartialWriteRequestMetadata provides additional information for the Schema Partial Write request. It contains schema_version to specify which version of the schema should be read.
Response
SchemaPartialWriteResponse is the response message for the Parietal Write method in the Schema service. It returns the requested schema.
schema_version is the string that identifies the version of the written schema.