Shippo · Schema

RefundPaginatedList

EcommerceLabelsLogisticsReturnsShippingTracking

Properties

Name Type Description
count integer
next string
previous string
results array
View JSON Schema on GitHub

JSON Schema

shippo-refundpaginatedlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RefundPaginatedList",
  "title": "RefundPaginatedList",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "next": {
      "type": "string"
    },
    "previous": {
      "type": "string"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Refund"
      }
    }
  }
}