# VocabRow

> Kinbarrow modding reference — content tree `45d0fe274f851548`, version `0.2.0+main.c05ef2b`.

One row of an open vocabulary registry: damage kinds and spell schools are CONTENT, not code — `tables/damage_kinds.srd.ron` and `tables/schools.srd.ron` are the authorities, every reference resolves against them at load, and a mod's new kind or school is one row. The engine branches only on the well-known ids below (the COIN_NAME idiom — named consts, never free-typed strings).

**Note on syntax:** these files are RON, not JSON. The shapes below are exact,
but punctuation follows RON — read a real `data/*.ron` file alongside.

## Fields

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | `string` | required |  |
| `name` | `string` | required |  |
| `note` | `string` | required | Free prose gloss on the row (SRD flavor); the engine never branches on it. |

