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

json.schema.entity.services.connections.dashboard.sigmaConnection.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/sigmaConnection.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SigmaConnection",
  "description": "Sigma Connection Config",
  "type": "object",
  "javaType": "org.openmetadata.schema.services.connections.dashboard.SigmaConnection",
  "definitions": {
    "sigmaType": {
      "description": "Sigma service type",
      "type": "string",
      "enum": ["Sigma"],
      "default": "Sigma"
    }
  },
  "properties": {
    "type": {
      "title": "Service Type",
      "description": "Service Type",
      "$ref": "#/definitions/sigmaType",
      "default": "Sigma"
    },
    "hostPort": {
      "expose": true,
      "title": "Host and Port",
      "description": "Sigma API url.",
      "type": "string",
      "format": "uri",
      "default": "https://api.sigmacomputing.com"
    },
    "clientId": {
      "title": "Client ID",
      "description": "client_id for Sigma.",
      "type": "string"
    },
    "clientSecret": {
      "title": "Client Secret",
      "description": "clientSecret for Sigma.",
      "type": "string",
      "format": "password"
    },
    "apiVersion": {
      "title": "API Version",
      "description": "Sigma API version.",
      "type": "string",
      "default": "v2"
    }
  },
  "additionalProperties": false,
  "required": ["hostPort", "clientId", "clientSecret"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy