SAP BI Tools · Schema

ImportOptions

Options for importing a content item

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
targetFolderId string The target folder ID for the imported content
overwrite boolean Whether to overwrite existing content
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-importoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportOptions",
  "title": "ImportOptions",
  "type": "object",
  "description": "Options for importing a content item",
  "properties": {
    "targetFolderId": {
      "type": "string",
      "description": "The target folder ID for the imported content"
    },
    "overwrite": {
      "type": "boolean",
      "description": "Whether to overwrite existing content",
      "default": false
    }
  }
}