Type Alias SettingsPatch

A JSON Patch document as defined in http://tools.ietf.org/html/rfc6902.

type SettingsPatch = {
    op: "replace";
    path:
        | "/autoCreateGroups"
        | "/syncIdpGroups"
        | "/systemGroups/{id}/assignedRoles";
    value: boolean
    | AssignedRolesRefIDs
    | AssignedRolesRefNames;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path:
    | "/autoCreateGroups"
    | "/syncIdpGroups"
    | "/systemGroups/{id}/assignedRoles"

A JSON Pointer.

The value to be used for this operation.