Adyen · Schema

LineItem

PaymentsFinancial ServicesFintech

Properties

Name Type Description
amountExcludingTax integer Item amount excluding the tax, in minor units.
amountIncludingTax integer Item amount including the tax, in minor units.
brand string Brand of the item.
color string Color of the item.
description string Description of the line item.
id string ID of the line item.
imageUrl string Link to the picture of the purchased item.
itemCategory string Item category, used by the payment methods PayPal and Ratepay.
manufacturer string Manufacturer of the item.
productUrl string Link to the purchased item.
quantity integer Number of items.
receiverEmail string Email associated with the given product in the basket (usually in electronic gift cards).
size string Size of the item.
sku string Stock keeping unit.
taxAmount integer Tax amount, in minor units.
taxPercentage integer Tax percentage, in minor units.
upc string Universal Product Code.
View JSON Schema on GitHub

JSON Schema

adyen-lineitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LineItem",
  "title": "LineItem",
  "properties": {
    "amountExcludingTax": {
      "description": "Item amount excluding the tax, in minor units.",
      "format": "int64",
      "type": "integer"
    },
    "amountIncludingTax": {
      "description": "Item amount including the tax, in minor units.",
      "format": "int64",
      "type": "integer"
    },
    "brand": {
      "x-addedInVersion": "70",
      "description": "Brand of the item.",
      "type": "string"
    },
    "color": {
      "x-addedInVersion": "70",
      "description": "Color of the item.",
      "type": "string"
    },
    "description": {
      "description": "Description of the line item.",
      "type": "string"
    },
    "id": {
      "description": "ID of the line item.",
      "type": "string"
    },
    "imageUrl": {
      "description": "Link to the picture of the purchased item.",
      "type": "string"
    },
    "itemCategory": {
      "description": "Item category, used by the payment methods PayPal and Ratepay.",
      "type": "string"
    },
    "manufacturer": {
      "x-addedInVersion": "70",
      "description": "Manufacturer of the item.",
      "type": "string"
    },
    "productUrl": {
      "description": "Link to the purchased item.",
      "type": "string"
    },
    "quantity": {
      "description": "Number of items.",
      "format": "int64",
      "type": "integer"
    },
    "receiverEmail": {
      "x-addedInVersion": "70",
      "description": "Email associated with the given product in the basket (usually in electronic gift cards).",
      "type": "string"
    },
    "size": {
      "x-addedInVersion": "70",
      "description": "Size of the item.",
      "type": "string"
    },
    "sku": {
      "x-addedInVersion": "70",
      "description": "Stock keeping unit.",
      "type": "string"
    },
    "taxAmount": {
      "description": "Tax amount, in minor units.",
      "format": "int64",
      "type": "integer"
    },
    "taxPercentage": {
      "description": "Tax percentage, in minor units.",
      "format": "int64",
      "type": "integer"
    },
    "upc": {
      "x-addedInVersion": "70",
      "description": "Universal Product Code.",
      "type": "string"
    }
  },
  "type": "object"
}