Roku · Schema

RefundValidation

Result of a refund-validation request.

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
status string
errorCode integer
errorMessage string
refundId string
transactionId string
refundDate string
refundAmount number
currency string
refundReason string
View JSON Schema on GitHub

JSON Schema

pay-web-services-refund-validation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/pay-web-services-refund-validation-schema.json",
  "title": "RefundValidation",
  "description": "Result of a refund-validation request.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "errorCode": {
      "type": "integer"
    },
    "errorMessage": {
      "type": "string"
    },
    "refundId": {
      "type": "string"
    },
    "transactionId": {
      "type": "string"
    },
    "refundDate": {
      "type": "string",
      "format": "date-time"
    },
    "refundAmount": {
      "type": "number",
      "format": "float"
    },
    "currency": {
      "type": "string"
    },
    "refundReason": {
      "type": "string"
    }
  }
}