VTEX · Schema

Self

Object that carries an auto reference of the transaction (on its API).

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
href string Gift card resource URL. The first number described in the URL refers to the gift card identification. The second number, refers to the transaction identification.
View JSON Schema on GitHub

JSON Schema

vtex-self-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Self",
  "title": "Self",
  "type": "object",
  "description": "Object that carries an auto reference of the transaction (on its API).",
  "required": [
    "href"
  ],
  "properties": {
    "href": {
      "type": "string",
      "description": "Gift card resource URL. The first number described in the URL refers to the gift card identification. The second number, refers to the transaction identification.",
      "example": "cards/890/transactions/268"
    }
  }
}