Type Alias CollectionByIdPatch

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

Type declaration

  • op: "replace"

    The operation to be performed.

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

    Field of collection to be patched.

  • value: string

    The value to be used within the operations.

    • name: The name of the collection. Must not be "".
    • description: The description of the collection. Empty string "" is allowed.
    • type: The type of the collection. Via this path the collection type can be toggled between "private" and "publicgoverned".