ActivityEntry
Represents a subtype of the Tour Entry, containing data for a single activity
type ActivityEntry implements TourEntry {
activity: String!
description: String
estimatedEnd: Time
estimatedStart: Time
id: TourEntryID!
location: Geolocation
referenceValue: Int!
requiredQualification: Qualification!
timeOfDay: TimeOfDayType!
tour: TargetTour!
}
Fields
ActivityEntry.activity ● String! non-null scalar
The name of the activity. E.g. "Communication", "Meeting" ...
ActivityEntry.description ● String scalar
Optional description made by a PDL.
ActivityEntry.estimatedEnd ● Time scalar
Estimated end time
ActivityEntry.estimatedStart ● Time scalar
Estimated start time
ActivityEntry.id ● TourEntryID! non-null scalar
The unique identifier
ActivityEntry.location ● Geolocation object
The location this activity takes place. If location is null, the activity takes place at the care facility.
ActivityEntry.referenceValue ● Int! non-null scalar
Reference value of the Benefit in minutes, up to 3 digits. Shows the average execution time of the Benefit
ActivityEntry.requiredQualification ● Qualification! non-null scalar
The required qualification for the activity entry.
ActivityEntry.timeOfDay ● TimeOfDayType! non-null enum
The time of the day this work item is planned for.
ActivityEntry.tour ● TargetTour! non-null object
The tour this work item belongs to.
Interfaces
TourEntry interface
Represents a single tour entry