instacart · Schema

ReplacementResponse

Properties

Name Type Description
id string The order item identifier.
replacement_status string The updated replacement status.
View JSON Schema on GitHub

JSON Schema

instacart-replacementresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplacementResponse",
  "title": "ReplacementResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The order item identifier."
    },
    "replacement_status": {
      "type": "string",
      "enum": [
        "APPROVED",
        "REJECTED"
      ],
      "description": "The updated replacement status."
    }
  }
}