Skip to content

Commit 48345e9

Browse files
Refactor data type documentation
1 parent d11aaea commit 48345e9

File tree

1 file changed

+40
-9
lines changed

1 file changed

+40
-9
lines changed

en/includes/guides/users/attributes/manage-attributes.md

Lines changed: 40 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -267,15 +267,46 @@ To configure properties of user attributes:
267267

268268
An attribute can be one of the following data types:
269269

270-
- **Text** A plain string value.
271-
- **Options** A pre-defined list of selectable values.
272-
- **Integer** Whole numbers (for example `1`, `42`, `-7`).
273-
- **Decimal** Numbers that include decimals (for example `3.14`, `-0.5`).
274-
- **Boolean** A true or false value.
275-
- **Object** A structured object that can include multiple sub-attributes.
276-
- **Date** Calendar date without time. Use ISO 8601 `YYYY-MM-DD` (for example `2025-10-01`).
277-
- **DateTime** Date and time with timezone. Use ISO 8601 `YYYY-MM-DDTHH:mm:ssZ` or offset `YYYY-MM-DDTHH:mm:ss±HH:mm` (for example `2025-10-01T14:30:00+05:30`).
278-
- **Epoch** Unix time since 1970-01-01 UTC. Use seconds or milliseconds as integers (for example `1730399400` or `1730399400000`).
270+
<table>
271+
<tbody>
272+
<tr>
273+
<td><b>Text</b></td>
274+
<td>A plain string value.</td>
275+
</tr>
276+
<tr>
277+
<td><b>Options</b></td>
278+
<td>A pre-defined list of selectable values.</td>
279+
</tr>
280+
<tr>
281+
<td><b>Integer</b></td>
282+
<td>Whole numbers (for example <code>1</code>, <code>42</code>, <code>-7</code>).</td>
283+
</tr>
284+
<tr>
285+
<td><b>Decimal</b></td>
286+
<td>Numbers that include decimals (for example <code>3.14</code>, <code>-0.5</code>).</td>
287+
</tr>
288+
<tr>
289+
<td><b>Boolean</b></td>
290+
<td>A true or false value.</td>
291+
</tr>
292+
<tr>
293+
<td><b>Object</b></td>
294+
<td>A structured object that can include multiple sub-attributes.</td>
295+
</tr>
296+
<tr>
297+
<td><b>Date</b></td>
298+
<td>Calendar date without time. Use ISO 8601 <code>YYYY-MM-DD</code> (for example <code>2025-10-01</code>).</td>
299+
</tr>
300+
<tr>
301+
<td><b>DateTime</b></td>
302+
<td>Date and time with timezone. Use ISO 8601 <code>YYYY-MM-DDTHH:mm:ssZ</code> or offset <code>YYYY-MM-DDTHH:mm:ss±HH:mm</code> (for example <code>2025-10-01T14:30:00+05:30</code>).</td>
303+
</tr>
304+
<tr>
305+
<td><b>Epoch</b></td>
306+
<td>Unix time since 1970-01-01 UTC. Use seconds or milliseconds as integers (for example <code>1730399400</code> or <code>1730399400000</code>).</td>
307+
</tr>
308+
</tbody>
309+
</table>
279310

280311
Options Data Type
281312

0 commit comments

Comments
 (0)