Adyen · JSON Structure

Management Order Item Structure

OrderItem schema from Adyen API

Type: object Properties: 4
PaymentsFinancial ServicesFintech

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

Properties

id installments name quantity

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-order-item-structure.json",
  "description": "OrderItem schema from Adyen API",
  "type": "object",
  "properties": {
    "id": {
      "description": "The unique identifier of the product.",
      "type": "string"
    },
    "installments": {
      "description": "The number of installments for the specified product `id`.",
      "type": "int64"
    },
    "name": {
      "description": "The name of the product.",
      "type": "string"
    },
    "quantity": {
      "description": "The number of items with the specified product `id` included in the order.",
      "type": "int32"
    }
  },
  "name": "OrderItem"
}