| 5 | |
| 6 | == Data Requirements == |
| 7 | |
| 8 | === Entities === |
| 9 | - Entity **User**- information about users |
| 10 | |
| 11 | Primary Key: UserID. |
| 12 | |
| 13 | Attributes: |
| 14 | Username - String data, mandatory. |
| 15 | |
| 16 | Email - String data, mandatory. |
| 17 | |
| 18 | Password - String data, mandatory. |
| 19 | |
| 20 | Contact_Details - String data, mandatory. |
| 21 | |
| 22 | - Entity **SocialMediaProfile** - information about the users linked social media profiles. |
| 23 | |
| 24 | Primary Key: ProfileID |
| 25 | Attributes: |
| 26 | |
| 27 | Platform - String data, mandatory |
| 28 | |
| 29 | User_Name - String data, mandatory |
| 30 | |
| 31 | Account_Type - String data, mandatory (ex. public, private..) |
| 32 | |
| 33 | Followers_Count - Integer data, mandatory |
| 34 | |
| 35 | - Entity **Post** - information about the post from a certain social media profile. |
| 36 | |
| 37 | Primary Key: PostID |
| 38 | Attributes: |
| 39 | |
| 40 | Content - String data, optional |
| 41 | |
| 42 | Post_Date - DateTime data, optional |
| 43 | |
| 44 | URL - String data, mandatory |
| 45 | |
| 46 | Likes_Count - Integer data, mandatory |
| 47 | |
| 48 | Comments_Count - Integer data, mandatory |
| 49 | |
| 50 | - Entity **Marketing Request** - information about the user created request to market a specific profile/post |
| 51 | Primary Key: RequestID |
| 52 | Attributes: |
| 53 | Target_Followers - Integer data, optional |
| 54 | Target_Likes - Integer data, optional |
| 55 | Target_Comments - Integer data, optional |
| 56 | |