Create a typed LOG datastore
rootr_create_log_storeCreate a typed log store to define fields with various data types and relations, enabling structured data entry and querying.
Instructions
Create a new typed LOG store (a structured, queryable table-like node) in a Rootr (루터) workspace. Each field has a name/type; type is one of string|int|float|bool|datetime|json|enum|level|relation. Relation fields additionally need target (a node id to relate to) and optional many/relation flags. Use rootr_add_log_entries afterward to insert rows, and rootr_query_log_entries / rootr_log_stats to read them back.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the LOG store | |
| fields | Yes | Field definitions: [{name, type, ...}]. type=string|int|float|bool|datetime|json|enum|level|relation. relation fields add target (node id), many?, relation?. | |
| parentId | No | Parent node id to nest the LOG store under | |
| workspace | No | Workspace id; defaults to ROOTR_WORKSPACE/config if omitted |