Amazon · JSON Structure

Pay Checkout Session Structure

CheckoutSession schema from Amazon Pay API

Type: object Properties: 11
AmazonAdvertisingAlexaE-CommerceMarketplacePaymentsVoiceFortune 100

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

Properties

checkoutSessionId statusDetails buyer shippingAddress billingAddress paymentDetails merchantMetadata chargePermissionId chargeId creationTimestamp expirationTimestamp

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "checkoutSessionId": {
      "type": "string"
    },
    "statusDetails": {
      "$ref": "#/components/schemas/StatusDetails"
    },
    "buyer": {
      "$ref": "#/components/schemas/Buyer"
    },
    "shippingAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "billingAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "paymentDetails": {
      "type": "object",
      "properties": {
        "paymentIntent": {
          "type": "string",
          "enum": [
            "Confirm",
            "Authorize",
            "AuthorizeWithCapture"
          ]
        },
        "chargeAmount": {
          "$ref": "#/components/schemas/Price"
        }
      }
    },
    "merchantMetadata": {
      "$ref": "#/components/schemas/MerchantMetadata"
    },
    "chargePermissionId": {
      "type": "string"
    },
    "chargeId": {
      "type": "string"
    },
    "creationTimestamp": {
      "type": "datetime"
    },
    "expirationTimestamp": {
      "type": "datetime"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "CheckoutSession",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon/refs/heads/main/json-structure/pay-checkout-session-structure.json",
  "description": "CheckoutSession schema from Amazon Pay API"
}