-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Labels
Description
Hi,
Is there any special reason why the keyname of extension is lowered ?
// Add adds a value to these extensions
func (e Extensions) Add(key string, value interface{}) {
realKey := strings.ToLower(key)
e[realKey] = value
}
I checked OAS2 Specification Extensions and there is no reference about lowercase.
Thanks,
Bogdan
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
fredbi commentedon Mar 13, 2025
@ubogdan I believe that at the time, we wanted some kind of canonicalization for extensions (similar to headers).