{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountingJournalEntries", "title": "Accounting: Journal entries", "x-internal": true, "allOf": [ { "type": "object", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/AccountingJournalEntry" } } } }, { "$ref": "#/components/schemas/PagingInfo" } ] }