# 9 Internal Workflows

In the current scope, examples drawn from user-journey steps of use-cases of Post-Partum care and Unconditional Social Benefit transfer programs were considered to derive Key Digital Functionalities required to orchestrate services from this Building Block. In this section, we identify workflows to manifest some of the main services. These may be enhanced or customized as needed for specific implementation needs. The following common preconditions may be needed to be met before utilizing these services:

* Entities that Host an Event registered in the Scheduler before scheduling respective events;
* Subscriber, Organizer, and Resources are registered in Scheduler before being used in Event;
* Service Endpoints of Scheduler and other Building Blocks it will interact with are already configured in Information Mediator Building Block;
* All users are logged into the GovStack Host application to do their respective tasks;
* Subscriber/Organizer knows preferred host entity, and event category to search for resources and available events;
* Any payments associated with event subscription are done outside of the Scheduler;
* Records of the latest resource and subscriber contact details stored in the Scheduler are up-to-date;
* Target Building Block is registered as publisher and Scheduler is registered as a subscriber in the “status” room of Information Mediator Building Block Pub/Sub dedicated to the target Building Block before using Pub/Sub mode for status updates/triggers;
* Event schedule with a unique ID already exists in Scheduler before seeking cancellation update;
* Scheduler can also call some of its APIs from inside for operations that do not need external interaction in a particular workflow if the information is already available internally.

This section captures the example workflows that may take place between internal functional blocks to orchestrate key functionalities for a minimum viable product as follows. The exact workflows may be decided depending on implementation time considerations.

* Event creation;
* Finding resources of a host entity which are available in a given date-time range;
* Finding event slots of a given category and resource Id in a given date-time range;
* Appointment Scheduling for the resource or subscriber to a specific event;
* Cancellation of appointment;
* Registering new Alert Message Template;
* Scheduling Alerts for a given event;
* Tracking and Alerting as per schedule;
* Cancellation of a scheduled event;
* Log Reporting;
* Registering a new entity;
* Registering a new resource;
* Affiliating an existing resource to a new entity;
* Registering a new subscriber.

## 9.1 Event Management

### **9.1.1 Event Creation**

An organizer can use this workflow to create a new event in the system. The Organizer will need to feed in minimum details such as the event name, category, address, start and end date-time, host entity, terms for subscription, and subscription limit (e.g. a doctor consultation event is limited to one patient. In a training event the limit may include multiple students). Optionally, a deadline may be specified for participants to log attendance to the event (else marked as absent). The Scheduler avoids duplication of a given event by checking if the same properties are already registered in its Event\_List. The start and end date-time is an JSON array structure that enables scheduling the same event multiple times at different date-time slots.  It then returns either success status along with an array of unique event ids one for each requested slot, or an appropriate error code to host the application of the organizer.

{% @mermaid/diagram content="sequenceDiagram

Organizer->>Host\_App: Submit details of <br>new event
Host\_App->>Scheduler: Post/entity/new<br> {Event\_Details}
alt: if given entity/<br>is already registered <br>and event is<br> not duplicate
note over Scheduler: Generate unique Event\_Id
Scheduler->>EventList: Add new event <br>{Details, unique Event\_Id}
Scheduler->>Host\_App:return{success,unique Event\_Id}
Host\_App->>Organizer: Publish new Event\_Id
else
Scheduler->>Host\_App: Return error code
Host\_App->>Organizer: Publish error
end" %}

### 9.1.2 Cancellation of scheduled event <a href="#heading-h.3fwokq0" id="heading-h.3fwokq0"></a>

Organizer can request the cancellation of a prescheduled event through the host app by supplying the event id. The Scheduler first removes dependent alert\_schedules and appointments empanelled in the event. It then deletes the event from the event list and returns success to the host app for confirmation to the organizer. Optionally it can send out an event cancellation message through preferred channels to all subscribers and resources of the event, before deleting the event from the event list.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App: Request Cancellation of selected event
Host\_App->>Scheduler: Delete/event{event\_Id}
Scheduler->>Alert\_Schedule\_List: Get/Alert\_Schedule/List\_details {Alert\_Schedule\_id} in {event\_id}
loop for each Alert\_Schedule\_id:
Scheduler->>Alert\_Schedule\_List: Delete/Alert\_Schedule/{event\_id}
end
Scheduler->>Appointment\_List: Get/appointment/List\_details {appointment\_id} in  {event\_id}
loop for each appointment id:
Scheduler->>Appointment\_List: Delete/appointment/ {appointment\_id}
end
loop for each target
alt if participant type = resource:
Scheduler->>Resource\_List: Get/Resource/List\_Details{Resource\_id}
else if participant type = Subscriber:
Scheduler->>Subscriber\_List: Get/Subscriber/List\_Details{Subscriber\_id}
end
opt if prefered channel= "direct"
Scheduler->>Target\_BB/App: notify cancellation\[url]
end
opt if prefered channel = "pubsub"
Scheduler->>Pubsub: notify cancellation \[Event Id]
end
opt if prefered channel = "messaging":
Scheduler->>messaging BB: notify cancellation\[messaging BB]
end
end
Scheduler->>Event\_List: delete/event in {event\_id}
Scheduler->>Host\_App: return success or error
Host\_App->>Organizer: confirm deletion or error information
" %}

####

### 9.1.3 Finding events of a given type and status having a specific resource in a given date-time range

In some scenarios, one may search for events of a specific category involving a specific resource of a specific host entity (e.g. consultation with a specific doctor in a particular hospital) that are open for subscription. The organizer can feed through a host app, a date range, event type, entity ID, and resource\_id seeking matching events with status=open. The Scheduler seeks its appointment\_List for the event\_ids of events with a given type, resource and entity, within a given time range. For each event, the Scheduler gets details of the event if the event status is = "open". The Schedule returns details of selected open events or returns the appropriate error code (e.g. if specified category/resource not found, etc.). The Host app will present the results or error appropriately to the Organizer.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App:Submit category,<br> resource\_id,<br>datetime\_range,<br> event\_type
Host\_App->>Scheduler:Get/appointment/list\_details<br>{event\_id} in {entity\_id,event\_type,<br>paticipant\_id=resource\_id,<br>paticipant\_type='resource',<br>from\_datetime,to\_datetime)
Scheduler-->Host\_app: return ids of<br> matching events
Host\_App->>Scheduler:Get/event/list\_details<br> in {event\_ids, status='open'}\
Scheduler->>Host\_App: return details of <br>specific events with<br> status=open
Host\_App->> Organizer: Publish event details
" %}

## 9.2 Entity Management

### **9.2.1 Registering a new entity**

A new entity that can use the Scheduler must be registered by the administrator of the Scheduler Building Block. The Administrator requests entity registration in the scheduler through Scheduler's administrative front-end user interface by supplying relevant entity details. The Scheduler after verifying the requestor's credentials will store the entity information against a new entity id it generates. In case it finds that the entity details match any of the earlier registered entities it returns an error code and avoids duplication. In the normal course, the entity id is returned to the Administrator along with a prompt to register an Organizer resource for that entity, to use the Scheduler further.

{% @mermaid/diagram content="sequenceDiagram
Adminstrator->>Host\_App:Request addition of<br> given Entity and<br> entity profile
Host\_App->>Scheduler:Post:/entity/new<br>{entity\_details}
Scheduler->>Entity\_List: Store new entity profile<br> and generate new entity id
Entity\_List->>Scheduler: Return new template id<br> or error(if entity<br> exists already)
Host\_App->>Adminstrator: confirm template<br> registration and prompt<br> for registration of <br>"organizer" resource" %}

## 9.3 Alert Schedule Management

### 9.3.1 Scheduling Alerts for a given event

An organizer may schedule different alert messages to be sent to subscribers and resources before, during, and after a prescheduled event. It is assumed here that the alert messages are borrowed from a list of messaging templates within the Scheduler that have been pre-registered and affiliated with a specific entity. The Organizer may use a host app to request the Scheduler to create a new alert schedule by choosing the alert message template, date-time of when the alert is to be sent, and type of targets to receive the message (subscriber/resource/both). If the Scheduler finds all inputs valid it will store the details against a unique Alert Schedule id in the Alert\_schedile\_list and returns success status and the unique id, otherwise, it will return an appropriate error code. This workflow assumes that the message templates created by the organizer of one entity should not be accessible to organizers affiliated with the host entity. Also, it is assumed that all participants of a given type (resource/subscriber/both) will receive the alert. If a specific implementation needs to define individual participants who should receive a specific alert, it will require further refining of the steps laid out here and is out of scope of the current workflow.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App: request new alert <br>schedule with chosen<br> message, epoch<br>,target type,event
Host\_App->>Scheduler:Post/alert\_schedule/new<br>{alert\_schedule\_details}
Scheduler->>Event\_List: Get/event/list\_details<br>{period} in {event\_id}
alt if entity not found<br> or event has ended
Scheduler->>Host\_App: return error code
Host\_App->>Organizer: publish error
else
Scheduler->> Alert\_Schedule\_Details: store alert schdeule
Alert\_Schedule\_Details->>Scheduler: return new<br> Alert\_schedule\_id
Scheduler->>Host\_App:Return new alert\_schedule\_id
Host\_App->>Organizer: confirm success
end" %}

### 9.3.2 Tracking and Alerting as per schedule

The Scheduler's internal tracker keeps fetching (with a predefined interval) a list of all alerts for which the scheduled date time has arrived (within the interval). For each alert that is ready to go and based on the given target type (resource/ subscriber/ both) it will list participants of that associated event from the appointment list and send the alert message to them. The alert message will be sent using the preferred channel (sms/URL/mail) registered in the resources /subscribers list. It should be noted that the Scheduler does not wait for confirmation of the delivery of the message. In the current context, a recipient of an alert may asynchronously send back a delivery acknowledgement to the log update (see log update workflow) of the Scheduler.

{% @mermaid/diagram content="sequenceDiagram
loop for each interval(x minutes)
note over Scheduler: update datetime<br>range by interval
Scheduler->>Alert\_Schedule\_List:Get/alert\_schedule/list\_details<br>{datetime,message\_id<br>target\_type,event\_id}<br>in {datetime\_range}
Alert\_Schedule\_List-->Scheduler:Details of all alerts<br>falling within given <br>date-time range
loop for each alert,
Scheduler->>message\_list:Get/message/list\_details<br><{message}in{message\_id}:
message\_list->Scheduler: return message<br> to be sent
alt if target\_category is resource or both
Scheduler->>appointment\_list:Get/appintment/list\_details<br><{participant\_id}in{event\_id,<br>partipant\_type=resource}
appointment\_list->>Scheduler:return resource\_ids of event
loop for each resource
Scheduler->>Resource\_list:/resource/list\_details<br>{phone,url,email,<br>preffered channel}in<br>{resource\_id}
Resource\_list->>Scheduler:return {phone,url,email,<br>preffered channel}
note over Scheduler: append resource <br>info to target list
end
end
alt if target\_category is subscriber or both
Scheduler->>event\_list:Get/event/list\_details<br><{participant\_id}in{event\_id,<br>partipant\_type=subscriber}
event\_list->>Scheduler:return resource\_ids of event
loop for each subscriber
Scheduler->>subscriber\_list:/subscriber/list\_details<br>{phone,url,email,<br>preffered channel}in<br>{subscriber\_id=target\_id}
subscriber\_list->>Scheduler:return {phone,url,email,<br>preffered channel}
note over Scheduler: append resource <br>info to target list
end
end
loop for each target
note over Scheduler: generate unique token
alt if prefered channel <br> = "messaging":
Scheduler->>messaging BB: Send Alert<br>(phone\_no,message,token)
end
alt if prefered channel= "direct"
Scheduler->>Target\_BB/App: Send to target URL<br>(message,token)
end
alt if prefered channel = "pubsub"
Scheduler->>Pubsub: Publish to room<br>(message,alert\_token)
end\
end
end
end

" %}

## 9.4 Alert Message Management

### 9.4.1 Registering new Alert Message Template

Several predefined templates of alert messages can be stored in a Message List so that they can be reused in different alerts and events (for example appointment reminders, triggers to devices and software applications, etc. Using a host app an organizer may submit a new message and request the Scheduler to register the message. The Scheduler tries to store a new entry in its message list and returns a success or error code in response.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App:Request addition of<br> given alert template
Host\_App->>Scheduler:Post:/Alert\_Template/new{message\_details}
Scheduler->>message\_List:Store new template<br> and generate <br>new template id
Scheduler->>Host\_App:Return new template ID
Host\_App->>Organizer: confirm template registration" %}

## **9.5** Resource management

### **9.5.1 Registering a new resource**

An organizer must register into the scheduler various categories of resources {people, equipment, vehicles, facility, etc.) into a specific entity before the resource can be used in different events. An organizer is also a resource of an entity but can be registered only by the Administrator of the Building Block. An organizer can register resources of other categories only into his/her affiliated entity only. The registration process begins with the submission of resource details with the request to the Scheduler for registration of the resource. The Scheduler internally stores details of the resource into a resource\_list and generates a new resource ID.

{% @mermaid/diagram content="sequenceDiagram
Adminstrator/Organizer->>Host\_App:Request addition of<br> given Resource as<br> Organizer in given entity
Host\_App->>Scheduler:Post:/resource/new<br>{entity\_id,resouce\_details}
Scheduler->>Resource\_List: Store new resource profile
note over Resource\_List: if matching resource<br> exists fetch resource\_id,<br> else store deteails and<br> generate new id
Resource\_List->>Scheduler: return Resource\_Id
Scheduler->>Host\_App: return Resource\_Id
Host\_App->>Adminstrator/Organizer: confirm registration
" %}

### 9.5.2 Finding resource availability in a given date-time range

An organizer may use a host application to seek the Scheduler for availability within a specific period (date-time range) of a chosen resource in a chosen entity. The Scheduler finds the affiliated workdays-hours of a given resource in the given entity from its Affiliation\_List and calculates corresponding date-time slots that fall within the given date-time range. Then it finds from Appointments List the start and end date-time zones of all events booked for a given resource id and entity, in a given date-time range. From all this information it calculates the free time zones of the given resource, within the affiliated time zones of the given entity and given date-time range. Finally, the Scheduler returns a list of free zones of the given resource within the given date-time range and affiliated workday hours in the given entity. The host application presents this information to the Organizer. If any of the given criteria have invalid values, the scheduler notifies an appropriate error message to Host-App.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App: Request resource availability
Host\_App->>Scheduler: Get/resource/availablity:<br>{free\_resource\_details}<br> in{Entity\_id,Resource\_Id<br>from\_datetime,<br>to\_date\_time}
Scheduler->>Affiliation\_List: Get/affiliation/list\_details<br>{Workdays\_hours}<br>in{resource\_id, Entity\_id}
Affiliation\_List->>Scheduler: returns workdays\_hours
note over Scheduler: calculate affiliated<br> dates in given <br>date-time range.
Scheduler->>Appointment\_List: Get/appointment/list\_details<br>{start,end}in{participant\_id=<br>resource\_id, participant\_type='resource,<br>Entity\_id,Event\_type,datetime range}
Appointment\_List->>Scheduler: returns starting<br> and ending time<br> of appointments
note over Scheduler: calculate free slots<br> (affiliated time <br>zones - booked slots)
Scheduler->>Host\_App: Return Array{resource id,free\_slots}
Host\_App->>Organizer: Publish available slots<br> of each resource" %}

## 9.6 Subscriber Management

### **9.6.1 Registering a new Subscriber**

A subscriber can be registered into the scheduler with relevant details, either by organizer or by subscriber himself. A subscriber  must be registered into the scheduler before they are allowed to book appointments for various events. The user submits subscriber details through Host\_App to Scheduler requesting registration. The Scheduler internally stores details of the subscriber into its subscriber\_list and generates a new subscriber ID. The Scheduler returns the new subscriber id or a duplication error if it finds the subscriber profile is already existing. The Host app confirms registration or duplication error to the Organizer.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App:Request addition of<br> given Subscriber
Host\_App->>Scheduler:Post:/Subscriber/new<br>{Subscriber\_details}
Scheduler->>Subscriber\_List: Store new Subscriber profile
note over Subscriber\_List: if matching Subscriber<br> exists fetch Subscriber\_id,<br> else store deteails and<br> generate new id
Subscriber\_List->>Scheduler: return Subscriber\_Id
Scheduler->>Host\_App: return Subscriber\_Id
Host\_App->>Organizer: confirm subscriber registration
" %}

## 9.7 Affiliation management

### **9.7.1 Affiliating a resource to an entity**

A registered resource must be affiliated with at least one entity. A resource may be affiliated with different entities only in non-overlapping day-time zones (e.g. doctor may give consultation in multiple hospitals). An organizer can be affiliated only by an administrator. All other categories of resources can be affiliated by an Organizer. The affiliation request may be submitted through the host-App to the scheduler along with affiliation details (resource\_id, entity\_id, affiliated days and time zones in that entity, etc.). The scheduler will add a new affiliation of that resource to the new entity in the Affiliation List and generate a new affiliation ID. The Scheduler flags an error if it finds a duplicate entry.

{% @mermaid/diagram content="sequenceDiagram
Adminstrator/Organizer->Host\_App: request affiliation with details
Host\_App-->Scheduler: Post/affiliation/new:<br>{affiliation\_details}
Scheduler->>Affiliation\_List: store new affiliation deetails
Affiliation\_List->>Scheduler: return Affiliation id<br> or duplication error
Scheduler->>Host\_App: return Affiliation id <br> or error
Host\_App->>Adminstrator/Organizer: confirm affiliation of <br>resource to specified entity
" %}

## 9.8 Appointment Management

### 9.8.1 Appointment Scheduling for resource or subscriber to a specific event

An organizer may enrol a subscriber or resource to a specific event through a host app. The host application first finds out details of a chosen event\_id. Then the host application requests a new appointment booking by giving participant details, and event details as needed. The Scheduler stores appointment details against a unique appointment id in its Appointment List. The Scheduler then confirms successful enrolment to the user through the host app and publishes the unique appointment id for that participant.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App:request enrollment<br> of chosen participant<br> to chosen event
Host\_App->>Scheduler:Get/event/list\_details<br>{event\_type,from,to,<br>status} in {event\_id}
Scheduler->>Host\_App: return requested <br>event details for<br> given event ids
alt if subscriber\_limit >0 and event\_status = 'open'
Host\_App->> Scheduler: put/event/modifications<br>{subscriber\_limit-1}in{event\_id}\
Scheduler->>Host\_App: return success
Host\_App->>Scheduler:Post/Appointment/new<br>{event\_id,event\_type,<br>participant\_type,participant\_id,<br>from,to,deadline}
alt if participant type is "resource"
Scheduler->>Resource\_List: Get/Resource/list\_details<br>{resource\_details} in {Resouce\_id=<br>participant\_id}
Resource\_List->>Scheduler:return target details <br> Resource or error
else if participant type is "subscriber"
Scheduler->>Subscriber\_List: Get/Resource/list\_details<br>{subcriber\_details} in {Resouce\_id=<br>participant\_id}
Subscriber\_List->>Scheduler:return target details <br> subscriber or error
end
Scheduler->>Messaging\_BB: send appointment id<br> with event details<br> to subscriber
Scheduler->>Host\_App: return success <br>with unique appointment id
Host\_App->> Organizer: publish appointment<br> id with event details
end      " %}

### **9.8.2 Cancellation of appointment**

An organizer may cancel an existing appointment of a resource or a subscriber for an event using the Host App. The user may submit the participant id or participant type (subscriber/resource) and the event ID to the Scheduler through the host app, requesting for cancellation of respective enrollment for the event. If the Scheduler finds the given event id and subscriber/resource id in the appointment\_list it will delete the enrolment entry of the given resource in the given event, else it will return an appropriate error message. The Host-app confirms success or error condition to the user. The Scheduler also emits a notification through Messaging Building Block to inform the cancelled participant only (in different implementations one can also inform all participants). It should be noted that the deletion of the enrolment of a subscriber does not remove subscriber/resource details stored in the subscriber/resource list, but it removes only the allocation to the specific event.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App: request deletion <br>of appointment <br> of selected <br>resource/subscriber <br>in selected event<br> required details
Host\_App->>Scheduler: Delete/appointment<br>{event\_Id,participant\_type<br>, participant\_id}
Scheduler->>Appointment\_List: mark matching appointment <br> as cancelled
alt If event or participant not found
Scheduler->>Host\_App: publish error
else
Scheduler->>Host\_App: Confirm cancellation success
Event\_List->>Messaging BB: send cancellation <br>information to specific<br> resoure/subscriber
end" %}

## 9.9 Status Logging and Reporting

### 9.9.1 Log reporting

In this workflow, a simple case of extracting chosen type of log in a given time range is described. The Organizer requests the Scheduler through a host app to report logs of a chosen category within a chosen date range. The Scheduler fetches a list of matching logs found from its Log\_List, or null if nothing is found. The Scheduler publishes the logs or null to the user through the host app. This function can be extended in different implementations to generate more complex types of reports based on information in the log.

{% @mermaid/diagram content="sequenceDiagram
Organizer->>Host\_App: request logs in <br>given period,<br>entity\_id,log category
Host\_App->>Scheduler:Get/log/list\_details<br>{details} in {entity\_id,<br>datetime\_range,<br>log\_category}
Scheduler->>Log\_List:Fetch matching<br> log entries
Log\_List->>Scheduler:return error or <br>null or any <br> matching logs
Scheduler->>Host\_App:Return error or <br> list of logs
Host\_App->>Organizer: Publish Logs or <br> error message" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://scheduler.govstack.global/development-7/9-workflows.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
