- Does it generate OpenAPI 3.0 or 3.1 schemas?
- 3.1 by default (aligned with JSON Schema 2020-12). Toggle to 3.0 for tools that haven't added 3.1 support yet — most popular tooling (Swagger UI, Stoplight) now supports 3.1.
- Can I generate from multiple samples?
- Yes — provide multiple JSON samples representing different responses (success, error, empty list) and the generator unions the schemas, marking fields as optional if they don't appear in all samples.
- Does it infer string formats?
- Yes — strings matching ISO 8601 dates are typed as 'format: date-time', UUID patterns as 'format: uuid', and email patterns as 'format: email'. Custom format detection can be added via regex rules.