getRawOrNull

fun getRawOrNull(name: String): Any?

Same as getRaw but returns null when name is not in the schema instead of throwing. NOTE: a field that exists in the schema with a literal null value is indistinguishable from a missing field through this accessor — the underlying Map collapses both cases. Prefer the typed *OrNull accessors (getUint8OrNull, etc.) when this distinction matters; those use name in fields and unambiguously mean "absent."