Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview


This structure defines the represents allocation notes for a role as well as the pattern in which they will be distributedspecific project role for a specific week.

Format


Panel
titlePwsProjectRoleNotesBucket
  • PwsProjectRoleNotesBucket
    • BucketStartDate: DateTime
    • Notes: String[]

...

Element

Data Type

Required?

Default

Description

Sample Data

BucketStartDate

DateTime

 No

 No

 The start date for which the allocation notes for the role will be distributedfirst day of the week represented by this structure. Always the first day of a week, as configured for the account.

2020-01-06T00:00:00.000Z

Notes

String[]

No 

 

 The allocation notes to be attached to the role. This is an array of 7 which represent the 7 days of the week. Indexing is relative to the configured first day of week.


Usage Example(s)


Code Block
languagexml
titleExample 01
collapsetrue
                 <com:NotesBuckets>
                     <com:PwsProjectRoleNotesBucket>
                        <com:BucketStartDate>2020-01-06T00:00:00.000Z</com:BucketStartDate>
                        <com:Notes>
                           <arr:string>Monday</arr:string>
                           <arr:string>Tuesday</arr:string>
                           <arr:string>Wednesday</arr:string>
                           <arr:string>Thursday</arr:string>
                           <arr:string>Friday</arr:string>
                           <arr:string>Saturday</arr:string>
                           <arr:string>Sunday</arr:string>
                        </com:Notes>
                     </com:PwsProjectRoleNotesBucket>
                  </com:NotesBuckets>

...