# net.anisota.lab.inkblot

> Published by [anisota.net](https://lexicon.garden/identity/did:plc:lcieujcfkv4jx7gehsvok3pr)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:lcieujcfkv4jx7gehsvok3pr/net.anisota.lab.inkblot)
- [Documentation](https://lexicon.garden/lexicon/did:plc:lcieujcfkv4jx7gehsvok3pr/net.anisota.lab.inkblot/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:lcieujcfkv4jx7gehsvok3pr/net.anisota.lab.inkblot/examples)

## Definitions

### `net.anisota.lab.inkblot`

**Type**: `record`

A symmetric Rorschach-style inkblot crafted in the Anisota Lab's Social Inkblot Test and saved to the owner's library. The blot is fully reproducible from its integer 'seed' and its generation 'params'; 'palette' names the ink colour. A rendered PNG data URL is stored in 'image' so the blot can be shown anywhere (including by other people viewing the social gallery) without re-running the generator. Inkblots carry no user-supplied name: the record's TID rkey is its identifier and display name everywhere it is shown.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `seed` | `integer` | Yes | The deterministic RNG seed that reproduces the blot |
| `image` | `string` | No | A rendered PNG of the blot as a data URL, for display |
| `params` | `unknown` | No | The generation parameters (complexity, blobiness, spread, spatter, radial) |
| `palette` | `string` | Yes | Ink palette id (classic, sepia, indigo, blood, moss) |
| `createdAt` | `string` (datetime) | Yes | When the inkblot was saved |

## Raw Schema

```json
{
  "id": "net.anisota.lab.inkblot",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "seed",
          "palette",
          "createdAt"
        ],
        "properties": {
          "seed": {
            "type": "integer",
            "description": "The deterministic RNG seed that reproduces the blot"
          },
          "image": {
            "type": "string",
            "maxLength": 200000,
            "description": "A rendered PNG of the blot as a data URL, for display"
          },
          "params": {
            "type": "unknown",
            "description": "The generation parameters (complexity, blobiness, spread, spatter, radial)"
          },
          "palette": {
            "type": "string",
            "maxLength": 64,
            "description": "Ink palette id (classic, sepia, indigo, blood, moss)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the inkblot was saved"
          }
        }
      },
      "description": "A symmetric Rorschach-style inkblot crafted in the Anisota Lab's Social Inkblot Test and saved to the owner's library. The blot is fully reproducible from its integer 'seed' and its generation 'params'; 'palette' names the ink colour. A rendered PNG data URL is stored in 'image' so the blot can be shown anywhere (including by other people viewing the social gallery) without re-running the generator. Inkblots carry no user-supplied name: the record's TID rkey is its identifier and display name everywhere it is shown."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
