Oracle Essbase · Schema

Group

An Essbase user group.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
id string Group identifier.
name string Group name.
description string Group description.
role string Service role assigned to the group.
members array List of member user IDs or sub-group names.
links array
View JSON Schema on GitHub

JSON Schema

oracle-essbase-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "description": "An Essbase user group.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Group identifier."
    },
    "name": {
      "type": "string",
      "description": "Group name."
    },
    "description": {
      "type": "string",
      "description": "Group description."
    },
    "role": {
      "type": "string",
      "description": "Service role assigned to the group."
    },
    "members": {
      "type": "array",
      "description": "List of member user IDs or sub-group names.",
      "items": {
        "type": "string"
      }
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}