Type Alias ExperimentPatchItem

Experiment fields that can be patched. The following paths all require value to be a string: /name, /spaceId, and /description

type ExperimentPatchItem = {
    op: "replace";
    path: "/name" | "/description" | "/spaceId";
    value: AnyType;
}
Index

Properties

Properties

op: "replace"

All patch requests use the replace operation

path: "/name" | "/description" | "/spaceId"

Path for the property you want to update

value: AnyType

Use for fields that can be any type (string, number, etc.)