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

json.schema.entity.services.connections.pipeline.fivetranConnection.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/pipeline/fivetranConnection.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FivetranConnection",
  "description": "Fivetran Metadata Database Connection Config",
  "type": "object",
  "javaType": "org.openmetadata.schema.services.connections.pipeline.FivetranConnection",
  "definitions": {
    "FivetranType": {
      "description": "Service type.",
      "type": "string",
      "enum": ["Fivetran"],
      "default": "Fivetran"
    }
  },
  "properties": {
    "type": {
      "title": "Service Type",
      "description": "Service Type",
      "$ref": "#/definitions/FivetranType",
      "default": "Fivetran"
    },
    "apiKey": {
      "title": "Fivetran API Key",
      "description": "Fivetran API Secret.",
      "type": "string"
    },
    "hostPort": {
      "expose": true,
      "title": "Host And Port",
      "description": "Pipeline Service Management/UI URI.",
      "type": "string",
      "format": "uri",
      "default": "https://api.fivetran.com"
    },
    "apiSecret": {
      "title": "Fivetran API Secret",
      "description": "Fivetran API Secret.",
      "type": "string",
      "format": "password"
    },
    "limit": {
      "title": "Fivetran API Limit",
      "description": "Fivetran API Limit For Pagination.",
      "type": "integer",
      "default": 1000
    },
    "supportsMetadataExtraction": {
      "title": "Supports Metadata Extraction",
      "$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
    }
  },
  "additionalProperties": false,
  "required": ["apiKey", "apiSecret"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy