Skip to main content

KeyValueStoreRecord

Model for a key-value store record.

Hierarchy

Index

Properties

content_type

content_type: Annotated[str, Field(alias='contentType')]

The MIME type of the record.

Describe the format and type of data stored in the record, following the MIME specification.

key

key: Annotated[str, Field(alias='key')]

The key of the record.

A unique identifier for the record in the key-value store.

model_config

model_config: Undefined

size

size: Annotated[int | None, Field(alias='size', default=None)]

The size of the record in bytes.

value

The value of the record.