instacart · Schema

ProductSubmissionRequest

Properties

Name Type Description
products array The list of products to create or update.
View JSON Schema on GitHub

JSON Schema

instacart-productsubmissionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductSubmissionRequest",
  "title": "ProductSubmissionRequest",
  "type": "object",
  "required": [
    "products"
  ],
  "properties": {
    "products": {
      "type": "array",
      "description": "The list of products to create or update.",
      "items": {
        "$ref": "#/components/schemas/Product"
      }
    }
  }
}