> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mirurobotics.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload collections

export const PublisherBadge = ({size = "md"}) => {
  return <Tooltip tip="Members with the publisher role can execute this action." cta="Workspace roles" href="/admin/users/access-control">
            <Badge icon="git-merge" color="green" size={size}>publisher</Badge>
        </Tooltip>;
};

export const EditableBadge = ({size = "sm"}) => {
  return <Tooltip tip="Property can be directly modified">
            <Badge icon="pencil" color="blue" size={size}>editable</Badge>
        </Tooltip>;
};

export const ImmutableBadge = ({size = "sm"}) => {
  return <Tooltip tip="Property cannot be modified">
            <Badge icon="lock" color="gray" size={size}>immutable</Badge>
        </Tooltip>;
};

An **upload collection** is a named grouping of [upload rules](/data-uploads/primitives/upload-rules) and their [uploads](/data-uploads/primitives/uploads).

Every upload and upload rule belongs to exactly one collection. Collections give the data your fleet records a stable, human-readable identity (`Robot Logs`, `Crash Reports`) that survives across the rules and uploads that come and go beneath it.

## Properties

<ParamField path="name" type="string">
  <EditableBadge />

  A human-readable display name that can contain most characters, such as spaces,
  special characters, and punctuation.

  Examples: `Robot Logs`, `Crash Reports`, `Camera Footage`
</ParamField>

<ParamField path="slug" type="string">
  <ImmutableBadge />

  A unique, code-friendly identifier for an upload collection.

  Slugs are immutable and must satisfy the following constraints:

  * Contains only lowercase letters, digits, and hyphens (`-`)
  * Start and end with a lowercase letter or digit
  * Contain between 1 and 48 characters

  Slugs are primarily used in code to reference upload collections in a human-readable
  format. For instance, upload rules are annotated with their collection's `slug` to
  associate them with their proper upload collection.

  Examples: `robot-logs`, `crash-reports`, `camera-footage`
</ParamField>

## Create an upload collection  <PublisherBadge />

Upload collections are created automatically when you create an upload rule. Visit the [define releases](/data-uploads/define-upload-rules) page to learn how to create upload collections and upload rules.
