json.schema.entity.services.connections.database.customDatabaseConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/database/customDatabaseConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CustomDatabaseConnection",
"description": "Custom Database Service connection to build a source that is not supported by OpenMetadata yet.",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.database.CustomDatabaseConnection",
"definitions": {
"customDatabaseType": {
"title": "Service Type",
"description": "Custom database service type",
"type": "string",
"enum": ["CustomDatabase"],
"default": "CustomDatabase"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Custom database service type",
"$ref": "#/definitions/customDatabaseType",
"default": "CustomDatabase"
},
"sourcePythonClass": {
"title": "Source Python Class Name",
"description": "Source Python Class Name to instantiated by the ingestion workflow",
"type": "string"
},
"connectionOptions": {
"title": "Connection Options",
"$ref": "../connectionBasicType.json#/definitions/connectionOptions"
}
},
"additionalProperties": false,
"required": ["type"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy