All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.entity.services.connections.dashboard.redashConnection.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/entity/services/connections/dashboard/redashConnection.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RedashConnection",
  "description": "Redash Connection Config",
  "type": "object",
  "javaType": "org.openmetadata.schema.services.connections.dashboard.RedashConnection",
  "definitions": {
    "redashType": {
      "description": "Redash service type",
      "type": "string",
      "enum": ["Redash"],
      "default": "Redash"
    }
  },
  "properties": {
    "type": {
      "title": "Service Type",
      "description": "Service Type",
      "$ref": "#/definitions/redashType",
      "default": "Redash"
    },
    "username": {
      "title": "Username",
      "description": "Username for Redash",
      "type": "string"
    },
    "hostPort": {
      "expose": true,
      "title": "Host and Port",
      "description": "URL for the Redash instance",
      "type": "string",
      "format": "uri",
      "default": "http://localhost:5000"
    },
    "apiKey": {
      "title": "API Key",
      "description": "API key of the redash instance to access.",
      "type": "string",
      "format": "password"
    },
    "redashVersion": {
      "title": "Redash Version",
      "description": "Version of the Redash instance",
      "type": "string",
      "default": "10.0.0"
    },
    "supportsMetadataExtraction": {
      "title": "Supports Metadata Extraction",
      "$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
    }
  },
  "additionalProperties": false,
  "required": ["hostPort", "username", "apiKey"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy