TermsAndConditions Model
Overview
This table stores information related to the terms and conditions documents for users, likely to track which terms and conditions a user has agreed to, along with the version and other metadata about the document.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | A unique identifier for the terms and conditions record | ❌ |
| document_id | string | The identifier of the document containing the terms and conditions. Likely references a master document or policy stored elsewhere. | ✅ |
| documentVersion | string | The version number of the terms and conditions document. Used to ensure that users acknowledge the exact version of a document | ✅ |
| documentName | string | The name of the terms and conditions document. Useful for display or audit purposes. | ✅ |
| version | string | The version of the terms and conditions agreement | ✅ |
| user_id | string | The identifier of the user who accepted or interacted with the terms and conditions. | ✅ |
| created_at | date | The timestamp when the terms and conditions record was created. | ❌ |
| modified_at | string | The timestamp when the terms and conditions record was last updated. | ❌ |
| sites_id | string | The identifier of the site associated with the terms and conditions. Useful in multi-site environments or organizations with regional policies. | ❌ |
Sample JSON
{
"id": "example_value",
"document_id": "example_value",
"documentVersion": "example_value",
"documentName": "example_value",
"version": "example_value",
"user_id": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"sites_id": "example_value"
}