VTEX · Schema

ReportResponse

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
finished boolean
recordsProcessed integer
recordsSum integer
startDate string
lastUpdateTime string
completedDate string
errorCount integer
percentageProcessed integer
enqueueDate string
email string
canceled boolean
outputType string
zipped boolean
linkToDownload string
lastErrorMessage string
statusMessage string
View JSON Schema on GitHub

JSON Schema

vtex-reportresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportResponse",
  "title": "ReportResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "finished": {
      "type": "boolean"
    },
    "recordsProcessed": {
      "type": "integer",
      "format": "int64",
      "readOnly": true
    },
    "recordsSum": {
      "type": "integer",
      "format": "int64",
      "nullable": true
    },
    "startDate": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "lastUpdateTime": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "completedDate": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "errorCount": {
      "type": "integer",
      "format": "int64",
      "nullable": true
    },
    "percentageProcessed": {
      "type": "integer",
      "format": "int64"
    },
    "enqueueDate": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "email": {
      "type": "string",
      "nullable": true
    },
    "canceled": {
      "type": "boolean"
    },
    "outputType": {
      "type": "string",
      "nullable": true
    },
    "zipped": {
      "type": "boolean"
    },
    "linkToDownload": {
      "type": "string",
      "nullable": true
    },
    "lastErrorMessage": {
      "type": "string",
      "nullable": true
    },
    "statusMessage": {
      "type": "string",
      "nullable": true,
      "readOnly": true
    }
  },
  "additionalProperties": false
}