VTEX · Schema

NewNoteRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
target object Target.
domain string
description string
View JSON Schema on GitHub

JSON Schema

vtex-newnoterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NewNoteRequest",
  "title": "NewNoteRequest",
  "type": "object",
  "required": [
    "target",
    "domain",
    "description"
  ],
  "properties": {
    "target": {
      "type": "object",
      "description": "Target.",
      "properties": {
        "id": {
          "type": "string"
        },
        "type": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      }
    },
    "domain": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  }
}