Sendcloud · Schema

Price Object

ShippingLogisticsEcommerceCarriersLabelsReturnsTrackingEurope

Properties

Name Type Description
value string
currency string ISO 4217 currency code
View JSON Schema on GitHub

JSON Schema

sendcloud-price-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/sendcloud/main/json-schema/sendcloud-price-schema.json",
  "title": "Price Object",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "example": "12.65",
      "pattern": "[\\d]+(\\.[\\d]+)?"
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code",
      "minLength": 3,
      "maxLength": 3,
      "example": "USD"
    }
  }
}