VTEX · Schema

TransactionResponse

Transaction response information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
oid string Operation identification.
value number Value information.
date string Date information.
View JSON Schema on GitHub

JSON Schema

vtex-transactionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionResponse",
  "title": "TransactionResponse",
  "description": "Transaction response information.",
  "required": [
    "oid",
    "value",
    "date"
  ],
  "type": "object",
  "properties": {
    "oid": {
      "type": "string",
      "description": "Operation identification."
    },
    "value": {
      "type": "number",
      "description": "Value information."
    },
    "date": {
      "type": "string",
      "description": "Date information."
    }
  }
}