instacart · Schema

Replacement

Details about the replacement product suggested by the shopper.

Properties

Name Type Description
product_name string The name of the replacement product.
product_id string The product identifier of the replacement.
quantity integer The quantity of the replacement product.
View JSON Schema on GitHub

JSON Schema

instacart-replacement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Replacement",
  "title": "Replacement",
  "type": "object",
  "description": "Details about the replacement product suggested by the shopper.",
  "properties": {
    "product_name": {
      "type": "string",
      "description": "The name of the replacement product."
    },
    "product_id": {
      "type": "string",
      "description": "The product identifier of the replacement."
    },
    "quantity": {
      "type": "integer",
      "description": "The quantity of the replacement product."
    }
  }
}