computer.aesthetic.kidlisp

aesthetic.computer

Documentation

A KidLisp code snippet from Aesthetic Computer

main record

A KidLisp code snippet from Aesthetic Computer

Record Key tid Timestamp-based ID

Properties

code string Required

Short alphanumeric code for easy lookup

maxLength: 10 bytes
ref string Required

MongoDB ObjectId reference for bidirectional sync

maxLength: 24 bytes
source string Required

The KidLisp source code

maxLength: 50000 bytes
when string datetime Required

Creation timestamp (ISO 8601)

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "source",
      "code",
      "when",
      "ref"
    ],
    "properties": {
      "ref": {
        "type": "string",
        "maxLength": 24,
        "description": "MongoDB ObjectId reference for bidirectional sync"
      },
      "code": {
        "type": "string",
        "maxLength": 10,
        "description": "Short alphanumeric code for easy lookup"
      },
      "when": {
        "type": "string",
        "format": "datetime",
        "description": "Creation timestamp (ISO 8601)"
      },
      "source": {
        "type": "string",
        "maxLength": 50000,
        "description": "The KidLisp source code"
      }
    }
  },
  "description": "A KidLisp code snippet from Aesthetic Computer"
}

Lexicon Garden

@