NotebookCell

Notebook cell definition.

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
cell_type string The cell type.
source array Contents of the cell.
metadata object Cell metadata.
outputs array Cell outputs.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-notebookcell-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotebookCell",
  "title": "NotebookCell",
  "type": "object",
  "description": "Notebook cell definition.",
  "properties": {
    "cell_type": {
      "type": "string",
      "description": "The cell type."
    },
    "source": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Contents of the cell."
    },
    "metadata": {
      "type": "object",
      "description": "Cell metadata."
    },
    "outputs": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Cell outputs."
    }
  }
}