# site.mochott.defs

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Description

Shared type definitions for the mochott blog platform.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.defs/examples)

## Definitions

### `site.mochott.defs#blobMetadata`

**Type**: `object`

Metadata for a blob reference with an optional filename.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | Original filename of the blob. |
| `blobref` | `blob` | Yes | Reference to the stored blob. |

## Raw Schema

```json
{
  "id": "site.mochott.defs",
  "defs": {
    "blobMetadata": {
      "type": "object",
      "required": [
        "blobref"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 500,
          "description": "Original filename of the blob."
        },
        "blobref": {
          "type": "blob",
          "description": "Reference to the stored blob."
        }
      },
      "description": "Metadata for a blob reference with an optional filename."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Shared type definitions for the mochott blog platform."
}
```
