Unified.to · Schema

property_ShippingShipment_insurance

Insurance details

IntegrationsUnified API

Properties

Name Type Description
coverage_amount number
coverage_type string
currency string
insurance_cost number
insurance_cost_currency string
insurance_provider string
insurance_provider_code string
insured_value number
View JSON Schema on GitHub

JSON Schema

unified-to-property-shippingshipment-insurance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/property_ShippingShipment_insurance",
  "title": "property_ShippingShipment_insurance",
  "description": "Insurance details",
  "properties": {
    "coverage_amount": {
      "type": "number"
    },
    "coverage_type": {
      "enum": [
        "STANDARD",
        "PREMIUM",
        "CUSTOM"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "currency": {
      "type": "string"
    },
    "insurance_cost": {
      "type": "number"
    },
    "insurance_cost_currency": {
      "type": "string"
    },
    "insurance_provider": {
      "type": "string"
    },
    "insurance_provider_code": {
      "type": "string"
    },
    "insured_value": {
      "type": "number"
    }
  },
  "type": "object"
}