### OpenApi Schema ```json "MyDictionary": { "type": "object", "additionalProperties": { "type": "string" } } ``` ### Generated TypeScript ```typescript /** * * @export * @interface ProviderIdDictionary */ export interface ProviderIdDictionary extends null<String, string> { [key: string]: string; } ```