addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / formatting / additionalProperties
Added value: +false
addedInput schema / properties / formatting / description
Added value: +"Optional output formatting applied to every generated UUID."
addedInput schema / properties / formatting / properties / braces / default
Added value: +false
addedInput schema / properties / formatting / properties / braces / description
Added value: +"Wrap each UUID in curly braces, e.g. {550e8400-...}."
addedInput schema / properties / formatting / properties / hyphens / default
Added value: +true
addedInput schema / properties / formatting / properties / hyphens / description
Added value: +"Keep the standard 8-4-4-4-12 hyphens; set false to remove them."
addedInput schema / properties / formatting / properties / uppercase / default
Added value: +false
addedInput schema / properties / formatting / properties / uppercase / description
Added value: +"Emit hex digits in uppercase instead of lowercase."
removedInput schema / properties / formatting / required
Removed value: -[
- "hyphens",
- "uppercase",
- "braces"
-]
addedInput schema / properties / quantity / default
Added value: +1
addedInput schema / properties / quantity / description
Added value: +"How many UUIDs to generate, from 1 to 100."
addedInput schema / properties / quantity / maximum
Added value: +100
addedInput schema / properties / quantity / minimum
Added value: +1
addedInput schema / properties / version / default
Added value: +4
addedInput schema / properties / version / description
Added value: +"UUID version. 4 = fully random; 1 = time-based (embeds a timestamp and a random node). Only 1 and 4 are supported."
addedInput schema / properties / version / enum
Added value: +[
+ 1,
+ 4
+]
changedInput schema / required
Previous value: -[
- "version",
- "quantity",
- "formatting"
-]New value: +[]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "description": "The generation payload.",
+ "properties": {
+ "formattedUuids": {
+ "description": "The UUIDs with the requested formatting (hyphens, case, braces) applied.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "quantity": {
+ "description": "Number of UUIDs returned.",
+ "type": "integer"
+ },
+ "rawUuids": {
+ "description": "Canonical lowercase, hyphenated UUID strings.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "version": {
+ "description": "The UUID version generated (1 or 4).",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "success": {
+ "description": "Whether generation succeeded.",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+}