You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Definition": "The SalesLT.CustomerAddress entity represents the relationship between customers and their addresses within the sales database. It contains key information about which addresses are associated with which customers, including the type of address (such as billing or shipping). This entity is useful for understanding and maintaining customer address records, ensuring accurate and up-to-date address information for each customer. It can be used to answer questions related to customer address assignments, address type categorization, and modification history of these records.",
4
-
"EntityName": "Customer Address Information",
5
-
"Database": "AdventureWorksLT",
6
-
"Warehouse": null,
7
-
"EntityRelationships": [
2
+
"Columns": [
3
+
{
4
+
"AllowedValues": null,
5
+
"DataType": "int",
6
+
"Definition": "The CustomerID column in the SalesLT.CustomerAddress entity contains unique identifiers for customers. Each value is an integer that uniquely identifies a customer within the database, ensuring that each customer can be distinctively referenced. These identifiers are likely autogenerated and do not follow a specific pattern other than being unique numeric values.",
7
+
"Name": "CustomerID",
8
+
"SampleValues": [
9
+
29522,
10
+
29937,
11
+
29761,
12
+
29843,
13
+
29728
14
+
]
15
+
},
16
+
{
17
+
"AllowedValues": null,
18
+
"DataType": "int",
19
+
"Definition": "The AddressID column in the SalesLT.CustomerAddress entity contains unique numeric identifiers for each address associated with customers. The values in this column are integers and serve as primary keys to uniquely distinguish different address records within the table. The identifiers do not follow a specific sequence but ensure that each address has a distinct identifier for reference purposes.",
20
+
"Name": "AddressID",
21
+
"SampleValues": [
22
+
643,
23
+
867,
24
+
810,
25
+
993,
26
+
601
27
+
]
28
+
},
29
+
{
30
+
"AllowedValues": null,
31
+
"DataType": "nvarchar",
32
+
"Definition": "The AddressType column in the SalesLT.CustomerAddress entity contains descriptions of the type of address associated with a customer. The values can indicate different purposes for the address, such as \"Shipping\" for shipping addresses and \"Main Office\" for primary business locations. These descriptions help categorize the addresses based on their usage within the organization.",
33
+
"Name": "AddressType",
34
+
"SampleValues": [
35
+
"Shipping",
36
+
"Main Office"
37
+
]
38
+
},
39
+
{
40
+
"AllowedValues": null,
41
+
"DataType": "uniqueidentifier",
42
+
"Definition": "The column rowguid in the SalesLT.CustomerAddress entity contains unique identifier values in the GUID (Globally Unique Identifier) format. These values are typically used to uniquely identify rows in the table, ensuring that each row can be distinctly referenced. The GUIDs follow a standardized 32-character hexadecimal format, divided into five groups separated by hyphens.",
43
+
"Name": "rowguid",
44
+
"SampleValues": [
45
+
"0B887414-135A-43F6-94DC-60A220362C6D",
46
+
"5F9605D9-90C5-448B-9E38-13E53BD965F0",
47
+
"4CAA058D-61F5-4A49-9167-D1E57DCAC9CE",
48
+
"81390AF7-D4D0-4F4D-AF42-AB21F5713F14",
49
+
"F49E2C74-9BB9-462E-BCAA-67370F4D74A9"
50
+
]
51
+
},
52
+
{
53
+
"AllowedValues": null,
54
+
"DataType": "datetime",
55
+
"Definition": "The ModifiedDate column in the SalesLT.CustomerAddress entity contains the date and time when the record was last updated. The values are in the format of 'YYYY-MM-DD HH:MM:SS', indicating both the date and time of modification. This column is used to track and audit changes made to customer address records over time.",
"Definition": "The SalesLT.CustomerAddress entity represents the relationship between customers and their addresses within the sales database. It contains key information about which addresses are associated with which customers, including the type of address (such as billing or shipping). This entity is useful for understanding and maintaining customer address records, ensuring accurate and up-to-date address information for each customer. It can be used to answer questions related to customer address assignments, address type categorization, and modification history of these records.",
"Definition": "The CustomerID column in the SalesLT.CustomerAddress entity contains unique identifiers for customers. Each value is an integer that uniquely identifies a customer within the database, ensuring that each customer can be distinctively referenced. These identifiers are likely autogenerated and do not follow a specific pattern other than being unique numeric values.",
40
-
"AllowedValues": null,
41
-
"SampleValues": [
42
-
29522,
43
-
29937,
44
-
29761,
45
-
29843,
46
-
29728
47
-
]
48
-
},
49
-
{
50
-
"Name": "AddressID",
51
-
"DataType": "int",
52
-
"Definition": "The AddressID column in the SalesLT.CustomerAddress entity contains unique numeric identifiers for each address associated with customers. The values in this column are integers and serve as primary keys to uniquely distinguish different address records within the table. The identifiers do not follow a specific sequence but ensure that each address has a distinct identifier for reference purposes.",
53
-
"AllowedValues": null,
54
-
"SampleValues": [
55
-
643,
56
-
867,
57
-
810,
58
-
993,
59
-
601
60
-
]
61
-
},
62
-
{
63
-
"Name": "AddressType",
64
-
"DataType": "nvarchar",
65
-
"Definition": "The AddressType column in the SalesLT.CustomerAddress entity contains descriptions of the type of address associated with a customer. The values can indicate different purposes for the address, such as \"Shipping\" for shipping addresses and \"Main Office\" for primary business locations. These descriptions help categorize the addresses based on their usage within the organization.",
66
-
"AllowedValues": null,
67
-
"SampleValues": [
68
-
"Shipping",
69
-
"Main Office"
70
-
]
71
-
},
72
-
{
73
-
"Name": "rowguid",
74
-
"DataType": "uniqueidentifier",
75
-
"Definition": "The column rowguid in the SalesLT.CustomerAddress entity contains unique identifier values in the GUID (Globally Unique Identifier) format. These values are typically used to uniquely identify rows in the table, ensuring that each row can be distinctly referenced. The GUIDs follow a standardized 32-character hexadecimal format, divided into five groups separated by hyphens.",
76
-
"AllowedValues": null,
77
-
"SampleValues": [
78
-
"0B887414-135A-43F6-94DC-60A220362C6D",
79
-
"5F9605D9-90C5-448B-9E38-13E53BD965F0",
80
-
"4CAA058D-61F5-4A49-9167-D1E57DCAC9CE",
81
-
"81390AF7-D4D0-4F4D-AF42-AB21F5713F14",
82
-
"F49E2C74-9BB9-462E-BCAA-67370F4D74A9"
83
-
]
84
-
},
86
+
]
87
+
},
88
+
{
89
+
"ForeignEntity": "SalesLT.Customer",
90
+
"ForeignKeys": [
85
91
{
86
-
"Name": "ModifiedDate",
87
-
"DataType": "datetime",
88
-
"Definition": "The ModifiedDate column in the SalesLT.CustomerAddress entity contains the date and time when the record was last updated. The values are in the format of 'YYYY-MM-DD HH:MM:SS', indicating both the date and time of modification. This column is used to track and audit changes made to customer address records over time.",
0 commit comments