net.anisota.lab.inkblot
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "net.anisota.lab.inkblot",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"seed",
11
11
"palette",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"seed": {
16
16
"type": "integer",
17
17
"description": "The deterministic RNG seed that reproduces the blot"
18
18
},
19
19
"image": {
20
20
"type": "string",
21
21
"maxLength": 200000,
22
-
"description": "A rendered PNG of the blot as a data URL, for display"
22
+
"description": "A rendered still of the blot as an image data URL (PNG, or WebP when a denser blot needs the more compact encoding to stay sharp within the size cap), for display"
23
23
},
24
24
"params": {
25
25
"type": "unknown",
26
26
"description": "The generation parameters (complexity, blobiness, spread, spatter, radial)"
27
27
},
28
28
"palette": {
29
29
"type": "string",
30
30
"maxLength": 64,
31
31
"description": "Ink palette id (classic, sepia, indigo, blood, moss)"
32
32
},
33
33
"createdAt": {
34
34
"type": "string",
35
35
"format": "datetime",
36
36
"description": "When the inkblot was saved"
37
37
}
38
38
}
39
39
},
40
40
"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."
41
41
}
42
42
},
43
43
"$type": "com.atproto.lexicon.schema",
44
44
"lexicon": 1
45
45
}