KqlScript

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
description string
content object
folder object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-kqlscript-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KqlScript",
  "title": "KqlScript",
  "type": "object",
  "properties": {
    "description": {
      "type": "string"
    },
    "content": {
      "type": "object",
      "properties": {
        "query": {
          "type": "string",
          "description": "The KQL query content."
        },
        "metadata": {
          "type": "object",
          "properties": {
            "language": {
              "type": "string"
            }
          }
        },
        "currentConnection": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "description": "Data Explorer pool name."
            },
            "databaseName": {
              "type": "string",
              "description": "Data Explorer database name."
            },
            "type": {
              "type": "string"
            }
          }
        }
      }
    },
    "folder": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      }
    }
  }
}