Represents a stored item with metadata.
Item(
self,
*,
value: dict[str, Any],
key: str,
namespace: tuple[str, ...],
created_at: datetime,
updated_at: datetime
)| Name | Type | Description |
|---|---|---|
value* | dict[str, Any] | The stored data as a dictionary. Keys are filterable. |
key* | str | Unique identifier within the namespace. |
namespace* | tuple[str, ...] | Hierarchical path defining the collection in which this document resides.
Represented as a tuple of strings, allowing for nested categorization.
For example: |
created_at* | datetime | Timestamp of item creation. |
updated_at* | datetime | Timestamp of last update. |