Skip to content

Soda

Base class for Soda assets.

Reference documentation

This is reference documentation covering the entire Atlan model. It is not the best place to start when trying to understand managing Soda assets in Atlan. For that, we would suggest starting with either:

  • Snippets — small, atomic examples of single-step use cases.
  • Patterns — walkthroughs of common multi-step implementation patterns.
classDiagram
    direction RL
    class Soda {
        <<abstract>>
    }
    link Soda "../soda"
    class DataQuality {
        <<abstract>>
    }
    link DataQuality "../entities/dataquality"
    DataQuality <|-- Soda : extends
    class Catalog {
        <<abstract>>
    }
    link Catalog "../entities/catalog"
    Catalog <|-- DataQuality : extends
    class Asset {
        <<abstract>>
    }
    link Asset "../entities/asset"
    Asset <|-- Catalog : extends
    class Referenceable {
        <<abstract>>
    }
    link Referenceable "../entities/referenceable"
    Referenceable <|-- Asset : extends
    class SodaCheck
    link SodaCheck "../entities/sodacheck"
    Soda <|-- SodaCheck : extends

Relationships

The following illustrates how the various Soda objects inter-relate with each other:

erDiagram
    Connection ||..o{ SodaCheck : ""
    SodaCheck }o--o{ Asset : sodaCheckAssets
    SodaCheck }o--o{ Column : sodaCheckColumns