# space.bunniesin.log.entry

> Published by [bunniesin.space](https://lexicon.garden/identity/did:plc:gijpvbkdbr56kazbdjhfvb3d)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:gijpvbkdbr56kazbdjhfvb3d/space.bunniesin.log.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:gijpvbkdbr56kazbdjhfvb3d/space.bunniesin.log.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:gijpvbkdbr56kazbdjhfvb3d/space.bunniesin.log.entry/examples)

## Definitions

### `space.bunniesin.log.entry`

**Type**: `record`

Simple microblogging lexicon

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `string` | Yes | Primary content of a log's entry |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this log was created |
| `blueskyPost` | `ref` → `com.atproto.repo.strongRef` | No | Reference to the cross-posted version of the log, unavailable if content exceeds the lexicon's maximum length |

## Raw Schema

```json
{
  "id": "space.bunniesin.log.entry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "content",
          "createdAt"
        ],
        "properties": {
          "content": {
            "type": "string",
            "description": "Primary content of a log's entry"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this log was created"
          },
          "blueskyPost": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to the cross-posted version of the log, unavailable if content exceeds the lexicon's maximum length"
          }
        }
      },
      "description": "Simple microblogging lexicon"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
