Yes, you can - you can add metadata to your schemas as follows:
{:parameters
{:query-params
{:page-size (with-meta s/Int
{:json-schema
{:description "Use this to limit the number of records returned by the query"}})}}}
You can add other elements from the Swagger description into :json-schema as well, they get merged with the auto-generated description.
Hi @EMayej,
Yes, you can - you can add metadata to your schemas as follows:
You can add other elements from the Swagger description into
:json-schema
as well, they get merged with the auto-generated description.Hope this helps