├── .github └── workflows │ └── BuildAndValidateTabularModel.yml ├── .gitignore ├── AdventureWorks ├── dataSources │ └── te3-sql-training.json ├── database.json └── tables │ ├── Currency │ ├── Currency.json │ ├── columns │ │ ├── Currency Code.json │ │ ├── CurrencyKey.json │ │ ├── CurrencyName.json │ │ └── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ └── partitions │ │ └── Currency.json │ ├── Customer │ ├── Customer.json │ ├── columns │ │ ├── Address Line 1.json │ │ ├── Address Line 2.json │ │ ├── Birth Date.json │ │ ├── Commute Distance.json │ │ ├── Customer Id.json │ │ ├── CustomerKey.json │ │ ├── Date Of First Purchase.json │ │ ├── Education.json │ │ ├── Email Address.json │ │ ├── First Name.json │ │ ├── Gender.json │ │ ├── GeographyKey.json │ │ ├── Last Name.json │ │ ├── Marital Status.json │ │ ├── Middle Name.json │ │ ├── Name Style.json │ │ ├── Number of Children At Home.json │ │ ├── Occupation.json │ │ ├── Owns House.json │ │ ├── Phone.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Suffix.json │ │ ├── Title.json │ │ ├── Total Cars Owned.json │ │ ├── Total Children.json │ │ └── Yearly Income.json │ └── partitions │ │ └── Customer.json │ ├── Date │ ├── Date.json │ ├── columns │ │ ├── Calendar Quarter.json │ │ ├── Calendar Semester.json │ │ ├── Calendar Year.json │ │ ├── Date.json │ │ ├── DateKey.json │ │ ├── Day Name Of Week.json │ │ ├── Day Number Of Week.json │ │ ├── Day Of Month.json │ │ ├── Day Of Year.json │ │ ├── Fiscal Quarter.json │ │ ├── Fiscal Semester.json │ │ ├── Fiscal Year.json │ │ ├── Month Name.json │ │ ├── Month.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ └── Week Of Year.json │ ├── hierarchies │ │ ├── Calendar.json │ │ ├── Fiscal.json │ │ └── Production Calendar.json │ ├── measures │ │ ├── Days In Current Quarter to Date.json │ │ └── Days In Current Quarter.json │ └── partitions │ │ └── Date.json │ ├── Employee │ ├── Employee.json │ ├── columns │ │ ├── Base Rate.json │ │ ├── Birth Date.json │ │ ├── Department Name.json │ │ ├── Email.json │ │ ├── Emergency Contact Name.json │ │ ├── Emergency Contact Phone.json │ │ ├── Employee Id.json │ │ ├── Employee Photo.json │ │ ├── EmployeeKey.json │ │ ├── End Date.json │ │ ├── First Name.json │ │ ├── Gender.json │ │ ├── Hire Date.json │ │ ├── Is Current.json │ │ ├── Is Salaried.json │ │ ├── Is Sales Person.json │ │ ├── Last Name.json │ │ ├── Login.json │ │ ├── Marital Status.json │ │ ├── Middle Name.json │ │ ├── NameStyle.json │ │ ├── ParentEmployeeKey.json │ │ ├── Pay Frequency.json │ │ ├── Phone.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── SalesTerritoryKey.json │ │ ├── Sick Leave Hours.json │ │ ├── Start Date.json │ │ ├── Status.json │ │ ├── Title.json │ │ └── Vacation Hours.json │ └── partitions │ │ └── Employee.json │ ├── Geography │ ├── Geography.json │ ├── columns │ │ ├── City.json │ │ ├── Country Region Code.json │ │ ├── Country Region Name.json │ │ ├── GeographyKey.json │ │ ├── Postal Code.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── SalesTerritoryKey.json │ │ ├── State Province Code.json │ │ └── State Province Name.json │ ├── hierarchies │ │ └── Geography.json │ └── partitions │ │ └── Geography.json │ ├── Internet Sales │ ├── Internet Sales.json │ ├── columns │ │ ├── Carrier Tracking Number.json │ │ ├── CurrencyKey.json │ │ ├── Customer PO Number.json │ │ ├── CustomerKey.json │ │ ├── Discount Amount.json │ │ ├── Due Date.json │ │ ├── DueDateKey.json │ │ ├── Extended Amount.json │ │ ├── Freight.json │ │ ├── Gross Profit.json │ │ ├── Order Date.json │ │ ├── Order Quantity.json │ │ ├── OrderDateKey.json │ │ ├── Product Standard Cost.json │ │ ├── ProductKey.json │ │ ├── PromotionKey.json │ │ ├── Revision Number.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Sales Amount.json │ │ ├── Sales Order Line Number.json │ │ ├── Sales Order Number.json │ │ ├── SalesTerritoryKey.json │ │ ├── Ship Date.json │ │ ├── ShipDateKey.json │ │ ├── Tax Amount.json │ │ ├── Total Product Cost.json │ │ ├── Unit Price Discount Pct.json │ │ └── Unit Price.json │ ├── measures │ │ ├── Current Quarter Gross Profit Performance.json │ │ ├── Current Quarter Gross Profit.json │ │ ├── Current Quarter Sales Performance.json │ │ ├── Current Quarter Sales.json │ │ ├── Internet Distinct Count Sales Order.json │ │ ├── Internet Order Lines Count.json │ │ ├── Internet Previous Quarter Gross Profit Proportion to QTD.json │ │ ├── Internet Previous Quarter Gross Profit.json │ │ ├── Internet Previous Quarter Sales Proportion to QTD.json │ │ ├── Internet Previous Quarter Sales.json │ │ ├── Internet Total Discount Amount.json │ │ ├── Internet Total Freight.json │ │ ├── Internet Total Gross Profit.json │ │ ├── Internet Total Product Cost.json │ │ ├── Internet Total Sales.json │ │ ├── Internet Total Tax Amount.json │ │ └── Internet Total Units.json │ └── partitions │ │ ├── Internet Sales 2010.json │ │ ├── Internet Sales 2011.json │ │ ├── Internet Sales 2012.json │ │ ├── Internet Sales 2013.json │ │ ├── Internet Sales 2014.json │ │ └── Internet Sales 2015.json │ ├── Product Category │ ├── Product Category.json │ ├── columns │ │ ├── Product Category Name.json │ │ ├── ProductCategoryKey.json │ │ └── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ └── partitions │ │ └── Product Category.json │ ├── Product Inventory │ ├── Product Inventory.json │ ├── columns │ │ ├── DateKey.json │ │ ├── Movement Date.json │ │ ├── Product-Date Inventory Value.json │ │ ├── Product-Date Max Inventory Value.json │ │ ├── Product-Date Negative Stock.json │ │ ├── Product-Date Optimal Inventory Value.json │ │ ├── Product-Date OverStocked.json │ │ ├── Product-Date UnderStocked.json │ │ ├── ProductKey.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Unit Cost.json │ │ ├── Units Balance.json │ │ ├── Units In.json │ │ └── Units Out.json │ ├── measures │ │ ├── Products OverStocked.json │ │ ├── Products UnderStocked.json │ │ ├── Products with Negative Stock.json │ │ ├── Total Inventory Maximum Value.json │ │ ├── Total Inventory Optimal Value.json │ │ ├── Total Inventory Value Performance.json │ │ ├── Total Inventory Value.json │ │ ├── Total Units In.json │ │ ├── Total Units Movement.json │ │ ├── Total Units Out.json │ │ └── Total Units.json │ └── partitions │ │ ├── Product Inventory 2010.json │ │ ├── Product Inventory 2011.json │ │ ├── Product Inventory 2012.json │ │ ├── Product Inventory 2013.json │ │ └── Product Inventory 2014.json │ ├── Product Subcategory │ ├── Product Subcategory.json │ ├── columns │ │ ├── Product Subcategory Name.json │ │ ├── ProductCategoryKey.json │ │ ├── ProductSubcategoryKey.json │ │ └── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ └── partitions │ │ └── Product Subcategory.json │ ├── Product │ ├── Product.json │ ├── columns │ │ ├── Class.json │ │ ├── Color.json │ │ ├── Days To Manufacture.json │ │ ├── Dealer Price.json │ │ ├── Description.json │ │ ├── Is Finished Goods.json │ │ ├── LargePhoto.json │ │ ├── List Price.json │ │ ├── Model Name.json │ │ ├── Product Category Name.json │ │ ├── Product End Date.json │ │ ├── Product Id.json │ │ ├── Product Line.json │ │ ├── Product Name.json │ │ ├── Product Start Date.json │ │ ├── Product Status.json │ │ ├── Product SubCategory Name.json │ │ ├── ProductKey.json │ │ ├── ProductSubcategoryKey.json │ │ ├── Reorder Point.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Safety Stock Level.json │ │ ├── Size Range.json │ │ ├── Size Unit Code.json │ │ ├── Size.json │ │ ├── Standard Cost.json │ │ ├── Style.json │ │ ├── Weight Unit Code.json │ │ └── Weight.json │ ├── hierarchies │ │ └── Category.json │ └── partitions │ │ └── Product.json │ ├── Promotion │ ├── Promotion.json │ ├── columns │ │ ├── DiscountPct.json │ │ ├── Max Quantity.json │ │ ├── Min Quantity.json │ │ ├── Promotion Category.json │ │ ├── Promotion End Date.json │ │ ├── Promotion Name.json │ │ ├── Promotion Start Date.json │ │ ├── Promotion Type.json │ │ ├── PromotionKey.json │ │ └── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ └── partitions │ │ └── Promotion.json │ ├── Reseller Sales │ ├── Reseller Sales.json │ ├── columns │ │ ├── Carrier Tracking Number.json │ │ ├── CurrencyKey.json │ │ ├── Discount Amount.json │ │ ├── Due Date.json │ │ ├── DueDateKey.json │ │ ├── EmployeeKey.json │ │ ├── Extended Amount.json │ │ ├── Freight.json │ │ ├── Gross Profit.json │ │ ├── Order Date.json │ │ ├── Order Quantity.json │ │ ├── OrderDateKey.json │ │ ├── Product Standard Cost.json │ │ ├── ProductKey.json │ │ ├── PromotionKey.json │ │ ├── Reseller PO Number.json │ │ ├── ResellerKey.json │ │ ├── Revision Number.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Sales Amount.json │ │ ├── Sales Order Line Number.json │ │ ├── Sales Order Number.json │ │ ├── SalesTerritoryKey.json │ │ ├── Ship Date.json │ │ ├── ShipDateKey.json │ │ ├── Tax Amount.json │ │ ├── Total Product Cost.json │ │ ├── Unit Price Discount Pct.json │ │ └── Unit Price.json │ ├── measures │ │ ├── Reseller Current Quarter Gross Profit Performance.json │ │ ├── Reseller Current Quarter Gross Profit.json │ │ ├── Reseller Current Quarter Sales Performance.json │ │ ├── Reseller Current Quarter Sales.json │ │ ├── Reseller Distinct Count Sales Order.json │ │ ├── Reseller Order Lines Count.json │ │ ├── Reseller Previous Quarter Gross Profit Proportion to QTD.json │ │ ├── Reseller Previous Quarter Gross Profit.json │ │ ├── Reseller Previous Quarter Sales Proportion to QTD.json │ │ ├── Reseller Previous Quarter Sales.json │ │ ├── Reseller Total Discount Amount.json │ │ ├── Reseller Total Freight.json │ │ ├── Reseller Total Gross Profit.json │ │ ├── Reseller Total Product Cost.json │ │ ├── Reseller Total Sales - Sales Territory sliced by Employee.json │ │ ├── Reseller Total Sales - Sales Territory sliced by Reseller.json │ │ ├── Reseller Total Sales.json │ │ ├── Reseller Total Tax Amount.json │ │ └── Reseller Total Units.json │ └── partitions │ │ ├── Reseller Sales 2010.json │ │ ├── Reseller Sales 2011.json │ │ ├── Reseller Sales 2012.json │ │ └── Reseller Sales 2013.json │ ├── Reseller │ ├── Reseller.json │ ├── columns │ │ ├── Address Line 1.json │ │ ├── Address Line 2.json │ │ ├── Annua Revenue.json │ │ ├── Annual Sales.json │ │ ├── Bank Name.json │ │ ├── Business Type.json │ │ ├── First Order Year.json │ │ ├── GeographyKey.json │ │ ├── Last Order Year.json │ │ ├── Min Payment Amount.json │ │ ├── Min Payment Type.json │ │ ├── Number Employees.json │ │ ├── Order Frequency.json │ │ ├── Order Month.json │ │ ├── Product Line.json │ │ ├── Reseller Id.json │ │ ├── Reseller Name.json │ │ ├── Reseller Phone.json │ │ ├── ResellerKey.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ └── Year Opened.json │ └── partitions │ │ └── Reseller.json │ ├── Sales Quota │ ├── Sales Quota.json │ ├── columns │ │ ├── Calendar Quarter.json │ │ ├── Calendar Year.json │ │ ├── Date.json │ │ ├── DateKey.json │ │ ├── EmployeeKey.json │ │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ │ ├── Sales Amount Quota.json │ │ └── SalesQuotaKey.json │ └── partitions │ │ └── Sales Quota.json │ └── Sales Territory │ ├── Sales Territory.json │ ├── columns │ ├── RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json │ ├── Sales Territory Country.json │ ├── Sales Territory Group.json │ ├── Sales Territory Image.json │ ├── Sales Territory Region.json │ └── SalesTerritoryKey.json │ ├── hierarchies │ └── Territory.json │ ├── measures │ ├── Distinct Count Sales Orders.json │ ├── Order Lines Count.json │ ├── Total Current Quarter Gross Profit Performance.json │ ├── Total Current Quarter Gross Profit.json │ ├── Total Current Quarter Sales Performance.json │ ├── Total Current Quarter Sales.json │ ├── Total Discount Amount.json │ ├── Total Freight.json │ ├── Total Gross Profit.json │ ├── Total Previous Quarter Gross Profit Proportion to QTD.json │ ├── Total Previous Quarter Gross Profit.json │ ├── Total Previous Quarter Sales Proportion to QTD.json │ ├── Total Previous Quarter Sales.json │ ├── Total Products Cost.json │ ├── Total Sales - Sales Territory sliced by Employee.json │ ├── Total Sales.json │ ├── Total Tax Amount.json │ └── Total Units Sold.json │ └── partitions │ └── Sales Territory.json ├── PbixFiles ├── Customer Profitability Sample PBIX.pbix ├── Human Resources Sample PBIX.pbix ├── Procurement Analysis Sample PBIX.pbix ├── Retail Analysis Sample PBIX.pbix ├── Sales and Marketing Sample PBIX.pbix └── Supplier-Quality-Analysis-Sample-PBIX.pbix ├── README.md └── Scripts ├── DownloadTE2.ps1 └── ReplaceDataSourceConnectionString.csx /.github/workflows/BuildAndValidateTabularModel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/.github/workflows/BuildAndValidateTabularModel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/.gitignore -------------------------------------------------------------------------------- /AdventureWorks/dataSources/te3-sql-training.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/dataSources/te3-sql-training.json -------------------------------------------------------------------------------- /AdventureWorks/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/database.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/Currency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/Currency.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/columns/Currency Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/columns/Currency Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/columns/CurrencyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/columns/CurrencyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/columns/CurrencyName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/columns/CurrencyName.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Currency/partitions/Currency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Currency/partitions/Currency.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/Customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/Customer.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Address Line 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Address Line 1.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Address Line 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Address Line 2.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Birth Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Birth Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Commute Distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Commute Distance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Customer Id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Customer Id.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/CustomerKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/CustomerKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Date Of First Purchase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Date Of First Purchase.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Education.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Education.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Email Address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Email Address.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/First Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/First Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Gender.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/GeographyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/GeographyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Last Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Last Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Marital Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Marital Status.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Middle Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Middle Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Name Style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Name Style.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Number of Children At Home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Number of Children At Home.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Occupation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Occupation.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Owns House.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Owns House.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Phone.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Suffix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Suffix.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Title.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Total Cars Owned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Total Cars Owned.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Total Children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Total Children.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/columns/Yearly Income.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/columns/Yearly Income.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Customer/partitions/Customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Customer/partitions/Customer.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Calendar Quarter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Calendar Quarter.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Calendar Semester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Calendar Semester.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Calendar Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Calendar Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/DateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/DateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Day Name Of Week.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Day Name Of Week.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Day Number Of Week.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Day Number Of Week.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Day Of Month.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Day Of Month.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Day Of Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Day Of Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Fiscal Quarter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Fiscal Quarter.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Fiscal Semester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Fiscal Semester.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Fiscal Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Fiscal Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Month Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Month Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Month.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Month.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/columns/Week Of Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/columns/Week Of Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/hierarchies/Calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/hierarchies/Calendar.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/hierarchies/Fiscal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/hierarchies/Fiscal.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/hierarchies/Production Calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/hierarchies/Production Calendar.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/measures/Days In Current Quarter to Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/measures/Days In Current Quarter to Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/measures/Days In Current Quarter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/measures/Days In Current Quarter.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Date/partitions/Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Date/partitions/Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/Employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/Employee.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Base Rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Base Rate.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Birth Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Birth Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Department Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Department Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Email.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Emergency Contact Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Emergency Contact Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Emergency Contact Phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Emergency Contact Phone.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Employee Id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Employee Id.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Employee Photo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Employee Photo.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/EmployeeKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/EmployeeKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/End Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/End Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/First Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/First Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Gender.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Hire Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Hire Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Is Current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Is Current.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Is Salaried.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Is Salaried.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Is Sales Person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Is Sales Person.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Last Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Last Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Login.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Marital Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Marital Status.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Middle Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Middle Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/NameStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/NameStyle.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/ParentEmployeeKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/ParentEmployeeKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Pay Frequency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Pay Frequency.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Phone.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/SalesTerritoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/SalesTerritoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Sick Leave Hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Sick Leave Hours.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Start Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Start Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Status.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Title.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/columns/Vacation Hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/columns/Vacation Hours.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Employee/partitions/Employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Employee/partitions/Employee.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/Geography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/Geography.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/City.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/City.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/Country Region Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/Country Region Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/Country Region Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/Country Region Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/GeographyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/GeographyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/Postal Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/Postal Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/SalesTerritoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/SalesTerritoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/State Province Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/State Province Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/columns/State Province Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/columns/State Province Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/hierarchies/Geography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/hierarchies/Geography.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Geography/partitions/Geography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Geography/partitions/Geography.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/Internet Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/Internet Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Carrier Tracking Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Carrier Tracking Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/CurrencyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/CurrencyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Customer PO Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Customer PO Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/CustomerKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/CustomerKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Discount Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Discount Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Due Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Due Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/DueDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/DueDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Extended Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Extended Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Freight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Freight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Order Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Order Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Order Quantity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Order Quantity.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/OrderDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/OrderDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Product Standard Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Product Standard Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/ProductKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/ProductKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/PromotionKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/PromotionKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Revision Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Revision Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Sales Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Sales Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Sales Order Line Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Sales Order Line Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Sales Order Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Sales Order Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/SalesTerritoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/SalesTerritoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Ship Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Ship Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/ShipDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/ShipDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Tax Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Tax Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Total Product Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Total Product Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Unit Price Discount Pct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Unit Price Discount Pct.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/columns/Unit Price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/columns/Unit Price.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Current Quarter Gross Profit Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Current Quarter Gross Profit Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Current Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Current Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Current Quarter Sales Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Current Quarter Sales Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Current Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Current Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Distinct Count Sales Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Distinct Count Sales Order.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Order Lines Count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Order Lines Count.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Gross Profit Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Gross Profit Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Sales Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Sales Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Previous Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Discount Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Discount Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Freight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Freight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Product Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Product Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Tax Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Tax Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/measures/Internet Total Units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/measures/Internet Total Units.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2010.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2011.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2012.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2013.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2014.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Internet Sales/partitions/Internet Sales 2015.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Category/Product Category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Category/Product Category.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Category/columns/Product Category Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Category/columns/Product Category Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Category/columns/ProductCategoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Category/columns/ProductCategoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Category/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Category/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Category/partitions/Product Category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Category/partitions/Product Category.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/Product Inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/Product Inventory.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/DateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/DateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Movement Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Movement Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date Inventory Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date Inventory Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date Max Inventory Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date Max Inventory Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date Negative Stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date Negative Stock.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date Optimal Inventory Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date Optimal Inventory Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date OverStocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date OverStocked.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Product-Date UnderStocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Product-Date UnderStocked.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/ProductKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/ProductKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Unit Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Unit Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Units Balance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Units Balance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Units In.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Units In.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/columns/Units Out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/columns/Units Out.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Products OverStocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Products OverStocked.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Products UnderStocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Products UnderStocked.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Products with Negative Stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Products with Negative Stock.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Inventory Maximum Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Inventory Maximum Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Inventory Optimal Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Inventory Optimal Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Inventory Value Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Inventory Value Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Inventory Value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Inventory Value.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Units In.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Units In.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Units Movement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Units Movement.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Units Out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Units Out.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/measures/Total Units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/measures/Total Units.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2010.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2011.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2012.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2013.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Inventory/partitions/Product Inventory 2014.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/Product Subcategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/Product Subcategory.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/columns/Product Subcategory Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/columns/Product Subcategory Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/columns/ProductCategoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/columns/ProductCategoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/columns/ProductSubcategoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/columns/ProductSubcategoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product Subcategory/partitions/Product Subcategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product Subcategory/partitions/Product Subcategory.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/Product.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Class.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Color.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Days To Manufacture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Days To Manufacture.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Dealer Price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Dealer Price.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Description.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Is Finished Goods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Is Finished Goods.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/LargePhoto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/LargePhoto.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/List Price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/List Price.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Model Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Model Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Category Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Category Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product End Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product End Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Id.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Line.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Start Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Start Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product Status.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Product SubCategory Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Product SubCategory Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/ProductKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/ProductKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/ProductSubcategoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/ProductSubcategoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Reorder Point.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Reorder Point.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Safety Stock Level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Safety Stock Level.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Size Range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Size Range.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Size Unit Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Size Unit Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Size.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Standard Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Standard Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Style.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Weight Unit Code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Weight Unit Code.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/columns/Weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/columns/Weight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/hierarchies/Category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/hierarchies/Category.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Product/partitions/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Product/partitions/Product.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/Promotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/Promotion.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/DiscountPct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/DiscountPct.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Max Quantity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Max Quantity.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Min Quantity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Min Quantity.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Promotion Category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Promotion Category.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Promotion End Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Promotion End Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Promotion Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Promotion Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Promotion Start Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Promotion Start Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/Promotion Type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/Promotion Type.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/PromotionKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/PromotionKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Promotion/partitions/Promotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Promotion/partitions/Promotion.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/Reseller Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/Reseller Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Carrier Tracking Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Carrier Tracking Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/CurrencyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/CurrencyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Discount Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Discount Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Due Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Due Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/DueDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/DueDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/EmployeeKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/EmployeeKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Extended Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Extended Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Freight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Freight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Order Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Order Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Order Quantity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Order Quantity.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/OrderDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/OrderDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Product Standard Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Product Standard Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/ProductKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/ProductKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/PromotionKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/PromotionKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Reseller PO Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Reseller PO Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/ResellerKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/ResellerKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Revision Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Revision Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Sales Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Sales Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Sales Order Line Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Sales Order Line Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Sales Order Number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Sales Order Number.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/SalesTerritoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/SalesTerritoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Ship Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Ship Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/ShipDateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/ShipDateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Tax Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Tax Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Total Product Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Total Product Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Unit Price Discount Pct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Unit Price Discount Pct.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/columns/Unit Price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/columns/Unit Price.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Gross Profit Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Gross Profit Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Sales Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Sales Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Current Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Distinct Count Sales Order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Distinct Count Sales Order.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Order Lines Count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Order Lines Count.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Gross Profit Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Gross Profit Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Sales Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Sales Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Previous Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Discount Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Discount Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Freight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Freight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Product Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Product Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales - Sales Territory sliced by Employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales - Sales Territory sliced by Employee.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales - Sales Territory sliced by Reseller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales - Sales Territory sliced by Reseller.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Tax Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Tax Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/measures/Reseller Total Units.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/measures/Reseller Total Units.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2010.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2011.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2012.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller Sales/partitions/Reseller Sales 2013.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/Reseller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/Reseller.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Address Line 1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Address Line 1.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Address Line 2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Address Line 2.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Annua Revenue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Annua Revenue.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Annual Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Annual Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Bank Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Bank Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Business Type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Business Type.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/First Order Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/First Order Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/GeographyKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/GeographyKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Last Order Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Last Order Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Min Payment Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Min Payment Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Min Payment Type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Min Payment Type.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Number Employees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Number Employees.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Order Frequency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Order Frequency.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Order Month.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Order Month.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Product Line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Product Line.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Reseller Id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Reseller Id.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Reseller Name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Reseller Name.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Reseller Phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Reseller Phone.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/ResellerKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/ResellerKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/columns/Year Opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/columns/Year Opened.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Reseller/partitions/Reseller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Reseller/partitions/Reseller.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/Sales Quota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/Sales Quota.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/Calendar Quarter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/Calendar Quarter.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/Calendar Year.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/Calendar Year.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/Date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/Date.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/DateKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/DateKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/EmployeeKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/EmployeeKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/Sales Amount Quota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/Sales Amount Quota.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/columns/SalesQuotaKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/columns/SalesQuotaKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Quota/partitions/Sales Quota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Quota/partitions/Sales Quota.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/Sales Territory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/Sales Territory.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/RowNumber-2662979B-1795-4F74-8F37-6A1BA8059B61.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/Sales Territory Country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/Sales Territory Country.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/Sales Territory Group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/Sales Territory Group.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/Sales Territory Image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/Sales Territory Image.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/Sales Territory Region.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/Sales Territory Region.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/columns/SalesTerritoryKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/columns/SalesTerritoryKey.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/hierarchies/Territory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/hierarchies/Territory.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Distinct Count Sales Orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Distinct Count Sales Orders.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Order Lines Count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Order Lines Count.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Gross Profit Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Gross Profit Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Sales Performance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Sales Performance.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Current Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Discount Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Discount Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Freight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Freight.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Gross Profit Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Gross Profit Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Gross Profit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Gross Profit.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Sales Proportion to QTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Sales Proportion to QTD.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Previous Quarter Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Products Cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Products Cost.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Sales - Sales Territory sliced by Employee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Sales - Sales Territory sliced by Employee.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Sales.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Tax Amount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Tax Amount.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/measures/Total Units Sold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/measures/Total Units Sold.json -------------------------------------------------------------------------------- /AdventureWorks/tables/Sales Territory/partitions/Sales Territory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/AdventureWorks/tables/Sales Territory/partitions/Sales Territory.json -------------------------------------------------------------------------------- /PbixFiles/Customer Profitability Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Customer Profitability Sample PBIX.pbix -------------------------------------------------------------------------------- /PbixFiles/Human Resources Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Human Resources Sample PBIX.pbix -------------------------------------------------------------------------------- /PbixFiles/Procurement Analysis Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Procurement Analysis Sample PBIX.pbix -------------------------------------------------------------------------------- /PbixFiles/Retail Analysis Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Retail Analysis Sample PBIX.pbix -------------------------------------------------------------------------------- /PbixFiles/Sales and Marketing Sample PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Sales and Marketing Sample PBIX.pbix -------------------------------------------------------------------------------- /PbixFiles/Supplier-Quality-Analysis-Sample-PBIX.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/PbixFiles/Supplier-Quality-Analysis-Sample-PBIX.pbix -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/DownloadTE2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/Scripts/DownloadTE2.ps1 -------------------------------------------------------------------------------- /Scripts/ReplaceDataSourceConnectionString.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TabularEditor/DevOps/HEAD/Scripts/ReplaceDataSourceConnectionString.csx --------------------------------------------------------------------------------