Dataiku · Schema

SqlQueryRequest

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
connection string Name of the DSS connection to query
query string SQL query to execute
preQueries array SQL statements to execute before the main query
postQueries array SQL statements to execute after the main query
View JSON Schema on GitHub

JSON Schema

dataiku-sqlqueryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SqlQueryRequest",
  "title": "SqlQueryRequest",
  "type": "object",
  "required": [
    "connection",
    "query"
  ],
  "properties": {
    "connection": {
      "type": "string",
      "description": "Name of the DSS connection to query"
    },
    "query": {
      "type": "string",
      "description": "SQL query to execute"
    },
    "preQueries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "SQL statements to execute before the main query"
    },
    "postQueries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "SQL statements to execute after the main query"
    }
  }
}