transformer.mock.schema
transformer.mock.rows
Limit is 10000.
formatter.output

How to Create Your Mock Data Template

Static values: Use plain values for any field."country": "USA"
Blank values: Use {{blank}} for a blank field (empty string in output)."email": "{{blank}}"
Numbers & booleans: Use numbers or true/false directly."price": 99.99, "isActive": true
Dynamic values: Use {{type}} for auto-generated data."name": "{{name}}", "email": "{{email}}", "date": "{{date}}"
Limit field size: Use {{type:length}} to trim the value."shortName": "{{name:8}}", "shortWord": "{{word:5}}"
Nested objects & arrays: Use any combination, including faker and static values."profile": {"bio": "{{sentence:20}}"}, "tags": ["alpha", "{{word}}"]
Supported dynamic types:
nameemailphoneaddresscitycountrycompanyurluuididdateamountpricetotalboolbooleanwordsentenceblank
Examples:
"username": "{{name:8}}" will generate a name trimmed to 8 characters.
"email": "{{blank}}" will generate a blank email field.
Note: Maximum number of records is 10000.