measurement_type
that determines what data it stores and how you create it.
Measurement types
Common fields
Every measurement — regardless of type — accepts these optional metadata fields:Time series
Time series is the default measurement type. It carries high-resolution cycling data and auto-generates step and cycle summaries on upload. The time series DataFrame must follow the data format — recognized columns includeTime [s], Voltage [V], Current [A], Step count, and
Cycle count.
create() returns a MeasurementBundle containing the measurement record plus
metadata like steps_created. See uploading data for the
full upload workflow — protocol and test-setup metadata, on-machine validation,
and idempotent create_or_get — and reading data to fetch a
measurement back with its full time series, steps, and cycles.
Properties
Properties measurements store key-value pairs directly in the record — no file upload. Use them for manual or one-off measurements like thickness, weight, or internal resistance. Properties-specific fields:protocol, test_setup,
start_time, notes) alongside the properties.
create_properties returns a Measurement directly, not a MeasurementBundle.
Properties measurements have no steps or file uploads, so the bundle wrapper
isn’t needed.File
File measurements attach files (images, PDFs, numpy arrays, or any other file type) to a measurement record. Useful for microscopy images, SEM photos, X-ray CT scans, or post-mortem analysis documents. File-specific fields:File measurements use a signed URL upload flow internally. The client handles
the multi-step process (initiate, upload, confirm) automatically.
Previewing files in Studio
When you open a file measurement in Studio, attached files are shown as a gallery beneath the measurement details:- Images (
.png,.jpg,.webp, etc.) render as inline thumbnails. Click a thumbnail to open it in a full-screen lightbox. - Non-image files (PDFs, numpy arrays, CSVs, etc.) appear as cards with a download button.
Next steps
Uploading data
End-to-end upload workflow: specs, instances, and measurements.
Reading data
List, filter, and retrieve measurements with their full data.