- What draft version does it output?
- Draft 2020-12 by default (the current version). Toggle to Draft-07 for compatibility with older validators that haven't upgraded.
- Does it detect types correctly?
- Usually — primitives, objects, and arrays infer cleanly. Mixed-type arrays (sometimes strings, sometimes numbers) become anyOf. Null values make fields nullable.
- Are required fields detected?
- Yes — fields present in every sample record are required; fields missing from any record become optional. Small sample sizes can mislead — verify the output.
- What about format hints?
- Heuristics for common formats: ISO 8601 dates get `format: date-time`, email-shaped strings get `format: email`. Review and refine manually.