VTEX · Schema

AddLogRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
source string
message string
View JSON Schema on GitHub

JSON Schema

vtex-addlogrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddLogRequest",
  "title": "AddLogRequest",
  "required": [
    "source",
    "message"
  ],
  "type": "object",
  "properties": {
    "source": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  },
  "example": {
    "source": "Postman",
    "message": "Teste add interactions"
  }
}