{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Invoices", "title": "Invoices", "type": "object", "x-objectArrayKey": "invoices", "properties": { "pagination": { "$ref": "#/components/schemas/Pagination" }, "Warnings": { "description": "Displays array of warning messages from the API", "type": "array", "items": { "$ref": "#/components/schemas/ValidationError" } }, "Invoices": { "type": "array", "items": { "$ref": "#/components/schemas/Invoice" } } } }