VTEX · Schema

Follower

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
name string
email string
View JSON Schema on GitHub

JSON Schema

vtex-follower-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Follower",
  "title": "Follower",
  "required": [
    "id",
    "name",
    "email"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "email": {
      "type": "string"
    }
  },
  "example": {
    "id": null,
    "name": null,
    "email": "[email protected]"
  }
}