VTEX · Schema

Data12

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
type string Note's type.
note string Note's text.
author string Note's author.
View JSON Schema on GitHub

JSON Schema

vtex-data12-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Data12",
  "title": "Data12",
  "required": [
    "type",
    "content",
    "author"
  ],
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Note's type."
    },
    "note": {
      "type": "string",
      "description": "Note's text."
    },
    "author": {
      "type": "string",
      "description": "Note's author."
    }
  },
  "example": {
    "type": "IMAGE",
    "content": "https://parkers-images.bauersecure.com/wp-images/18727/courier-van-insurance-01.jpg",
    "author": "Felipe Cardenas"
  }
}