Refund Processed
v1.0.0eventsPublished by Stripe when a refund has been processed.
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "RefundProcessed",
4 "description": "Published when a refund has been processed",
5 "type": "object",
6 "properties": {
7 "refundId": { "type": "string", "format": "uuid" },
8 "paymentId": { "type": "string", "format": "uuid" },
9 "amount": { "type": "integer", "description": "Amount refunded, in minor units (e.g. cents)" },
10 "currency": { "type": "string", "pattern": "^[A-Z]{3}$" },
11 "processedAt": { "type": "string", "format": "date-time" }
12 },
13 "required": ["refundId", "paymentId", "amount", "currency", "processedAt"]
14}
15Details
- Format
- JSON Schema
- Resource
- events
- Filename
- schema.json