doordash · Schema

CheckoutAuditSignal

CheckoutAuditSignal schema from DoorDash API

Properties

Name Type Description
external_delivery_id string The external delivery ID associated with this checkout event.
event_type string The type of checkout audit event.
View JSON Schema on GitHub

JSON Schema

doordash-checkout-audit-signal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-checkout-audit-signal-schema.json",
  "title": "CheckoutAuditSignal",
  "description": "CheckoutAuditSignal schema from DoorDash API",
  "type": "object",
  "properties": {
    "external_delivery_id": {
      "type": "string",
      "description": "The external delivery ID associated with this checkout event.",
      "example": "D-12345"
    },
    "event_type": {
      "type": "string",
      "description": "The type of checkout audit event.",
      "example": "example"
    }
  }
}