VTEX · Schema

DeliverySlaPerType

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
TypeName string
Price number
EstimatedTimeSpanToDelivery string
View JSON Schema on GitHub

JSON Schema

vtex-deliveryslapertype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliverySlaPerType",
  "title": "DeliverySlaPerType",
  "required": [
    "TypeName",
    "Price",
    "EstimatedTimeSpanToDelivery"
  ],
  "type": "object",
  "properties": {
    "TypeName": {
      "type": "string"
    },
    "Price": {
      "type": "number"
    },
    "EstimatedTimeSpanToDelivery": {
      "type": "string"
    }
  },
  "example": {
    "TypeName": "Econ\u00f4mica",
    "Price": 4.11,
    "EstimatedTimeSpanToDelivery": "00:00:00"
  }
}