BigCommerce · Schema

BatchOperationMeta

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
total integer The total number of operations in the batch.
success integer The number of failed operations in the batch.
failed integer The number of failed operations in the batch.
View JSON Schema on GitHub

JSON Schema

bigcommerce-batchoperationmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchOperationMeta",
  "title": "BatchOperationMeta",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "The total number of operations in the batch."
    },
    "success": {
      "type": "integer",
      "description": "The number of failed operations in the batch."
    },
    "failed": {
      "type": "integer",
      "description": "The number of failed operations in the batch."
    }
  },
  "x-internal": false
}