Template minilatedeliveryandpenalty@0.2.1

Clause ^0.12.0 d8235fd8fed39f49a4cca48e82df452d01ae97f71c4d4024cca0702e551c25f9

A Late Delivery And Penalty Clause (Mini).

Download Archive Open in Template Studio Open in VSCode Web

A Late Delivery And Penalty (Mini)

A Late Delivery And Penalty clause (Mini).

Sample

            Late Delivery and Penalty.

In case of delayed delivery of Goods, "Betty Buyer" shall pay to
"Steve Seller" a penalty amounting to 10.5% of the total
value of the Goods for every 2 days of delay. If the
delay is more than 15 days, the Buyer is entitled to
terminate this Contract.

          

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.minilatedeliveryandpenalty.MiniLateDeliveryClause",
    "clauseId": "8ddfb989-b632-4613-aab3-b22076b5d1d2",
    "buyer": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Betty Buyer"
    },
    "seller": {
        "$class": "org.accordproject.cicero.contract.AccordParty",
        "partyId": "Steve Seller"
    },
    "penaltyDuration": {
        "$class": "org.accordproject.time.Duration",
        "amount": 2,
        "unit": "days"
    },
    "penaltyPercentage": 10.5,
    "maximumDelay": {
        "$class": "org.accordproject.time.Duration",
        "amount": 15,
        "unit": "days"
    }
}

State Types

Type Sample JSON
org.accordproject.cicero.contract.AccordContractState
{
    "$class": "org.accordproject.cicero.contract.AccordContractState",
    "stateId": "251375f0-8942-11e9-b9ba-87d1cf618bec"
}

Request Types

Type Sample JSON
org.accordproject.minilatedeliveryandpenalty.LateRequest
{
    "$class": "org.accordproject.minilatedeliveryandpenalty.LateRequest",
    "agreedDelivery": "2019-06-07T12:34:39.438-04:00",
    "deliveredAt": "2019-06-07T12:34:39.438-04:00",
    "goodsValue": 182.473,
    "transactionId": "25134ee0-8942-11e9-b9ba-87d1cf618bec",
    "timestamp": "2019-06-07T12:34:39.438-04:00"
}

Response Types

Type Sample JSON
org.accordproject.minilatedeliveryandpenalty.LateResponse
{
    "$class": "org.accordproject.minilatedeliveryandpenalty.LateResponse",
    "penalty": 239.206,
    "buyerMayTerminate": false,
    "transactionId": "25134ee1-8942-11e9-b9ba-87d1cf618bec",
    "timestamp": "2019-06-07T12:34:39.438-04:00"
}

Events Types

Type Sample JSON
org.accordproject.base.Event
{
    "abstract": "this is an abstract type"
}