Skip to main content

Node_Only

idstring

An autogenerated Node ID.

namestring

The Node name.

nodeTypestring
location object

Where the Node is located.

namestring

The name of the Node Storage Location

Example: WORK
descriptionstring

The Node description.

materializationType

The materialization of the Node. Table or View.

Possible values: [table, view]

isMultisourceboolean

If the Node is Multi Source

override object

If the materializationType is set to view, users can override Create SQL allows a user to override the DDL of a view, enabling greater flexibility in view creation. Override Create SQL Toggle.

create object
enabledboolean

If the user has toggled override to true or false.

scriptstring

The custom script written in the Create SQL box.

tests object[]

Any Node level tests.

  • Array [
  • namestring

    Name of the test.

    Example: Test
    descriptionstring

    Description of the test.

    continueOnFailurestring

    If the pipeline should keep running, even if the Node test fails.

    runOrder

    If the test should run before or after the DML operation.

    Possible values: [Before, After]

    templateStringstring

    Any custom SQL that was added here.

    Example: SELECT * FROM COALESCE
  • ]
  • Node_Only
    {
    "id": "string",
    "name": "string",
    "nodeType": "string",
    "location": {
    "name": "WORK"
    },
    "description": "string",
    "isMultisource": true,
    "override": {
    "create": {
    "enabled": true,
    "script": "string"
    }
    },
    "tests": [
    {
    "name": "Test",
    "description": "string",
    "continueOnFailure": "string",
    "templateString": "SELECT * FROM COALESCE"
    }
    ]
    }