Hello, i was wondering if it’s possible in tapir to mark query parameters that accept lists to be required?
I Have a query on my endpoint that looks like:
query[List[String]]("metric")
which works, but the query parameter is not marked as required in the openapi spec…
- name: metric
in: query
required: false
schema:
type: array
items:
type: string
Is this intentional? Is there a way to mark this as required without manipulating the openapi object directly?
Thanks,
ben