VTEX · Schema

PurchaseContextSelectableGiftsResponse

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
availableQuantity integer
availableGifts array
View JSON Schema on GitHub

JSON Schema

vtex-purchasecontextselectablegiftsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseContextSelectableGiftsResponse",
  "title": "PurchaseContextSelectableGiftsResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "availableQuantity": {
      "type": "integer",
      "format": "int32"
    },
    "availableGifts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PurchaseContextAvailableGiftResponse"
      },
      "nullable": true
    }
  },
  "additionalProperties": false
}