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 |
JSON Schema
{
"$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"
}