Oracle Essbase · Schema

DatabaseList

Paginated list of databases.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
items array
totalResults integer
limit integer
offset integer
hasMore boolean
count integer
View JSON Schema on GitHub

JSON Schema

oracle-essbase-databaselist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseList",
  "title": "DatabaseList",
  "type": "object",
  "description": "Paginated list of databases.",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Database"
      }
    },
    "totalResults": {
      "type": "integer",
      "format": "int64"
    },
    "limit": {
      "type": "integer",
      "format": "int64"
    },
    "offset": {
      "type": "integer",
      "format": "int64"
    },
    "hasMore": {
      "type": "boolean"
    },
    "count": {
      "type": "integer",
      "format": "int64"
    }
  }
}