Skip to content

Data Import

Rebase supports importing data from:

  • CSV files
  • JSON files
  • Excel (.xlsx) files

The import wizard handles column mapping, data type coercion, and validation.

  1. Open a collection in the admin panel
  2. Click the Import button in the toolbar
  3. Select or drag-drop your file
  4. Map file columns to collection properties
  5. Preview the data and resolve any validation errors
  6. Click Import to save all entities

Data import interface

Enable/disable import per collection:

const productsCollection: EntityCollection = {
slug: "products",
// Import is enabled by default
// To disable:
// importable: false
properties: { /* ... */ }
};