Type Alias GroupPatch

A JSON Patch document.

type GroupPatch = {
    op: "replace";
    path: "assignedRoles" | "name" | "description";
    value: AssignedRolesRefIDs | AssignedRolesRefNames | string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed. Currently "replace" is the only supported operation.

path: "assignedRoles" | "name" | "description"