SAP AI SDK for JavaScript - v2.8.0
    Preparing search index...

    Type Alias AiArtifactPostData

    AiArtifactPostData: {
        description?: AiArtifactDescription;
        kind: "model" | "dataset" | "resultset" | "other";
        labels?: AiLabelList;
        name: AiArtifactName;
        scenarioId: AiScenarioId;
        url: AiArtifactUrl;
    } & Record<string, any>

    Base data of the artifact; this is the data that can be provided when the artifact is created; name and kind are required because they constitute important semantic filtering criteria for use in training / inference executables (name is a semantic handle of the artifact within a scenario and kind specifies the type of usage, e.g. you would only want to allow models in the model operator).

    Type Declaration