generateUuid
Generate timestamp-based UUID v7 identifiers for unique, chronologically sortable IDs. Specify count
to create multiple UUIDs with no input parameters needed.
Instructions
Generate one or more UUID v7s (timestamp-based). Specify count
to get multiple.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | How many UUID v7 strings to generate (defaults to 1) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"count": {
"description": "How many UUID v7 strings to generate (defaults to 1)",
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}