Files
superset2/docs/developer_docs_versioned_docs/version-6.1.0/api/format-sql-code.RequestSchema.json
2026-07-28 21:39:01 +07:00

37 lines
927 B
JSON

{
"title": "Body",
"body": {
"content": {
"application/json": {
"schema": {
"properties": {
"database_id": {
"description": "The database id",
"nullable": true,
"type": "integer"
},
"engine": { "nullable": true, "type": "string" },
"sql": { "type": "string" },
"template_params": {
"description": "The SQL query template params as JSON string",
"nullable": true,
"type": "string"
}
},
"required": ["sql"],
"type": "object",
"title": "FormatQueryPayloadSchema"
},
"example": {
"database_id": 1,
"engine": "string",
"sql": "string",
"template_params": "string"
}
}
},
"description": "SQL query",
"required": true
}
}