Model
A “Series” object contains the following fields:
A series object may look like:
TEST101001-2022.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A series is in effect a placeholder for a counter with number formatting details to be able to generate a code.
| Property | Type | Description |
|---|---|---|
| id | uuid | Unique identifier in UUIDv4 format. |
| name | string | Human name to help identify the series. |
| prefix | string | Text to place before a generated code. |
| padding | integer | Width of the code’s number, with zero padding. |
| suffix | string | Text added after the series’ number. |
| last_index | integer | The series’ last assigned number, zero, or the defined first index if no entries have been added yet. |
| last_entry_id | uuid | ID of the entry last inserted for this series. |
| sigs | array of string | If the series was created with any signatures, they’ll be here. |
| created_at | date-time | Timestamp of the series’ creation. |
| updated_at | data-time | Timestamp of the last update. |
{
"id": "835bb1ca-e7c4-41e6-9e88-464de54cc08e",
"name": "Testing",
"prefix": "TEST1",
"padding": 5,
"suffix": "-2022",
"last_index": 1001,
"last_entry_id": "78b53c40-9b40-11ec-9298-665181255c0a",
"created_at": "2022-03-03T22:18:50Z",
"updated_at": "2022-03-03T22:18:50Z"
}
TEST101001-2022.
Was this page helpful?