pub fn pointer_to_dot_notation(path: &str) -> StringExpand description
Convert JSON pointer or schema pointer to dotted notation
This converts various pointer formats back to dotted notation:
Examples:
- “#/user/properties/profile/properties/name” -> “user.properties.profile.properties.name”
- “/user/name” -> “user.name”
- “person.name” -> “person.name” (already dotted, no change)