Project Information

project-information@0.2.0 Clause ^0.21.0 d14e795f530b50d329d2846796fd5255837bdc8d81a7e83a8935b58b2c9b0ece

Gather project information

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

Introduction

This is a template to gather high-level information about a project.

Template Text

Name: "Katahdin"
Name or code name for your project.

Deadline: 01/01/2021
The due date for deliverying the project (MM/DD/YYYY).

Budget: 0.00 USD
Enter 0.00 if no budget has been assigned, or you'd rather not say at this stage.

Description: "Ensure that signed contract terms are stored in Salesforce"
A brief description of the problem you are trying to solve.

Other information: "I don't work on a Friday."
Is there anything else we should be aware of to make our first meeting as efficient as possible?

Name: "Katahdin"\
_Name or code name for your project._

Deadline: 01/01/2021\
_The due date for deliverying the project (MM/DD/YYYY)._

Budget: 0.00 USD\
_Enter 0.00 if no budget has been assigned, or you'd rather not say at this stage._

Description: "Ensure that signed contract terms are stored in Salesforce"\
_A brief description of the problem you are trying to solve._

Other information: "I don't work on a Friday."\
_Is there anything else we should be aware of to make our first meeting as efficient as possible?_
Name: {{name}}\
_Name or code name for your project._

Deadline: {{deadline}}\
_The due date for deliverying the project (MM/DD/YYYY)._

Budget: {{budget}}\
_Enter 0.00 if no budget has been assigned, or you'd rather not say at this stage._

Description: {{description}}\
_A brief description of the problem you are trying to solve._

Other information: {{other}}\
_Is there anything else we should be aware of to make our first meeting as efficient as possible?_
{
    "$class": "org.accordproject.projectinformation.ProjectInformation",
    "name": "Katahdin",
    "deadline": "2021-01-01T00:00:00.000Z",
    "budget": {
        "$class": "org.accordproject.money.MonetaryAmount",
        "doubleValue": 0,
        "currencyCode": "USD"
    },
    "description": "Ensure that signed contract terms are stored in Salesforce",
    "other": "I don't work on a Friday.",
    "clauseId": "fb7c4da0-437a-48ee-bcfc-b60196aab9d0"
}

Template Model

namespace org.accordproject.projectinformation

import org.accordproject.cicero.contract.* from https://models.accordproject.org/cicero/contract.cto
import org.accordproject.cicero.runtime.* from https://models.accordproject.org/cicero/runtime.cto
import org.accordproject.money.MonetaryAmount from https://models.accordproject.org/money.cto

asset ProjectInformation extends AccordClause {
    o String name
    o DateTime deadline
    o MonetaryAmount budget
    o String description
    o String other
}

Model Dependencies

Template Logic

Find the full logic for this template on on GitHub.

State Types

Type Sample JSON

Request Types

Type Sample JSON

Response Types

Type Sample JSON

Events Types

Type Sample JSON

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 GitHub.