Type Alias PatchRole

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

type PatchRole = {
    op: "replace" | "add" | "remove-value";
    path: "/name" | "/description" | "/assignedScopes" | "/assignedScopes/-";
    value: string | string[];
}
Index

Properties

Properties

op: "replace" | "add" | "remove-value"
path: "/name" | "/description" | "/assignedScopes" | "/assignedScopes/-"
value: string | string[]