json.schema.entity.services.connections.pipeline.airflowConnection.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/connections/pipeline/airflowConnection.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AirflowConnection",
"description": "Airflow Metadata Database Connection Config",
"type": "object",
"javaType": "org.openmetadata.schema.services.connections.pipeline.AirflowConnection",
"definitions": {
"AirflowType": {
"description": "Service type.",
"type": "string",
"enum": ["Airflow"],
"default": "Airflow"
}
},
"properties": {
"type": {
"title": "Service Type",
"description": "Service Type",
"$ref": "#/definitions/AirflowType",
"default": "Airflow"
},
"hostPort": {
"expose": true,
"title": "Host And Port",
"description": "Pipeline Service Management/UI URI.",
"type": "string",
"format": "uri"
},
"numberOfStatus": {
"description": "Pipeline Service Number Of Status",
"type": "integer",
"default": "10"
},
"connection": {
"title": "Metadata Database Connection",
"description": "Underlying database connection. See https://airflow.apache.org/docs/apache-airflow/stable/howto/set-up-database.html for supported backends.",
"oneOf": [
{
"$ref": "backendConnection.json"
},
{
"$ref": "../database/mysqlConnection.json"
},
{
"$ref": "../database/postgresConnection.json"
},
{
"$ref": "../database/sqliteConnection.json"
}
]
},
"supportsMetadataExtraction": {
"title": "Supports Metadata Extraction",
"$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
}
},
"additionalProperties": false,
"required": ["hostPort", "connection"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy