string
Randomly generates a string value.
Inputs
patternoptionalThe regular expression that generated strings must match. Defaults to .{0,64}.
Examples
Less than 64 characters:
{
"type": "string"
}Between 5 and 10 characters:
{
"type": "string",
"pattern": ".{5,10}"
}UUID:
{
"type": "string",
"pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$"
}