7digital · Schema

RefundRequest

RefundRequest schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
userId string
purchaseId string
reason string
View JSON Schema on GitHub

JSON Schema

streaming-platform-refund-request-schema.json Raw ↑
{
  "$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"
  ]
}