Intention

An intention is set by the user for themselves and their contacts in order to maintain consistent connection.

The intention is essentially to connect with that person and journal that connection.

This is a child of both the user and contact, but we will document the fields and show examples here:

Fields

  • event_name - (Required) The name of the event that the user wants to have with that person - String
  • recurrence - (Required) The recurrence rule of the event - String in RRule format

Examples

// alex wants to self reflect every Friday
user alex_rivera {
  intention: {
    event_name: "Weekly Reflection"
    recurrence: "FREQ=WEEKLY;INTERVAL=1;BYDAY=FR"
  }
}

// Alex wants to have a 1:1 with Kevin every Thursday
contact kevin_osei {
  relationship: direct_report
  intention: {
    event_name: "1:1"
    recurrence: "FREQ=WEEKLY;INTERVAL=1;BYDAY=TH"
  }
}