Fork me on GitHub

Template perishable-goods@0.8.0

Contract Ergo ^0.9.1 9c4b7f4dc3f58a8c1c701f1d9ccedefd076a05c91c866414e4ddcd4d02861f61

This clause specifies penalties if the transport conditions (temperature and humidity) for a package are breached.

Download Archive Open in Template Studio

Perishable Goods

This clause specifies penalties if the transport conditions (temperature and humidity) for a package are breached.

Sample

On receipt of the shipment "SHIP_001" the importer "DAN" pays the grower "PETER" 1.50 USD per KG. The shipment must contain between 3000 and 3500 KG of "Grade I, Size 4, Zutano Mexican Avocados".

Shipping containers used must be temperature and humidity controlled, and sensor readings must be logged at least 1 per hours.

Shipments that arrive after 07/02/2018 are to be considered spoiled and must be arranged to be returned to or disposed of by grower at cost to grower.

Temperature readings for the shipment must be between 2 and 13.

Humidity readings for the shipment must be between 70 and 90.

Shipments that have a temperature or humidity reading outside the agreed range have a price penalty applied calculated using the Formula for Breach Penalty Calculation below. The breach penalty factor to be used is 0.2.

Formula for Breach Penalty Calculation:
   penalty = number of shipment units x difference between sensor reading and agreed range x breach penalty factor

                

Model Dependencies

Technical Integration

Please refer to the Cicero documentation for details and examples of how to integrate a call to a Cicero template into your application.

View the Latest code for this template on on GitHub.

Sample Instance

{
    "$class": "org.accordproject.perishablegoods.PerishableGoodsContract",
    "contractId": "4956004a-aa99-4a57-a142-7d1b68186231",
    "grower": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "PETER"
    },
    "importer": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "DAN"
    },
    "shipment": "SHIP_001",
    "dueDate": "2018-07-02",
    "unitPrice": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 1.5,
        "currencyCode": "USD"
    },
    "unit": "KG",
    "minUnits": 3000,
    "maxUnits": 3500,
    "product": "Grade I, Size 4, Zutano Mexican Avocados",
    "sensorReadingFrequency": 1,
    "duration": "hours",
    "minTemperature": 2,
    "maxTemperature": 13,
    "minHumidity": 70,
    "maxHumidity": 90,
    "penaltyFactor": 0.2
}

State Types

Type Sample JSON
org.accordproject.cicero.contract.AccordContractState
{
    "$class": "org.accordproject.cicero.contract.AccordContractState",
    "stateId": "62bd2041-dd3f-11e8-a95c-95b9dbcf241c"
}

Request Types

Type Sample JSON
org.accordproject.perishablegoods.ShipmentReceived
{
    "$class": "org.accordproject.perishablegoods.ShipmentReceived",
    "unitCount": 36541,
    "shipment": "resource:org.accordproject.perishablegoods.Shipment#6421",
    "transactionId": "62bcf930-dd3f-11e8-a95c-95b9dbcf241c",
    "timestamp": "2018-10-31T19:01:34.403Z"
}

Response Types

Type Sample JSON
org.accordproject.perishablegoods.PriceCalculation
{
    "$class": "org.accordproject.perishablegoods.PriceCalculation",
    "totalPrice": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 66.187,
        "currencyCode": "WST"
    },
    "penalty": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 86.355,
        "currencyCode": "CHE"
    },
    "late": true,
    "shipment": "resource:org.accordproject.perishablegoods.Shipment#5886",
    "transactionId": "62bd2040-dd3f-11e8-a95c-95b9dbcf241c",
    "timestamp": "2018-10-31T19:01:34.404Z"
}

Events Types

Type Sample JSON
org.accordproject.cicero.runtime.PaymentObligation
{
    "$class": "org.accordproject.cicero.runtime.PaymentObligation",
    "amount": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 113.257,
        "currencyCode": "GBP"
    },
    "description": "Sit fugiat sunt.",
    "contract": "resource:org.accordproject.perishablegoods.PerishableGoodsContract#7924",
    "promisor": "resource:org.accordproject.cicero.contract.AccordParty#0086",
    "promisee": "resource:org.accordproject.cicero.contract.AccordParty#8173",
    "deadline": "2018-10-31T19:01:34.404Z",
    "eventId": "62bd2042-dd3f-11e8-a95c-95b9dbcf241c",
    "timestamp": "2018-10-31T19:01:34.404Z"
}