Skip to main content

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

FieldTypeDescriptionRequired
idstringA unique identifier for the terms and conditions record
document_idstringThe identifier of the document containing the terms and conditions. Likely references a master document or policy stored elsewhere.
documentVersionstringThe version number of the terms and conditions document. Used to ensure that users acknowledge the exact version of a document
documentNamestringThe name of the terms and conditions document. Useful for display or audit purposes.
versionstringThe version of the terms and conditions agreement
user_idstringThe identifier of the user who accepted or interacted with the terms and conditions.
created_atdateThe timestamp when the terms and conditions record was created.
modified_atstringThe timestamp when the terms and conditions record was last updated.
sites_idstringThe 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"
}