Member

A member is a part of the core and stored in ./core.ppl of the workspace. It tracks the basic and widely available information for a person or employee within an organization. A member also has an avatar which is stored by their id.

Fields

  • first_name - (Required) The first name of the person - String
  • last_name - (Required) The last name of the person - String
  • job - (Optional) The identifier of the job the person has, in order track their performance or as an optional reference. - Identifier
  • email - (Optional) The person's email - String

Examples

Minimal

member alex_rivera {
  first_name: "Alex"
  last_name: "Rivera"
}

Full

// avatar stored at ./assets/avatars/tara_johnson.jpg
member tara_johnson {
  first_name: "Tara"
  last_name: "Johnson"
  email: "tara@somecorp.com"
  job: principal_software_engineer
}