- This schema defines the type used for describing different types of Nodes in DBT.
- Type: `string`
- The value is restricted to the following:
1._"Seed"_
2._"Model"_
### dbtCatalogType
- This schema defines the type used for describing different catalog type.
- Type: `string`
- The value is restricted to the following:
1._"BaseTable"_
### dbtMaterializationType
- This schema defines the type used for describing different materialization type.
- Type: `string`
- The value is restricted to the following:
1._"Table"_
2._"Seed"_
### dbtModelName
- Local name (not fully qualified name) of a table.
- Type: `string`
- The value must match this pattern: `^[^.]*$`
- Length: between 1 and 128
### fullyQualifiedColumnName
- Fully qualified name of the column that includes `serviceName.databaseName.tableName.columnName[.nestedColumnName]`. When columnName is null for dataType struct fields, `field_#` where `#` is field index is used. For map dataType, for key the field name `key` is used and for the value field `value` is used.