VTEX · Schema

Name

Property name.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
type string Type of property.
View JSON Schema on GitHub

JSON Schema

vtex-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Name",
  "title": "Name",
  "required": [
    "type"
  ],
  "type": "object",
  "description": "Property name.",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of property.",
      "enum": [
        "array",
        "boolean",
        "integer",
        "number",
        "object",
        "string"
      ],
      "example": "string"
    }
  }
}