VTEX · Schema

ReferenceId

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Key string
Value string
View JSON Schema on GitHub

JSON Schema

vtex-referenceid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReferenceId",
  "title": "ReferenceId",
  "required": [
    "Key",
    "Value"
  ],
  "type": "object",
  "properties": {
    "Key": {
      "type": "string"
    },
    "Value": {
      "type": "string"
    }
  },
  "example": {
    "Key": "RefId",
    "Value": "969697"
  }
}