Retrieves detailed metadata for a single OpenNeuro dataset.
Value
A tibble with one row containing:
- id
Dataset identifier
- name
Dataset title
- created
Timestamp when dataset was created (POSIXct)
- public
Whether the dataset is publicly accessible (logical)
- latest_snapshot
Tag of the most recent snapshot (if any)
See also
on_search() to find datasets, on_snapshots() for version history
Examples
if (FALSE) { # \dontrun{
# Get metadata for a specific dataset
ds <- on_dataset("ds000001")
print(ds)
# Access fields
ds$name
ds$created
} # }