convert_unix_to_datetime
Transform Unix timestamps into readable date/time formats, including timezone adjustments and ISO compliance, for clear time representation.
Instructions
Convert unixtime to datetime time (e.g. 1746627290 to 2025-01-01 01:01:01)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isISO | No | ||
timezone | No | ||
unixtime | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"isISO": {
"type": "boolean"
},
"timezone": {
"type": "string"
},
"unixtime": {
"type": "number"
}
},
"required": [
"unixtime"
],
"type": "object"
}