Ariba Guided Buying · JSON Structure

Catalog Shop Api Shop Response Structure

Response containing catalog items and facets for a shop.

Type: object Properties: 3
B2BCatalogERPProcurementRequisitionsSAPSupply Chain

ShopResponse is a JSON Structure definition published by Ariba Guided Buying, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

shopID items facets

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ariba-guided-buying/refs/heads/main/json-structure/catalog-shop-api-shop-response-structure.json",
  "name": "ShopResponse",
  "description": "Response containing catalog items and facets for a shop.",
  "type": "object",
  "properties": {
    "shopID": {
      "type": "string",
      "description": "The unique identifier of the shop.",
      "example": "shop-12345"
    },
    "items": {
      "type": "array",
      "description": "List of catalog items.",
      "items": {
        "$ref": "#/components/schemas/CatalogItem"
      }
    },
    "facets": {
      "type": "array",
      "description": "List of filter facets.",
      "items": {
        "$ref": "#/components/schemas/Facet"
      }
    }
  }
}