VTEX · Schema

TestJSONataExpression

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Expression string JSONata expression to be tested.
Document string JSON document to be evaluated by the expression.
View JSON Schema on GitHub

JSON Schema

vtex-testjsonataexpression-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestJSONataExpression",
  "title": "TestJSONataExpression",
  "type": "object",
  "required": [
    "Expression",
    "Document"
  ],
  "properties": {
    "Expression": {
      "type": "string",
      "description": "JSONata expression to be tested."
    },
    "Document": {
      "type": "string",
      "description": "JSON document to be evaluated by the expression."
    }
  }
}