-
Notifications
You must be signed in to change notification settings - Fork 19
ethiopia emr adaptors overview #760
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
PiusKariuki
wants to merge
1
commit into
main
Choose a base branch
from
ethiopia-adaptors-overview
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+148
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| --- | ||
| title: Dagu Adaptor | ||
| --- | ||
|
|
||
| ## About Dagu | ||
| Dagu is a pharmaceutical inventory management system. On top of storing inventory items it also stores patient, provider and prescription data. | ||
|
|
||
| ## Integration Options | ||
| Dagu has an available REST API. See [functions](/adaptors/packages/dagu-docs) for more on how to use this adaptor to work with the API. | ||
|
|
||
| ## Authentication | ||
| Users must specify a `baseUrl`, `username` and `password` to generate an `access_token`, which is then sent as `Bearer token` as part of the headers in every HTTP request. | ||
|
|
||
| OpenFn users can use the `Dagu` credential type when | ||
| [creating a credential](/documentation/manage-projects/manage-credentials). | ||
|
|
||
| See the adaptor's [configuration schema docs](/adaptors/packages/dagu-configuration-schema) | ||
|
|
||
| If working locally or | ||
| if using a `Raw JSON` credential type, then your configuration will look | ||
| something like this: | ||
|
|
||
| ```json | ||
| { | ||
| "baseUrl": "https://example.dagu.com", | ||
| "username": "admin", | ||
| "password": "password" | ||
| } | ||
| ``` | ||
|
|
||
| ### I've noticed a problem with this Adaptor, or something is out of date, what can I do? | ||
|
|
||
| Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! | ||
|
|
||
| Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| --- | ||
| title: ET-MFR Adaptor | ||
| --- | ||
|
|
||
| ## About ET-MFR | ||
| ET-MFR stands for Ethiopia Master Facility Registry. It is the national registry of all health facilities in Ethiopia, maintained by the MOH. It stores facility metadata including names, codes, geographic location and facility type. | ||
|
|
||
| ## Integration Options | ||
| ET-MFR has an available REST API. See [functions](/adaptors/packages/et-mfr-docs) for more on how to use this adaptor to work with the API. | ||
|
|
||
| ## Authentication | ||
| Users may specify a `baseUrl`, `username` and `password`. The `username` and `password` are then encoded into a basic authentication header and sent as part of every HTTP request. | ||
|
|
||
| OpenFn users can use the `iHRIS` credential type when | ||
| [creating a credential](/documentation/manage-projects/manage-credentials). | ||
|
|
||
| See the adaptor's [configuration schema docs](/adaptors/packages/et-mfr-configuration-schema) | ||
|
|
||
| If working locally or | ||
| if using a `Raw JSON` credential type, then your configuration will look | ||
| something like this: | ||
|
|
||
| ```json | ||
| { | ||
| "baseUrl": "https://example.et-mfr.com", | ||
| "username": "admin", | ||
| "password": "password" | ||
| } | ||
| ``` | ||
|
|
||
| ### I've noticed a problem with this Adaptor, or something is out of date, what can I do? | ||
|
|
||
| Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! | ||
|
|
||
| Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). | ||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| --- | ||
| title: iHRIS Adaptor | ||
| --- | ||
|
|
||
| ## About iHRIS | ||
| iHRIS stands for Integrated Human Resource Information System. It is the national human resource system for health workforce management. | ||
|
|
||
| ## Integration Options | ||
| iHRIS has an available REST API. See [functions](/adaptors/packages/ihris-docs) for more on how to use this adaptor to work with the API. | ||
|
|
||
| ## Authentication | ||
| Users must specify a `baseUrl`, `username` and `password` to login and get a `cookie` back. The cookie is then included as part of the headers in every HTTP request. | ||
|
|
||
| OpenFn users can use the `iHRIS` credential type when | ||
| [creating a credential](/documentation/manage-projects/manage-credentials). | ||
|
|
||
| See the adaptor's [configuration schema docs](/adaptors/packages/ihris-configuration-schema) | ||
|
|
||
| If working locally or | ||
| if using a `Raw JSON` credential type, then your configuration will look | ||
| something like this: | ||
|
|
||
| ```json | ||
| { | ||
| "baseUrl": "https://ihris.example.com", | ||
| "username": "ihris_user", | ||
| "password": "@some(!)Str0ngp4ss0w0rd" | ||
| } | ||
| ``` | ||
|
|
||
| ### I've noticed a problem with this Adaptor, or something is out of date, what can I do? | ||
|
|
||
| Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! | ||
|
|
||
| Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). | ||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| --- | ||
| title: OpenELIS Adaptor | ||
| --- | ||
|
|
||
| ## About OpenELIS | ||
| OpenELIS stands for Open-source Laboratory Information System. It is an open-source laboratory information system (LIS) used widely in public health settings. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we have a link to OpenELIS, can be github page or official website |
||
|
|
||
| ## Integration Options | ||
| OpenELIS has an available REST API. See [functions](/adaptors/packages/openelis-docs) for more on how to use this adaptor to work with the API. | ||
|
|
||
| ## Authentication | ||
| Users must specify a `baseUrl`, `username` and `password`. The `username` and `password` are then encoded into a basic authentication header and sent as part of every HTTP request. | ||
|
|
||
| OpenFn users can use the `OpenELIS` credential type when | ||
| [creating a credential](/documentation/manage-projects/manage-credentials). | ||
|
|
||
| See the adaptor's [configuration schema docs](/adaptors/packages/openelis-configuration-schema) | ||
|
|
||
| If working locally or | ||
| if using a `Raw JSON` credential type, then your configuration will look | ||
| something like this: | ||
|
|
||
| ```json | ||
| { | ||
| "baseUrl": "https://example.openelis.com", | ||
| "username": "admin", | ||
| "password": "password" | ||
| } | ||
| ``` | ||
|
|
||
| ### I've noticed a problem with this Adaptor, or something is out of date, what can I do? | ||
|
|
||
| Thanks for asking! We are a fully Open Source Digital Public Good, and we welcome contributions from our community. Check out our [Adaptors Wiki](https://github.com/OpenFn/adaptors/blob/main/wiki/index.md) for more information on how you can update Adaptors! | ||
|
|
||
| Or, you can always reach out to the Community through our [Community Forum here](https://community.openfn.org/). | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will be nice to have link to the API docs if available