# coop.hypha.spores.content.text

> Published by [hypha.coop](https://lexicon.garden/identity/did:plc:rxduhzsfgfpl2glle7vagcwl)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.content.text)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.content.text/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.content.text/examples)

## Definitions

### `coop.hypha.spores.content.text`

**Type**: `record`

Custom content block for spores.garden sites

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `title` | `string` | No | Block title |
| `format` | `string` | No | Content format |
| `content` | `string` | Yes | Block content |
| `createdAt` | `string` (datetime) | Yes | Creation timestamp |

## Raw Schema

```json
{
  "id": "coop.hypha.spores.content.text",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "createdAt"
        ],
        "properties": {
          "title": {
            "type": "string",
            "maxLength": 2000,
            "description": "Block title",
            "maxGraphemes": 200
          },
          "format": {
            "type": "string",
            "default": "markdown",
            "description": "Content format",
            "knownValues": [
              "markdown",
              "html",
              "text"
            ]
          },
          "content": {
            "type": "string",
            "maxLength": 500000,
            "description": "Block content",
            "maxGraphemes": 50000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Creation timestamp"
          }
        }
      },
      "description": "Custom content block for spores.garden sites"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
