ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Database/Elasticsearch.schema.json

35 lines
841 B
JSON
Raw Normal View History

{
"$schema": "https://json-schema.org/",
"$id": "https://tooljet.io/Elasticsearch.schema.json",
"title": "Elastic search datasource",
"description": "A schema defining elastic search datasource",
"type": "object",
"properties": {
"host": {
"$label": "Host",
"$key": "host",
"type": "text",
"description": "Enter host"
},
"port": {
"$label": "Port",
"$key": "port",
"type": "text",
"description": "Enter port"
},
"username": {
"$label": "Username",
"$key": "username",
"type": "text",
"description": "Enter username field"
},
"password": {
"$label": "Password",
"$key": "password",
"type": "password",
"description": "Enter password field"
}
},
"required": ["scheme", "host", "port", "password"]
}