Get a JsonFabrica sequence
jsonfabrica_get_sequenceRetrieve a named sequence record without advancing it. Use to inspect the current sequence value.
Instructions
Calls GET /v1/sequences/{name}. Returns the sequence record for a known name; use jsonfabrica_list_sequences instead if you need to discover names. Read-only — does not advance the sequence (use jsonfabrica_bump_sequence for that).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Exact name of the sequence to fetch, as given at creation. 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). |