net.anisota.lab.carving

anisota.net

Documentation

A relief woodblock carving made in the Anisota Lab's Carving studio and saved to the owner's library. Each record stores the gouge paths that carved the block (a compact serialization so the carving can be reopened and edited), the chosen ink and paper colours, whether vertical mirror/symmetry was on, and an optional printed-result PNG thumbnail for display and re-export.

main record

A relief woodblock carving made in the Anisota Lab's Carving studio and saved to the owner's library. Each record stores the gouge paths that carved the block (a compact serialization so the carving can be reopened and edited), the chosen ink and paper colours, whether vertical mirror/symmetry was on, and an optional printed-result PNG thumbnail for display and re-export.

Record Key any Any valid record key

Properties

createdAt string datetime Required

When the carving was saved

image string Optional

A PNG data URL thumbnail of the printed result

maxLength: 200000 bytes
inkColor string Required

The ink colour the block prints in

maxLength: 64 bytes
mirror boolean Optional

Whether vertical mirror/symmetry was active while carving

name string Required

Display name for the carving

maxLength: 800 bytesmaxGraphemes: 100 graphemes
paperColor string Required

The paper colour the print sits on

maxLength: 64 bytes
strokes array of unknown Required

The gouge paths. Each is an object: { tool, width, points (x and y interleaved, scaled 0..1000), erase }.

maxLength: 4096 items
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "strokes",
      "inkColor",
      "paperColor",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 800,
        "description": "Display name for the carving",
        "maxGraphemes": 100
      },
      "image": {
        "type": "string",
        "maxLength": 200000,
        "description": "A PNG data URL thumbnail of the printed result"
      },
      "mirror": {
        "type": "boolean",
        "description": "Whether vertical mirror/symmetry was active while carving"
      },
      "strokes": {
        "type": "array",
        "items": {
          "type": "unknown"
        },
        "maxLength": 4096,
        "description": "The gouge paths. Each is an object: { tool, width, points (x and y interleaved, scaled 0..1000), erase }."
      },
      "inkColor": {
        "type": "string",
        "maxLength": 64,
        "description": "The ink colour the block prints in"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the carving was saved"
      },
      "paperColor": {
        "type": "string",
        "maxLength": 64,
        "description": "The paper colour the print sits on"
      }
    }
  },
  "description": "A relief woodblock carving made in the Anisota Lab's Carving studio and saved to the owner's library. Each record stores the gouge paths that carved the block (a compact serialization so the carving can be reopened and edited), the chosen ink and paper colours, whether vertical mirror/symmetry was on, and an optional printed-result PNG thumbnail for display and re-export."
}

Lexicon Garden

@