Fragile Goods

Author: Accord Project

fragile-goods@0.16.0 Contract ^0.26.0 8fdaa2f55d78a02d88326c5b83ca6032269004459e41e02b26a311fc05d7a9e0

This clause specifies penalties for shocks caused to a fragile package in transport.

Download Archive Download Compiled Archive Open in Template Playground Open in VSCode Web

Fragile Goods

This clause specifies penalties for shocks caused to a fragile package in transport.

Template Text

Liquidated Damages for Delayed Delivery.

In the event the EXW delivery date of the Equipment is delayed beyond the delivery schedule as indicated below, solely through the fault of "Dan" (the Seller), and unless the parties mutually agreed to an extension thereto, "Steve" (the Buyer) is entitled to claim liquidated damages in an amount equivalent to 200.00 USD. Prior to implementing the provisions of Article 16.4 pursuant to this section, Buyer agrees that it shall discuss with Seller alternate remedies in good faith.. . . .

The Equipment to be shipped to the Buyer shall be packed and shipped in accordance with the Specifications and if not specified therein.... Additionally the Equipment should have proper devices on it to record any shock during transportation as any instance of acceleration outside the bounds of -0.5g and 0.5g. Each shock shall reduce the Contract Price by 5.00 USD. Packing containing fragile materials should be so marked in bold stout letters. . . . .

Equipment Description, Contract Price and Delivery Schedule

Contract Price is 1000.00 USD per unit of Equipment. Delivery Schedule: no later than 10 seconds after initiation.

Liquidated Damages for Delayed Delivery.

In the event the EXW delivery date of the Equipment is delayed beyond the delivery schedule as indicated below, solely through the fault of "Dan" (the Seller), and unless the parties mutually agreed to an extension thereto, "Steve" (the Buyer) is entitled to claim liquidated damages in an amount equivalent to 200.00 USD. 
Prior to implementing the provisions of Article 16.4 pursuant to this section, Buyer agrees that it shall discuss with Seller alternate remedies in good faith.. . . . 

The Equipment to be shipped to the Buyer shall be packed and shipped in accordance with the Specifications and if not specified therein.... 
Additionally the Equipment should have proper devices on it to record any shock during transportation as any instance of acceleration outside the bounds of -0.5g and 0.5g. 
Each shock shall reduce the Contract Price by 5.00 USD. Packing containing fragile materials should be so marked in bold stout letters. . . . .

Equipment Description, Contract Price and Delivery Schedule

Contract Price is 1000.00 USD per unit of Equipment.
Delivery Schedule: no later than 10 seconds after initiation.
Liquidated Damages for Delayed Delivery.

In the event the EXW delivery date of the Equipment is delayed beyond the delivery schedule as indicated below, solely through the fault of {{seller}} (the Seller), and unless the parties mutually agreed to an extension thereto, {{buyer}} (the Buyer) is entitled to claim liquidated damages in an amount equivalent to {{lateDeliveryPenalty}}. 
Prior to implementing the provisions of Article 16.4 pursuant to this section, Buyer agrees that it shall discuss with Seller alternate remedies in good faith.. . . . 

The Equipment to be shipped to the Buyer shall be packed and shipped in accordance with the Specifications and if not specified therein.... 
Additionally the Equipment should have proper devices on it to record any shock during transportation as any instance of acceleration outside the bounds of {{accelerationMin}}g and {{accelerationMax}}g. 
Each shock shall reduce the Contract Price by {{accelerationBreachPenalty}}. Packing containing fragile materials should be so marked in bold stout letters. . . . .

Equipment Description, Contract Price and Delivery Schedule

Contract Price is {{deliveryPrice}} per unit of Equipment.
Delivery Schedule: no later than {{deliveryLimitDuration}} after initiation.
{
  "$class": "org.accordproject.fragilegoods@0.1.0.TemplateModel",
  "buyer": "resource:org.accordproject.party.Party#Steve",
  "seller": "resource:org.accordproject.party.Party#Dan",
  "deliveryPrice": {
    "$class": "org.accordproject.money.MonetaryAmount",
    "doubleValue": 1000,
    "currencyCode": "USD"
  },
  "accelerationMin": -0.5,
  "accelerationMax": 0.5,
  "accelerationBreachPenalty": {
    "$class": "org.accordproject.money.MonetaryAmount",
    "doubleValue": 5,
    "currencyCode": "USD"
  },
  "deliveryLimitDuration": {
    "$class": "org.accordproject.time@0.3.0.Duration",
    "amount": 10,
    "unit": "seconds"
  },
  "lateDeliveryPenalty": {
    "$class": "org.accordproject.money.MonetaryAmount",
    "doubleValue": 200,
    "currencyCode": "USD"
  },
  "$identifier": "aea19c25-de58-420b-9748-b8ac0d9668c4",
  "clauseId": "aea19c25-de58-420b-9748-b8ac0d9668c4"
}

Template Model

namespace org.accordproject.fragilegoods@0.1.0

import org.accordproject.contract@0.2.0.Clause from https://models.accordproject.org/accordproject/contract@0.2.0.cto
import org.accordproject.runtime@0.2.0.{Request,Response} from https://models.accordproject.org/accordproject/runtime@0.2.0.cto
import org.accordproject.time@0.3.0.{Duration,TemporalUnit} from https://models.accordproject.org/time@0.3.0.cto

/**
 * The status of a shipment
 */
enum ShipmentStatus {
  o CREATED
  o IN_TRANSIT
  o ARRIVED
}

concept MonetaryAmount {
  o Double doubleValue
  o String currencyCode
}

transaction DeliveryUpdate extends Request {
  o DateTime startTime
  o DateTime finishTime optional
  o ShipmentStatus status
  o Double[] accelerometerReadings
}

transaction PayOut extends Response {
  o Double paymentAmount
  o String currencyCode
}

event FragileGoodsEvent {
  o Double paymentAmount
  o String currencyCode
}

/**
 * The template model
 */
@template
asset TemplateModel extends Clause {
  o String seller
  o String buyer
  o MonetaryAmount deliveryPrice
  o Double accelerationMin
  o Double accelerationMax
  o MonetaryAmount accelerationBreachPenalty
  o Duration deliveryLimitDuration
  o MonetaryAmount lateDeliveryPenalty
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON
org.accordproject.runtime@0.2.0.State
{
    "$class": "org.accordproject.runtime@0.2.0.State",
    "$identifier": "795617e0-50a4-11f1-a498-6b6dff021a96"
}

Request Types

Type Sample JSON
org.accordproject.fragilegoods@0.1.0.DeliveryUpdate
{
    "$class": "org.accordproject.fragilegoods@0.1.0.DeliveryUpdate",
    "startTime": "2026-05-15T21:24:36.573Z",
    "finishTime": "2026-05-15T21:24:36.573Z",
    "status": "CREATED",
    "accelerometerReadings": [
        88.283
    ],
    "$timestamp": "2026-05-15T21:24:36.573Z"
}
org.accordproject.runtime@0.2.0.Request
{
    "$class": "org.accordproject.runtime@0.2.0.Request",
    "$timestamp": "2026-05-15T21:24:36.573Z"
}

Response Types

Type Sample JSON
org.accordproject.fragilegoods@0.1.0.PayOut
{
    "$class": "org.accordproject.fragilegoods@0.1.0.PayOut",
    "paymentAmount": 99.378,
    "currencyCode": "Ea ipsum mollit.",
    "$timestamp": "2026-05-15T21:24:36.574Z"
}
org.accordproject.runtime@0.2.0.Response
{
    "$class": "org.accordproject.runtime@0.2.0.Response",
    "$timestamp": "2026-05-15T21:24:36.574Z"
}

Events Types

Type Sample JSON

Technical Integration

Please refer to the Accord Project documentation for how to use a template or integrate it within your application.

View the Latest code for this template on GitHub.