├── custom.css ├── static ├── images │ ├── favicon.ico │ ├── logo-long.png │ ├── short-logo.png │ ├── glossary_scroller.gif │ ├── iterative-dev-loop.png │ ├── validation_failed_unexpected_values.gif │ ├── short-logo-vector.svg │ └── logo-long-vector.svg ├── fonts │ └── HKGrotesk │ │ ├── HKGrotesk-Bold.otf │ │ ├── HKGrotesk-Light.otf │ │ ├── HKGrotesk-Italic.otf │ │ ├── HKGrotesk-Medium.otf │ │ ├── HKGrotesk-Regular.otf │ │ ├── HKGrotesk-SemiBold.otf │ │ ├── HKGrotesk-BoldItalic.otf │ │ ├── HKGrotesk-LightItalic.otf │ │ ├── HKGrotesk-MediumItalic.otf │ │ └── HKGrotesk-SemiBoldItalic.otf └── styles │ ├── data_docs_custom_styles_template.css │ └── data_docs_default_styles.css ├── index.html └── expectations └── directory_facility_suite.html /custom.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/logo-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/logo-long.png -------------------------------------------------------------------------------- /static/images/short-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/short-logo.png -------------------------------------------------------------------------------- /static/images/glossary_scroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/glossary_scroller.gif -------------------------------------------------------------------------------- /static/images/iterative-dev-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/iterative-dev-loop.png -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-Bold.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-Light.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-Italic.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-Medium.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-Regular.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-SemiBold.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-BoldItalic.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-LightItalic.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-MediumItalic.otf -------------------------------------------------------------------------------- /static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/fonts/HKGrotesk/HKGrotesk-SemiBoldItalic.otf -------------------------------------------------------------------------------- /static/images/validation_failed_unexpected_values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gardnmi/ge_demo/master/static/images/validation_failed_unexpected_values.gif -------------------------------------------------------------------------------- /static/styles/data_docs_custom_styles_template.css: -------------------------------------------------------------------------------- 1 | /*index page*/ 2 | .ge-index-page-site-name-title {} 3 | .ge-index-page-table-container {} 4 | .ge-index-page-table {} 5 | .ge-index-page-table-profiling-links-header {} 6 | .ge-index-page-table-expectations-links-header {} 7 | .ge-index-page-table-validations-links-header {} 8 | .ge-index-page-table-profiling-links-list {} 9 | .ge-index-page-table-profiling-links-item {} 10 | .ge-index-page-table-expectation-suite-link {} 11 | .ge-index-page-table-validation-links-list {} 12 | .ge-index-page-table-validation-links-item {} 13 | 14 | /*breadcrumbs*/ 15 | .ge-breadcrumbs {} 16 | .ge-breadcrumbs-item {} 17 | 18 | /*navigation sidebar*/ 19 | .ge-navigation-sidebar-container {} 20 | .ge-navigation-sidebar-content {} 21 | .ge-navigation-sidebar-title {} 22 | .ge-navigation-sidebar-link {} 23 | -------------------------------------------------------------------------------- /static/styles/data_docs_default_styles.css: -------------------------------------------------------------------------------- 1 | {% if "ValidationResults" in renderer_type or "ProfilingResults" in renderer_type %} 2 | {% set static_fonts_dir = "../../../../../static/fonts/" -%} 3 | {% elif "ExpectationSuite" in renderer_type %} 4 | {% set static_fonts_dir = "../../../../static/fonts/" -%} 5 | {% elif "SiteIndex" in renderer_type %} 6 | {% set static_fonts_dir = "./static/fonts/" -%} 7 | {% endif %} 8 | 9 | body { 10 | position: relative; 11 | } 12 | 13 | .container { 14 | padding-top: 50px; 15 | } 16 | 17 | .sticky { 18 | position: -webkit-sticky; 19 | position: sticky; 20 | top: 90px; 21 | z-index: 1; 22 | } 23 | 24 | .ge-section { 25 | clear: both; 26 | margin-bottom: 30px; 27 | padding-bottom: 20px; 28 | } 29 | 30 | .popover { 31 | max-width: 100%; 32 | } 33 | 34 | .cooltip { 35 | display: inline-block; 36 | position: relative; 37 | text-align: left; 38 | cursor: pointer; 39 | } 40 | 41 | .cooltip .top { 42 | min-width: 200px; 43 | top: -6px; 44 | left: 50%; 45 | transform: translate(-50%, -100%); 46 | padding: 10px 20px; 47 | color: #FFFFFF; 48 | background-color: #222222; 49 | font-weight: normal; 50 | font-size: 13px; 51 | border-radius: 8px; 52 | position: absolute; 53 | z-index: 99999999 !important; 54 | box-sizing: border-box; 55 | box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); 56 | display: none; 57 | } 58 | 59 | .cooltip:hover .top { 60 | display: block; 61 | z-index: 99999999 !important; 62 | } 63 | 64 | .cooltip .top i { 65 | position: absolute; 66 | top: 100%; 67 | left: 50%; 68 | margin-left: -12px; 69 | width: 24px; 70 | height: 12px; 71 | overflow: hidden; 72 | } 73 | 74 | .cooltip .top i::after { 75 | content: ''; 76 | position: absolute; 77 | width: 12px; 78 | height: 12px; 79 | left: 50%; 80 | transform: translate(-50%, -50%) rotate(45deg); 81 | background-color: #222222; 82 | box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); 83 | } 84 | 85 | ul { 86 | padding-inline-start: 20px; 87 | } 88 | 89 | .show-scrollbars { 90 | overflow: auto; 91 | } 92 | 93 | td .show-scrollbars { 94 | max-height: 80vh; 95 | } 96 | 97 | /*.show-scrollbars ul {*/ 98 | /* padding-bottom: 20px*/ 99 | /*}*/ 100 | 101 | .show-scrollbars::-webkit-scrollbar { 102 | -webkit-appearance: none; 103 | } 104 | 105 | .show-scrollbars::-webkit-scrollbar:vertical { 106 | width: 11px; 107 | } 108 | 109 | .show-scrollbars::-webkit-scrollbar:horizontal { 110 | height: 11px; 111 | } 112 | 113 | .show-scrollbars::-webkit-scrollbar-thumb { 114 | border-radius: 8px; 115 | border: 2px solid white; /* should match background, can't be transparent */ 116 | background-color: rgba(0, 0, 0, .5); 117 | } 118 | 119 | #ge-cta-footer { 120 | opacity: 0.9; 121 | border-left-width: 4px 122 | } 123 | 124 | .carousel-caption { 125 | position: relative; 126 | left: 0; 127 | top: 0; 128 | } 129 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |537 | Data Docs autogenerated using 538 | Great Expectations. 539 |
540 |A collection of Expectations defined for batches of data.
583 || 939 | 940 | | 941 | 942 | 943 |946 | 947 | | 948 | 949 |
|---|---|
This Expectation suite currently contains 28 total Expectations across 24 columns.
1052 | 1053 |