Template minilatedeliveryandpenalty-capped@0.2.1

Clause ^0.12.0 bda7816cfe0e453258a440d6ee659a6e4fe0bf47477c9dd41900467dbcd02806

A Late Delivery And Penalty (Mini, Capped)

Download Archive Open in Template Studio Open in VSCode Web

A Late Delivery And Penalty (Mini, Capped)

A Late Delivery And Penalty Clause with a Penalty Cap (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. The total
amount of penalty shall not, however, exceed 52% of the
total value of the delayed goods. 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": "9d2878b6-42c9-4961-b3f2-cae6b3d79945",
    "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,
    "capPercentage": 52,
    "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": "25aaace0-8942-11e9-b9ba-87d1cf618bec"
}

Request Types

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

Response Types

Type Sample JSON
org.accordproject.minilatedeliveryandpenalty.LateResponse
{
    "$class": "org.accordproject.minilatedeliveryandpenalty.LateResponse",
    "penalty": 229.145,
    "buyerMayTerminate": true,
    "transactionId": "25aa85d0-8942-11e9-b9ba-87d1cf618bec",
    "timestamp": "2019-06-07T12:34:40.429-04:00"
}

Events Types

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