TypeDescriptionTypeScript EquivalentNotes
anyCan store any type of dataunknownUse sparingly; Lawme attempts to infer or coerce to a specific type when possible
booleanTrue or false valuebooleanEquivalent to JavaScript boolean
stringText datastringEquivalent to JavaScript string
numberNumeric valuenumberEquivalent to JavaScript number
dateDate valuestringStored as ISO-8601 date string
timeTime valuestringStored as ISO-8601 time string
datetimeDate and time valuestringStored as ISO-8601 datetime string
chat-messageRepresentation of a chat message for LLMs{ type: string; message: string; name?: string; function_call?: string }Includes metadata such as sender information
objectComplex data structureRecord<string, unknown>Similar to JavaScript object; may sometimes be used interchangeably with any or represent an array
control-flow-excludedValue excluded from control flowundefinedUsed in specific control flow scenarios
vectorNumeric vectornumber[]Commonly used for embeddings in machine learning contexts
imageImage data{ mediaType: string; data: UInt8Array; }Includes media type information
audioAudio data{ mediaType: string; data: UInt8Array; }Includes media type information
binaryRaw binary dataUInt8ArrayUsed for handling binary file contents or other raw data