{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LeadSearchRequest", "title": "LeadSearchRequest", "type": "object", "properties": { "page_number": { "type": "integer" }, "page_size": { "type": "integer" }, "sort_by": { "type": "string" }, "name": { "type": "string" }, "emails": { "type": "array", "items": { "type": "string" } }, "status_ids": { "type": "array", "items": { "type": "integer" } }, "tags": { "type": "array", "items": { "type": "string" } } } }