# at.dropb.file

> Published by [dropb.at](https://lexicon.garden/identity/did:plc:jbaidutg6wkd5ckqqwlhrnej)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.dropb.file)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.dropb.file/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jbaidutg6wkd5ckqqwlhrnej/at.dropb.file/examples)

## Definitions

### `at.dropb.file`

**Type**: `record`

A file

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `blob` | `blob` | Yes |  |
| `name` | `string` | No |  |
| `createdAt` | `string` (datetime) | No |  |
| `thumbnail` | `blob` | No |  |
| `updatedAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "at.dropb.file",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "blob"
        ],
        "properties": {
          "blob": {
            "type": "blob",
            "accept": [
              "*/*"
            ]
          },
          "name": {
            "type": "string",
            "maxLength": 255
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "thumbnail": {
            "type": "blob",
            "accept": [
              "image/*"
            ],
            "maxSize": 102400
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A file"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
