pub fn dot_notation_to_schema_pointer(path: &str) -> StringExpand description
Convert dotted path to JSON Schema pointer format
This is used for schema paths where properties are nested under /properties/
Examples:
- “user.profile.name” -> “#/user/properties/profile/properties/name”
- “header.form_number” -> “#/header/properties/form_number”
- “#/already/formatted” -> “#/already/formatted” (no change)