(k: &str)
| 382 | } |
| 383 | |
| 384 | fn is_id_key(k: &str) -> bool { |
| 385 | matches!(k, "id" | "node_id" | "qualified_name" | "signature") || k.ends_with("_id") |
| 386 | } |
| 387 | |
| 388 | /// True for keys that carry a UNIX epoch timestamp worth humanizing |
| 389 | /// (e.g. `created_at`, `last_sync_time`, `expires_at`). |