From 5221f4b6409334b5c74549cb99d1ade52e8f8bc8 Mon Sep 17 00:00:00 2001 From: Vaishnavi Pawar Date: Sat, 21 Mar 2026 20:38:01 +0530 Subject: [PATCH] Fix typos in data catalog column names Corrected typos in column names for consistency. --- docs/data_catalog.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/data_catalog.md b/docs/data_catalog.md index ba2e735..228ff9d 100644 --- a/docs/data_catalog.md +++ b/docs/data_catalog.md @@ -11,7 +11,7 @@ The Gold Layer is the business-level data representation, structured to support | Column Name | Data Type | Description | |------------------|---------------|-----------------------------------------------------------------------------------------------| -| customer_key | INT | Surrogate key uniquely identifying each customer record in the dimension table. | +| customekey | INT | Surrogate key uniquely identifying each customer record in the dimension table. | | customer_id | INT | Unique numerical identifier assigned to each customer. | | customer_number | NVARCHAR(50) | Alphanumeric identifier representing the customer, used for tracking and referencing. | | first_name | NVARCHAR(50) | The customer's first name, as recorded in the system. | @@ -56,6 +56,6 @@ The Gold Layer is the business-level data representation, structured to support | order_date | DATE | The date when the order was placed. | | shipping_date | DATE | The date when the order was shipped to the customer. | | due_date | DATE | The date when the order payment was due. | -| sales_amount | INT | The total monetary value of the sale for the line item, in whole currency units (e.g., 25). | +| amount | INT | The total monetary value of the sale for the line item, in whole currency units (e.g., 25). | | quantity | INT | The number of units of the product ordered for the line item (e.g., 1). | -| price | INT | The price per unit of the product for the line item, in whole currency units (e.g., 25). | +| selling_price | INT | The price per unit of the product for the line item, in whole currency units (e.g., 25). |