Entries
Overview
An entry represents a single index or code number inside a series. Essentially, its a mapping of a UUID to a code number.
Models
An Entry
contains the following fields:
Property | Type | Description |
---|---|---|
id | uuid | UUIDv1 value that uniquely identifies the entry. |
series_id | uuid | ID of the series this entry belongs to. |
code | string | The code generated for this entry. |
meta | map<string, string> | Any additional meta data provided during creation. |
previous_id | uuid | ID of the last entry created in the series, if any. |
sigs | array of string | Any JSON Web Signatures added during processing. |
created_at | date-time | Creation timestamp. |
updated_at | date-time | Update timestamp. |
An EntryCollection
is defined as follows:
Property | Type | Description |
---|---|---|
list | array of Entry | List of Entry models for this result set. |
limit | integer | Maximum number of entries provided in this result set. |
cursor | string | The cursor required to get the next page of results. |