Bump a JsonFabrica sequence
jsonfabrica_bump_sequenceAdvance a named sequence by its configured step, permanently updating its current value and returning the updated record for use in synthetic data generation.
Instructions
Calls POST /v1/sequences/{name}/bump. Atomically advances the sequence by its configured step (a permanent, irreversible change to the stored currentValue) and returns the updated record — this is the same advance a template's createSeq()/getSeq() calls trigger during generation. Use jsonfabrica_update_sequence instead if you need to set an explicit currentValue/step rather than advancing by the existing step.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Exact name of the sequence to bump (advance by its configured step). Required. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Sequence name. | |
| step | No | Increment applied per bump (ignored for "uuid"). | |
| type | Yes | Value kind produced on each bump. | |
| start | No | Initial value the sequence was created with. | |
| tenantId | Yes | Owning tenant id. | |
| createdAt | Yes | ISO-8601 creation timestamp. | |
| updatedAt | Yes | ISO-8601 last-update timestamp. | |
| currentValue | Yes | Current stored counter value (unused by "uuid" sequences). |