Paste a sample JSON object, and the tool generates a matching Python TypedDict class.
TypedDict describes dictionary shapes exactly as JSON decodes them, so it matches json.loads output without conversion.
Keys like 'first-name' use the functional TypedDict(...) syntax so any string key is supported.
Treat it as a starting point — verify Optional fields and numeric types, since they are inferred from a single sample.