VTEX · Schema

Create/UpdateCarrierRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
id string
slaType string
name string
scheduledDelivery boolean
maxRangeDelivery integer
dayOfWeekForDelivery array Select the chosen days for delivery. Values for each day of the week are: 0 = sunday, 1 = monday, 2 = tuesday, 3 = wednesday, 4 = thursday, 5 = friday, 6 = saturday. Make sure to add the available hou
dayOfWeekBlockeds array
freightValue array
factorCubicWeight string
freightTableProcessStatus integer
freightTableValueError string
modals array
onlyItemsWithDefinedModal boolean
deliveryOnWeekends boolean
carrierSchedule array
maxDimension object
exclusiveToDeliveryPoints boolean
minimunCubicWeight integer
isPolygon boolean
numberOfItemsPerShipment string
View JSON Schema on GitHub

JSON Schema

vtex-createupdatecarrierrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUpdateCarrierRequest",
  "title": "Create/UpdateCarrierRequest",
  "required": [
    "id",
    "slaType",
    "name",
    "scheduledDelivery",
    "maxRangeDelivery",
    "dayOfWeekForDelivery",
    "dayOfWeekBlockeds",
    "freightValue",
    "factorCubicWeight",
    "freightTableProcessStatus",
    "freightTableValueError",
    "modals",
    "onlyItemsWithDefinedModal",
    "deliveryOnWeekends",
    "carrierSchedule",
    "maxDimension",
    "exclusiveToDeliveryPoints",
    "minimunCubicWeight",
    "isPolygon",
    "numberOfItemsPerShipment"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "slaType": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "scheduledDelivery": {
      "type": "boolean"
    },
    "maxRangeDelivery": {
      "type": "integer",
      "format": "int32"
    },
    "dayOfWeekForDelivery": {
      "type": "array",
      "description": "Select the chosen days for delivery. Values for each day of the week are: 0 = sunday, 1 = monday, 2 = tuesday, 3 = wednesday, 4 = thursday, 5 = friday, 6 = saturday. Make sure to add the available hours for the chosen days, following the example.",
      "nullable": true,
      "items": {
        "type": "object",
        "required": [
          "dayOfWeek",
          "deliveryRanges"
        ],
        "properties": {
          "dayOfWeek": {
            "type": "integer",
            "description": "Day of the week, from `0` (sunday) to `6` (saturday).",
            "example": 2
          },
          "deliveryRanges": {
            "type": "array",
            "description": "Reservation windows for scheduled delivery.",
            "items": {
              "type": "object",
              "required": [
                "startTime",
                "endTime",
                "listPrice"
              ],
              "properties": {
                "startTime": {
                  "type": "string",
                  "title": "startTime",
                  "description": "Start time for day of the week.",
                  "example": "11:00:00"
                },
                "endTime": {
                  "type": "string",
                  "description": "End time for day of the week.",
                  "example": "12:30:00"
                },
                "listPrice": {
                  "type": "number",
                  "description": "List price for day of the week.",
                  "example": 0
                },
                "deliveryCapacity": {
                  "type": "array",
                  "description": "Sets maximum delivery capacity for a given reservation window for scheduled delivery.",
                  "items": {
                    "type": "object",
                    "example": {
                      "capacityType": "ORDERS_QUANTITY",
                      "maxValue": 55
                    },
                    "required": [
                      "capacityType",
                      "maxValue"
                    ],
                    "properties": {
                      "capacityType": {
                        "type": "string",
                        "description": "Defines how the delivery capacity is measured for this reservation window, by maximum number of orders (`\"ORDERS_QUANTITY\"`) or SKUs (`\"SKUS_QUANTITY\"`).",
                        "example": "ORDERS_QUANTITY"
                      },
                      "maxValue": {
                        "type": "number",
                        "description": "Maximum number of orders or SKUs that the store is capable of fulfilling.",
                        "example": 0
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "dayOfWeekBlockeds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "freightValue": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "factorCubicWeight": {
      "type": "string",
      "nullable": true
    },
    "freightTableProcessStatus": {
      "type": "integer",
      "format": "int32"
    },
    "freightTableValueError": {
      "type": "string",
      "nullable": true
    },
    "modals": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "onlyItemsWithDefinedModal": {
      "type": "boolean"
    },
    "deliveryOnWeekends": {
      "type": "boolean"
    },
    "carrierSchedule": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    },
    "maxDimension": {
      "title": "MaxDimension",
      "required": [
        "weight",
        "height",
        "width",
        "length",
        "maxSumDimension"
      ],
      "type": "object",
      "properties": {
        "weight": {
          "type": "integer",
          "format": "int32"
        },
        "height": {
          "type": "integer",
          "format": "int32"
        },
        "width": {
          "type": "integer",
          "format": "int32"
        },
        "length": {
          "type": "integer",
          "format": "int32"
        },
        "maxSumDimension": {
          "type": "integer",
          "format": "int32"
        }
      },
      "example": {
        "weight": 0,
        "height": 0,
        "width": 0,
        "length": 0,
        "maxSumDimension": 0
      }
    },
    "exclusiveToDeliveryPoints": {
      "type": "boolean"
    },
    "minimunCubicWeight": {
      "type": "integer",
      "format": "int32"
    },
    "isPolygon": {
      "type": "boolean"
    },
    "numberOfItemsPerShipment": {
      "type": "string",
      "nullable": true
    }
  },
  "example": {
    "id": "13942e4",
    "slaType": "Expressa",
    "name": "Transportadora Expressa",
    "scheduledDelivery": false,
    "maxRangeDelivery": 0,
    "dayOfWeekForDelivery": null,
    "dayOfWeekBlockeds": [],
    "freightValue": [],
    "factorCubicWeight": null,
    "freightTableProcessStatus": 1,
    "freightTableValueError": null,
    "modals": [],
    "onlyItemsWithDefinedModal": false,
    "deliveryOnWeekends": false,
    "carrierSchedule": [],
    "maxDimension": {
      "weight": 0,
      "height": 0,
      "width": 0,
      "length": 0,
      "maxSumDimension": 0
    },
    "exclusiveToDeliveryPoints": false,
    "minimunCubicWeight": 0,
    "isPolygon": false,
    "numberOfItemsPerShipment": null
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vtex-createupdatecarrierrequest"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.