magento · Schema

SourceItemSearchResults

Paginated search results containing a list of source items.

Properties

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

JSON Schema

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