doordash · Schema

ItemError

Properties

Name Type Description
merchant_supplied_id string The item identifier that had an error.
message string The error message.
code string A machine-readable error code.
View JSON Schema on GitHub

JSON Schema

doordash-itemerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemError",
  "title": "ItemError",
  "type": "object",
  "properties": {
    "merchant_supplied_id": {
      "type": "string",
      "description": "The item identifier that had an error."
    },
    "message": {
      "type": "string",
      "description": "The error message."
    },
    "code": {
      "type": "string",
      "description": "A machine-readable error code."
    }
  }
}