@triply/triplydb
    Preparing search index...

    Interface UpdateDataset

    interface UpdateDataset {
        accessLevel?: AccessLevel;
        autogeneratedIdType?: AutoGeneratedIdType;
        description?: string;
        displayName?: string;
        exampleResources?: string[];
        graphsToSaveTo?: { dataModelGraph: string; editorResourcesGraph: string };
        license?: (keyof Licenses) | null;
        name?: string;
        prefixes?: PrefixUpdate[];
        processDefinition?: string | null;
        tags?: string[];
        toggles?: Partial<DatasetToggles>;
    }
    Index
    accessLevel?: AccessLevel

    Who can reach the dataset — see AccessLevel.

    autogeneratedIdType?: AutoGeneratedIdType

    Shape of the identifiers generated for blank nodes — see AutoGeneratedIdType.

    description?: string

    Free-text description, shown on the dataset's page.

    displayName?: string

    Title shown in the interface, free of the restrictions that apply to name.

    exampleResources?: string[]

    Resources offered as starting points for browsing the data.

    graphsToSaveTo?: { dataModelGraph: string; editorResourcesGraph: string }

    Where the editor writes, and which graphs a SPARQL update may change.

    license?: (keyof Licenses) | null

    Licence the data is published under; null removes the one that is set.

    name?: string

    New short name. It is part of the dataset's URL, so changing it moves the dataset.

    prefixes?: PrefixUpdate[]

    Replaces the dataset's full prefix set. For merge or remove-by-label semantics, use the dedicated /prefixes endpoint instead.

    processDefinition?: string | null

    Process definition to attach, or null to detach the one that is set.

    tags?: string[]

    Free-form labels, used for filtering and search.

    toggles?: Partial<DatasetToggles>

    Which parts of the interface are enabled for this dataset. Only the keys given are changed.