gitextract_wm2q9ded/ ├── .gitignore ├── README.md ├── data/ │ ├── yellow_tripdata_sample_2019-01.csv │ └── yellow_tripdata_sample_2019-02.csv ├── ge_dbt_airflow_tutorial/ │ ├── Dockerfile │ ├── README.md │ ├── airflow/ │ │ ├── ge_tutorials_dag_with_great_expectations.py │ │ └── ge_tutorials_dag_without_great_expectations.py │ ├── data/ │ │ ├── .gitkeep │ │ ├── npi_small.csv │ │ └── state_abbreviations.csv │ ├── dbt/ │ │ ├── dbt_project.yml │ │ └── models/ │ │ ├── count_providers_by_state.sql │ │ ├── npi_with_state.sql │ │ ├── sources.yml │ │ └── staging/ │ │ ├── stg_npi.sql │ │ └── stg_state_abbreviations.sql │ ├── deploy/ │ │ ├── config/ │ │ │ └── airflow.cfg │ │ └── script/ │ │ └── entrypoint.sh │ ├── docker-compose.yml │ ├── example_dbt_profile.yml │ ├── great_expectations_projects/ │ │ └── final/ │ │ └── great_expectations/ │ │ ├── .gitignore │ │ ├── config_variables.yml │ │ ├── expectations/ │ │ │ ├── count_providers_by_state/ │ │ │ │ └── critical.json │ │ │ ├── npi_small_db_table/ │ │ │ │ └── critical.json │ │ │ ├── npi_small_file/ │ │ │ │ └── critical.json │ │ │ └── state_abbreviations_file/ │ │ │ └── critical.json │ │ ├── great_expectations.yml │ │ ├── notebooks/ │ │ │ ├── pandas/ │ │ │ │ └── validation_playground.ipynb │ │ │ ├── spark/ │ │ │ │ └── validation_playground.ipynb │ │ │ └── sql/ │ │ │ └── validation_playground.ipynb │ │ └── plugins/ │ │ └── custom_data_docs/ │ │ └── styles/ │ │ └── data_docs_custom_styles.css │ └── requirements.txt ├── getting_started_tutorial_final_v2_api/ │ ├── README.md │ └── great_expectations/ │ ├── .gitignore │ ├── checkpoints/ │ │ ├── .ge_store_backend_id │ │ └── my_chk.yml │ ├── expectations/ │ │ ├── .ge_store_backend_id │ │ └── taxi/ │ │ └── demo.json │ ├── great_expectations.yml │ ├── notebooks/ │ │ ├── pandas/ │ │ │ └── validation_playground.ipynb │ │ ├── spark/ │ │ │ └── validation_playground.ipynb │ │ └── sql/ │ │ └── validation_playground.ipynb │ └── plugins/ │ └── custom_data_docs/ │ └── styles/ │ └── data_docs_custom_styles.css └── getting_started_tutorial_final_v3_api/ ├── README.md ├── great_expectations/ │ ├── .gitignore │ ├── checkpoints/ │ │ ├── my_checkpoint.yml │ │ └── my_checkpoint_with_custom_expectation.yml │ ├── expectations/ │ │ ├── .ge_store_backend_id │ │ └── taxi/ │ │ ├── demo.json │ │ └── demo_with_custom_expectation.json │ ├── great_expectations.yml │ ├── notebooks/ │ │ ├── pandas/ │ │ │ └── validation_playground.ipynb │ │ ├── spark/ │ │ │ └── validation_playground.ipynb │ │ └── sql/ │ │ └── validation_playground.ipynb │ └── plugins/ │ ├── column_custom_max_expectation.py │ └── custom_data_docs/ │ └── styles/ │ └── data_docs_custom_styles.css └── run_checkpoint_with_custom_expectation.py