Folks in the Canvas community are always such a big help. @James shared a zip file of the schema with me and that fixed my issue. 
Note for those setting up or working through Canvas Data. Some instructions for Canvas Data CLI and the command prompt suggest using a comma to separate the dim and fact tables during the unpacking process. I'm not an SME on command prompt, but when I tried this on Windows it returned the following error:
no files matched filter, nothing will be unpacked
unpack command completed successfully
You may find these Unpack procedures
canvasDataCli unpack -c path/to/config.js -f user_dim,account_dim
this command should be changed to
canvasDataCli unpack -c path/to/config.js -f user_dim account_dim
(with no comma between the tables you are unpacking)
After removing the comma the files unpacked fine.
Hope that helps
Unpack
NOTE: This only works after properly running a sync command
This command will unpack the gzipped files, concat any partitioned files, and add a header to the output file
canvasDataCli unpack -c path/to/config.js -f user_dim,account_dim
This command will unpack the user_dim and account_dim tables to a directory. Currently, you explictly have to give the files you want to unpack as this has the potential for creating very large files.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.