Etsy · Schema

PaymentAccountLedgerEntries

A set of PaymentAccountLedgerEntry resources

MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

Properties

Name Type Description
count integer The number of PaymentAccountLedgerEntry resources found.
results array The PaymentAccountLedgerEntry resources found.
View JSON Schema on GitHub

JSON Schema

open-api-v3-payment-account-ledger-entries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaymentAccountLedgerEntries",
  "description": "A set of PaymentAccountLedgerEntry resources",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-schema/open-api-v3-payment-account-ledger-entries-schema.json",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "The number of PaymentAccountLedgerEntry resources found.",
      "minimum": 0,
      "example": 1
    },
    "results": {
      "type": "array",
      "description": "The PaymentAccountLedgerEntry resources found.",
      "items": {
        "description": "The PaymentAccountLedgerEntry resources found.",
        "oneOf": [
          {
            "$ref": "#/components/schemas/PaymentAccountLedgerEntry"
          }
        ]
      }
    }
  }
}