├── .gitignore ├── README.md ├── ecommerce └── ecommerce │ ├── dim_customer_etl.py │ └── gx │ ├── .gitignore │ ├── checkpoints │ └── dq_checkpoint.yml │ ├── expectations │ ├── .ge_store_backend_id │ ├── dim_customer_dt_created_count.json │ └── non_validated_dim_customer.json │ ├── great_expectations.yml │ └── plugins │ └── custom_data_docs │ └── styles │ └── data_docs_custom_styles.css ├── requirements.txt ├── setup.sh └── setup ├── 1-create-tables.sql ├── 2-populate-raw-tables.sql └── 3-check-count.sql /.gitignore: -------------------------------------------------------------------------------- 1 | ecommerce.db 2 | 3 | env/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/README.md -------------------------------------------------------------------------------- /ecommerce/ecommerce/dim_customer_etl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/dim_customer_etl.py -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | uncommitted/ -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/checkpoints/dq_checkpoint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/gx/checkpoints/dq_checkpoint.yml -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/expectations/.ge_store_backend_id: -------------------------------------------------------------------------------- 1 | store_backend_id = b9c5a381-1666-4580-9568-1d310c181fad 2 | -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/expectations/dim_customer_dt_created_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/gx/expectations/dim_customer_dt_created_count.json -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/expectations/non_validated_dim_customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/gx/expectations/non_validated_dim_customer.json -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/great_expectations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/gx/great_expectations.yml -------------------------------------------------------------------------------- /ecommerce/ecommerce/gx/plugins/custom_data_docs/styles/data_docs_custom_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/ecommerce/ecommerce/gx/plugins/custom_data_docs/styles/data_docs_custom_styles.css -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/setup.sh -------------------------------------------------------------------------------- /setup/1-create-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/setup/1-create-tables.sql -------------------------------------------------------------------------------- /setup/2-populate-raw-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/setup/2-populate-raw-tables.sql -------------------------------------------------------------------------------- /setup/3-check-count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmachado/data-quality-w-greatexpectations/HEAD/setup/3-check-count.sql --------------------------------------------------------------------------------