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

21 lines
468 B
JSON
Raw Normal View History

{
"$schema": "https://json-schema.org/",
"$id": "https://tooljet.io/dataqueries/Redis.schema.json",
"title": "Redis data query schema",
"description": "A schema defining redis data query",
"type": "object",
"defaults": {
"query": "PING"
},
"properties": {
"query": {
"$key": "query",
"type": "codehinter",
"description": "Enter query",
"placeholder": "PING",
"height": "150px"
}
},
"required": ["query"]
}