# lol.skittr.skitpic.entry

> Published by [skittr.bsky.social](https://lexicon.garden/identity/did:plc:d5joublf46wn5cnhbhdemfq3)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:d5joublf46wn5cnhbhdemfq3/lol.skittr.skitpic.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:d5joublf46wn5cnhbhdemfq3/lol.skittr.skitpic.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:d5joublf46wn5cnhbhdemfq3/lol.skittr.skitpic.entry/examples)

## Definitions

### `lol.skittr.skitpic.entry`

**Type**: `record`

Skitpic entry

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | Yes |  |
| `image` | `blob` | Yes |  |
| `createdAt` | `string` (datetime) | No |  |
| `sourceUrl` | `string` | No |  |

## Raw Schema

```json
{
  "id": "lol.skittr.skitpic.entry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "image",
          "alt"
        ],
        "properties": {
          "alt": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg"
            ],
            "maxSize": 1000000
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "sourceUrl": {
            "type": "string",
            "maxLength": 3000,
            "maxGraphemes": 300
          }
        }
      },
      "description": "Skitpic entry"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
