Oracle Essbase · Schema

FileItem

A file or folder entry in the Essbase file catalog.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
name string File or folder name.
fullPath string Full path in the file catalog.
type string Item type.
permissions object Permissions on this item.
View JSON Schema on GitHub

JSON Schema

oracle-essbase-fileitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileItem",
  "title": "FileItem",
  "type": "object",
  "description": "A file or folder entry in the Essbase file catalog.",
  "properties": {
    "name": {
      "type": "string",
      "description": "File or folder name."
    },
    "fullPath": {
      "type": "string",
      "description": "Full path in the file catalog."
    },
    "type": {
      "type": "string",
      "description": "Item type.",
      "enum": [
        "file",
        "folder"
      ]
    },
    "permissions": {
      "type": "object",
      "description": "Permissions on this item.",
      "properties": {
        "addFolder": {
          "type": "boolean",
          "description": "Permission to add sub-folders."
        },
        "addFile": {
          "type": "boolean",
          "description": "Permission to add files."
        }
      }
    }
  }
}