VTEX · Schema

accountable

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
name string Name of the person responsible for the seller.
email string Email address of the person responsible for the seller.
phone string Phone number of the person responsible for the seller.
View JSON Schema on GitHub

JSON Schema

vtex-accountable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/accountable",
  "title": "accountable",
  "type": "object",
  "required": [
    "name",
    "email",
    "phone"
  ],
  "properties": {
    "name": {
      "type": "string",
      "title": "name",
      "description": "Name of the person responsible for the seller.",
      "default": "Jane Smith"
    },
    "email": {
      "type": "string",
      "title": "email",
      "description": "Email address of the person responsible for the seller.",
      "default": "[email protected]"
    },
    "phone": {
      "type": "string",
      "title": "phone",
      "description": "Phone number of the person responsible for the seller.",
      "default": "1234567890"
    }
  }
}