instacart · Schema

ReplacementDecisionRequest

Properties

Name Type Description
status string The customer's decision on the replacement. APPROVED accepts the replacement. REJECTED declines the replacement and triggers an automatic refund.
View JSON Schema on GitHub

JSON Schema

instacart-replacementdecisionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplacementDecisionRequest",
  "title": "ReplacementDecisionRequest",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "APPROVED",
        "REJECTED"
      ],
      "description": "The customer's decision on the replacement. APPROVED accepts the replacement. REJECTED declines the replacement and triggers an automatic refund."
    }
  }
}