Oracle Essbase · Schema

Link

HATEOAS navigation link.

AnalyticsBudgetingBusiness IntelligenceFinancial ConsolidationMulti-Dimensional DatabaseOLAPPlanning

Properties

Name Type Description
rel string Link relation type.
href string Link URL.
method string HTTP method for this link.
type string Media type of the linked resource.
View JSON Schema on GitHub

JSON Schema

oracle-essbase-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Link",
  "title": "Link",
  "type": "object",
  "description": "HATEOAS navigation link.",
  "properties": {
    "rel": {
      "type": "string",
      "description": "Link relation type."
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "Link URL."
    },
    "method": {
      "type": "string",
      "description": "HTTP method for this link."
    },
    "type": {
      "type": "string",
      "description": "Media type of the linked resource."
    }
  }
}