From 7c684948cb60e6264d931a0ccf301f9c6bb3e38c Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Tue, 12 Dec 2023 11:04:46 -0500 Subject: [PATCH] Adding the markdown file for the data dictionary --- docs/data-dictionary.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/data-dictionary.md diff --git a/docs/data-dictionary.md b/docs/data-dictionary.md new file mode 100644 index 000000000..d9aadf3ed --- /dev/null +++ b/docs/data-dictionary.md @@ -0,0 +1,12 @@ +# notify.gov Data Dictionary + +This document serves as a comprehensive guide to the data structure of notify.gov. It outlines the key data elements, their types, and relationships within the system. From user information to message details, this data dictionary is a valuable resource for understanding and maintaining the underlying data model of this application. Use this guide to ensure consistency, clarity, and effective management of the data that powers our messaging functionality. + +## Table: Dashboard + +| Field | Type | Length | Description | +|--------------|-----------|--------|------------------------------------| +| ProductID | Integer | | Unique identifier for a product. | +| Name | Varchar | 100 | Name of the product. | +| Price | Decimal | | Price of the product. | +| CategoryID | Integer | | Foreign key to product category. |