Amazon · JSON Structure

Pay Charge Permission Structure

ChargePermission schema from Amazon Pay API

Type: object Properties: 9
AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

ChargePermission is a JSON Structure definition published by Amazon, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

chargePermissionId chargePermissionType buyer shippingAddress billingAddress statusDetails limits creationTimestamp expirationTimestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "chargePermissionId": {
      "type": "string"
    },
    "chargePermissionType": {
      "type": "string",
      "enum": [
        "OneTime",
        "Recurring"
      ]
    },
    "buyer": {
      "$ref": "#/components/schemas/Buyer"
    },
    "shippingAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "billingAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "statusDetails": {
      "$ref": "#/components/schemas/StatusDetails"
    },
    "limits": {
      "type": "object",
      "properties": {
        "amountLimit": {
          "$ref": "#/components/schemas/Price"
        },
        "amountBalance": {
          "$ref": "#/components/schemas/Price"
        }
      }
    },
    "creationTimestamp": {
      "type": "datetime"
    },
    "expirationTimestamp": {
      "type": "datetime"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "ChargePermission",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-structure/pay-charge-permission-structure.json",
  "description": "ChargePermission schema from Amazon Pay API"
}