Amazon · Schema

Refund

Refund schema from Amazon Pay API

AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

Properties

Name Type Description
refundId string
chargeId string
refundAmount object
softDescriptor string
statusDetails object
creationTimestamp string
View JSON Schema on GitHub

JSON Schema

pay-refund-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "refundId": {
      "type": "string"
    },
    "chargeId": {
      "type": "string"
    },
    "refundAmount": {
      "$ref": "#/components/schemas/Price"
    },
    "softDescriptor": {
      "type": "string"
    },
    "statusDetails": {
      "$ref": "#/components/schemas/StatusDetails"
    },
    "creationTimestamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Refund",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-schema/pay-refund-schema.json",
  "description": "Refund schema from Amazon Pay API"
}