mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
16 lines
373 B
JSON
16 lines
373 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/",
|
||
|
|
"$id": "https://tooljet.io/dataqueries/Mysql.schema.json",
|
||
|
|
"title": "Mysql data query schema",
|
||
|
|
"description": "A schema defining mysql data query",
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"query": {
|
||
|
|
"$key": "query",
|
||
|
|
"type": "codehinter",
|
||
|
|
"description": "Enter query"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["query"]
|
||
|
|
}
|