AccountQueryRequest schema from Paytronix Server API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AccountQueryRequest", "description": "AccountQueryRequest schema from Paytronix Server API", "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/server-api-account-query-request-schema.json", "type": "object", "properties": { "headerInfo": { "$ref": "#/components/schemas/HeaderInfo" }, "pageSize": { "type": "integer", "example": 25 }, "accountQueries": { "type": "array", "items": { "type": "object", "properties": { "phone": { "type": "string" }, "email": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "postalCode": { "type": "string" } } } } }, "required": [ "headerInfo", "accountQueries" ] }