magento · Schema

InvoiceSearchResults

Paginated search results containing a list of invoices.

Properties

Name Type Description
items array
total_count integer Total number of matching invoices.
View JSON Schema on GitHub

JSON Schema

magento-invoicesearchresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceSearchResults",
  "title": "InvoiceSearchResults",
  "type": "object",
  "description": "Paginated search results containing a list of invoices.",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Invoice"
      }
    },
    "total_count": {
      "type": "integer",
      "description": "Total number of matching invoices."
    }
  }
}