@triply/triplydb
    Preparing search index...

    Interface DatasetInfo

    interface DatasetInfo {
        accessLevel: AccessLevel;
        assetCount: number;
        autogeneratedIdType?: AutoGeneratedIdType;
        avatarUrl: string | undefined;
        createdAt: string;
        description: string;
        displayName: string;
        exampleResources: string[];
        graphCount: number;
        graphsToSaveTo: GraphsToSaveTo;
        hasDataQualityIssues: boolean;
        id: string;
        lastGraphsUpdateTime?: string;
        license: keyof Licenses;
        name: string;
        owner: AccountInfo;
        prefixes: Prefixes;
        processDefinition?: ProcessDefinitionPublic | null;
        serviceCount: number;
        statements: number;
        tags: string[];
        toggles: DatasetToggles;
        updatedAt: string;
    }
    Index
    accessLevel: AccessLevel

    Who can reach this — see AccessLevel.

    assetCount: number

    Number of assets attached to the dataset.

    autogeneratedIdType?: AutoGeneratedIdType

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

    avatarUrl: string | undefined

    Image shown for the dataset, or undefined when it has none.

    createdAt: string

    When this was created.

    description: string

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

    displayName: string

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

    exampleResources: string[]

    Resources offered as starting points for browsing the data.

    graphCount: number

    Number of named graphs.

    graphsToSaveTo: GraphsToSaveTo

    Graphs the console's data editor and data model write to.

    hasDataQualityIssues: boolean

    Whether the instance found problems while loading the data, such as unparsable terms.

    id: string

    Stable identifier, unchanged by renames. Use it where name would break.

    lastGraphsUpdateTime?: string

    When the data last changed, as opposed to updatedAt, which also covers metadata.

    license: keyof Licenses

    Licence the data is published under — see DatasetLicenseId.

    name: string

    Short name, unique within the owning account and part of the dataset's URL.

    The user or group that owns this dataset.

    prefixes: Prefixes

    IRI prefix declarations, used to shorten IRIs in the interface and in query results.

    processDefinition?: ProcessDefinitionPublic | null

    Process definition attached to the dataset, used by the editor.

    serviceCount: number

    Number of services, running or otherwise.

    statements: number

    Total number of statements across all graphs.

    tags: string[]

    Free-form labels, used for filtering and search.

    toggles: DatasetToggles

    Which parts of the interface are enabled for this dataset.

    updatedAt: string

    When this was last changed, including its metadata.