mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
17 lines
402 B
JSON
17 lines
402 B
JSON
|
|
{
|
||
|
|
"$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",
|
||
|
|
"properties": {
|
||
|
|
"query": {
|
||
|
|
"$key": "query",
|
||
|
|
"type": "codehinter",
|
||
|
|
"description": "Enter query",
|
||
|
|
"placeholder": "PING"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["query"]
|
||
|
|
}
|