Oracle Essbase · Schema

GroupInput

Input for creating or updating a group.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
name string Group name.
description string Group description.
role string Service role to assign to the group.
members array Member user IDs or sub-group names.
View JSON Schema on GitHub

JSON Schema

oracle-essbase-groupinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupInput",
  "title": "GroupInput",
  "type": "object",
  "description": "Input for creating or updating a group.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Group name."
    },
    "description": {
      "type": "string",
      "description": "Group description."
    },
    "role": {
      "type": "string",
      "description": "Service role to assign to the group."
    },
    "members": {
      "type": "array",
      "description": "Member user IDs or sub-group names.",
      "items": {
        "type": "string"
      }
    }
  }
}