Type Alias SpacePatch

SpacePatch: {
    op: "replace";
    path: "/name" | "/ownerId" | "/description";
    value: string;
}[]

Type declaration

  • op: "replace"

    The operation to be performed.

  • path: "/name" | "/ownerId" | "/description"

    Field of space to be patched (updated).

  • value: string

    The value to be used within the operations.

    • name: The name (string) of space of maxLength 256 of pattern: ^[^"*?<>/|\:]+$
    • description: The description (string) of the space. Personal spaces do not have a description.
    • ownerId: The user ID in uid format (string) of the space owner.