All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
json.schema.entity.applications.configuration.external.metaPilotAppConfig.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/applications/configuration/external/metaPilotAppConfig.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MetaPilotAppConfig",
"description": "Configuration for the MetaPilot External Application.",
"type": "object",
"javaType": "org.openmetadata.schema.entity.app.external.MetaPilotAppConfig",
"definitions": {
"metaPilotAppType": {
"description": "Application type.",
"type": "string",
"enum": ["MetaPilot"],
"default": "MetaPilot"
}
},
"properties": {
"type": {
"title": "Application Type",
"description": "Application Type",
"$ref": "#/definitions/metaPilotAppType",
"default": "MetaPilot"
},
"descriptionDatabases": {
"title": "Databases for Automated Description Generation",
"description": "Services and Databases configured to get the descriptions from.",
"type": "array",
"items": {
"placeholder": "Search Databases",
"$ref": "../../../../type/entityReference.json",
"format": "autoComplete",
"autoCompleteType": "database_search_index"
}
},
"patchIfEmpty": {
"title": "Patch Description If Empty",
"description": "Patch the description if it is empty, instead of raising a suggestion",
"type": "boolean",
"default": false
},
"copilotDatabases": {
"title": "Databases for SQL Copilot",
"description": "Services and Databases configured to get enable the SQL Copilot.",
"type": "array",
"items": {
"placeholder": "Search Databases",
"$ref": "../../../../type/entityReference.json",
"format": "autoComplete",
"autoCompleteType": "database_search_index"
}
},
"defaultScope": {
"title": "Default Chatbot Database Scope",
"description": "Default database scope for the chatbot.",
"$ref": "../../../../type/entityReference.json",
"format": "autoComplete",
"autoCompleteType": "database_search_index",
"placeholder": "Search Databases"
}
},
"additionalProperties": false
}