net.anisota.lab.inkblot

anisota.net

Documentation

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.

main 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.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When the inkblot was saved

image string Optional

A rendered PNG of the blot as a data URL, for display

maxLength: 200000 bytes
palette string Required

Ink palette id (classic, sepia, indigo, blood, moss)

maxLength: 64 bytes
params unknown Optional

The generation parameters (complexity, blobiness, spread, spatter, radial)

seed integer Required

The deterministic RNG seed that reproduces the blot

View raw schema
{
  "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."
}

Lexicon Garden

@