RefundRequest schema from 7digital API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/streaming-platform-refund-request-schema.json", "title": "RefundRequest", "description": "RefundRequest schema from 7digital API", "type": "object", "properties": { "userId": { "type": "string", "example": "500123" }, "purchaseId": { "type": "string", "example": "purchase-789012" }, "reason": { "type": "string", "example": "Customer request" } }, "required": [ "userId", "purchaseId" ] }