# cloud.substratum.filesystem.driveEntry

> Published by [official.fileorbit.cloud](https://lexicon.garden/identity/did:plc:s6kq5tsir7nbyrciloncz5b3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.filesystem.driveEntry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.filesystem.driveEntry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:s6kq5tsir7nbyrciloncz5b3/cloud.substratum.filesystem.driveEntry/examples)

## Definitions

### `cloud.substratum.filesystem.driveEntry`

**Type**: `object`

A filesystem entry in a Substratum Drive.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `path` | `string` | Yes |  |
| `driveId` | `string` | Yes | The UUID of the drive |
| `assetCid` | `string` | No |  |
| `ownerDid` | `string` (did) | Yes |  |
| `receiptCid` | `string` | No |  |
| `isDirectory` | `boolean` | Yes |  |
| `metadataCid` | `string` | No |  |

## Raw Schema

```json
{
  "id": "cloud.substratum.filesystem.driveEntry",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "driveId",
        "path",
        "isDirectory",
        "ownerDid"
      ],
      "properties": {
        "path": {
          "type": "string"
        },
        "driveId": {
          "type": "string",
          "description": "The UUID of the drive"
        },
        "assetCid": {
          "type": "string"
        },
        "ownerDid": {
          "type": "string",
          "format": "did"
        },
        "receiptCid": {
          "type": "string"
        },
        "isDirectory": {
          "type": "boolean"
        },
        "metadataCid": {
          "type": "string"
        }
      },
      "description": "A filesystem entry in a Substratum Drive."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
