Project Information

project-information@0.3.0 Clause ^0.22.0 8a2c66649fd7a720cded5d34e3b5219799a145d1865219b73055bb8ce7a6de77

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.000-04:00",
    "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": "e9db8ffc-69e8-45c9-b445-fefe813daed3",
    "$identifier": "e9db8ffc-69e8-45c9-b445-fefe813daed3"
}

Template Model

namespace org.accordproject.projectinformation

import org.accordproject.contract.* from https://models.accordproject.org/accordproject/contract.cto
import org.accordproject.money.MonetaryAmount from https://models.accordproject.org/money@0.2.0.cto

asset ProjectInformation extends Clause {
    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 Accord Project documentation for how to use a template or integrate it within your application.

View the Latest code for this template on GitHub.