VTEX · Schema

Getversion

Request body object.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string Version ID.
author string ID of the user who created the version.
document object
View JSON Schema on GitHub

JSON Schema

vtex-getversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Getversion",
  "title": "Getversion",
  "required": [
    "id",
    "author",
    "document"
  ],
  "type": "object",
  "description": "Request body object.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Version ID."
    },
    "author": {
      "type": "string",
      "description": "ID of the user who created the version."
    },
    "document": {
      "$ref": "#/components/schemas/Document"
    }
  }
}