{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "MarkBillsAsPaidRequest", "type": "object", "properties": { "bill_uuids": { "type": "array", "items": { "type": "string", "minLength": 1 } }, "bill_group_ids": { "type": "array", "items": { "type": "integer" }, "default": [] }, "payment_date": { "type": "string" } }, "required": [ "bill_uuids", "payment_date" ] }