ToolJet/frontend/src/Editor/QueryManager/QueryEditors/Elasticsearch.schema.json

106 lines
2.7 KiB
JSON
Raw Normal View History

{
"$schema": "https://json-schema.org/",
"$id": "https://tooljet.io/dataqueries/Elasticsearch.schema.json",
"title": "Elasticsearch datasource",
"description": "A schema defining Elasticsearch datasource",
"type": "object",
"defaults": {
"query": "",
"operation": "search"
},
"properties": {
"operation": {
"$label": "Operation",
"$key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for operation",
"$options": [
{ "value": "search", "name": "Search" },
{ "value": "index_document", "name": "Index a document" },
{ "value": "get", "name": "Get a document" },
{ "value": "update", "name": "Update a document" }
]
},
"search": {
"index": {
"$label": "Index",
"$key": "index",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter index"
},
"query": {
"$label": "Query",
"$key": "query",
"type": "codehinter",
"placeholder": "{ \"name\": \"\" }",
"description": "Enter query",
"height": "150px"
}
},
"index_document": {
"index": {
"$label": "Index",
"$key": "index",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter index"
},
"body": {
"$label": "Body",
"$key": "body",
"type": "codehinter",
"mode": "javascript",
"placeholder": "{ \"name\": \"The Hitchhikers Guide to the Galaxy\" }",
"description": "Enter body",
"height": "150px"
}
},
"get": {
"index": {
"$label": "Index",
"$key": "index",
"className": "col-6",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter index"
},
"id": {
"$label": "Id",
"$key": "id",
"className": "col-6",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter id"
}
},
"update": {
"index": {
"$label": "Index",
"$key": "index",
"className": "col-6",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter index"
},
"id": {
"$label": "Id",
"$key": "id",
"className": "col-6",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter id"
},
"body": {
"$label": "body",
"$key": "body",
"type": "codehinter",
"mode": "javascript",
"placeholder": "{ doc: { page_count: 225 } }",
"description": "Enter body",
"height": "150px"
}
}
}
}