Genesyscloud_user schema change in provider v1.35.0 breaks existing configs

Upgraded the Genesys Cloud Terraform provider to 1.35.0 and the apply is failing on genesyscloud_user. The logs show Error: Invalid attribute name. Looks like the routing_skills block structure changed but the docs haven’t caught up. Here is the causing the crash:

resource "genesyscloud_user" "test_user" {
 routing_skills {
 skill_id = "abc-123"
 level = 1
 }
}

Anyone have the correct syntax for the new schema?