magento · Schema

InventorySourceSearchResults

Paginated search results containing a list of inventory sources.

Properties

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

JSON Schema

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