# blue.lance.camo

> Published by [lance.blue](https://lexicon.garden/identity/did:plc:a2j2g42ai6v65qpbvb6hmubi)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:a2j2g42ai6v65qpbvb6hmubi/blue.lance.camo)
- [Documentation](https://lexicon.garden/lexicon/did:plc:a2j2g42ai6v65qpbvb6hmubi/blue.lance.camo/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:a2j2g42ai6v65qpbvb6hmubi/blue.lance.camo/examples)

## Definitions

### `blue.lance.camo`

**Type**: `record`

Record containing a camo pattern for a lance.blue player

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name for the camo. |
| `image` | `blob` | Yes | The camo image file (intended to be 84x72). |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when this camo was originally created. |

## Raw Schema

```json
{
  "id": "blue.lance.camo",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "image",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 640,
            "minLength": 1,
            "description": "Display name for the camo.",
            "maxGraphemes": 64
          },
          "image": {
            "type": "blob",
            "accept": [
              "image/png"
            ],
            "maxSize": 1000000,
            "description": "The camo image file (intended to be 84x72)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when this camo was originally created."
          }
        }
      },
      "description": "Record containing a camo pattern for a lance.blue player"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
