mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
35 lines
841 B
JSON
35 lines
841 B
JSON
|
|
{
|
||
|
|
"$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"]
|
||
|
|
}
|