├── .gitignore ├── LICENSE ├── README.md ├── en ├── docs │ ├── advance-topics │ │ └── guides │ │ │ └── enable-workflow.md │ ├── assets │ │ ├── attachments │ │ │ └── learn │ │ │ │ └── fhir-mapping-templates │ │ │ │ ├── dataservice.xml │ │ │ │ ├── fhir-patient.json │ │ │ │ └── input-patient.json │ │ ├── css │ │ │ ├── blue-palette-alt1.css │ │ │ ├── config-catalog.css │ │ │ ├── ohtheme.css │ │ │ └── redoc.css │ │ ├── img │ │ │ ├── base-scenarios │ │ │ │ ├── export-capp1.png │ │ │ │ └── export-capp2.png │ │ │ ├── get-started │ │ │ │ ├── healthcare-architecture.png │ │ │ │ └── healthcare-solution-offering.png │ │ │ ├── guildes │ │ │ │ ├── configuring-ehr-emr-system │ │ │ │ │ ├── canvas.png │ │ │ │ │ ├── epic-in-palatte.png │ │ │ │ │ ├── patient.png │ │ │ │ │ └── property.png │ │ │ │ ├── connecting-to-fhir-repositories │ │ │ │ │ └── mi-fhir-repository-connector-opertaions.png │ │ │ │ ├── exposing-an-api │ │ │ │ │ ├── add-new-application.png │ │ │ │ │ ├── create-fhir-api-from-oas.png │ │ │ │ │ ├── download-api.png │ │ │ │ │ ├── get.png │ │ │ │ │ ├── oh-developer-portal.png │ │ │ │ │ ├── oh-publisher-portal.png │ │ │ │ │ ├── product-key.png │ │ │ │ │ ├── subscription.png │ │ │ │ │ └── tryout.png │ │ │ │ ├── handling-fhir │ │ │ │ │ ├── fhir-base-connector.png │ │ │ │ │ ├── fhir-bundle-flow-mi.png │ │ │ │ │ ├── fhir-create-extension-op-mi.png │ │ │ │ │ ├── fhir-data-mapping-bal.png │ │ │ │ │ ├── fhir-data-mapping-mi.png │ │ │ │ │ ├── fhir-datamapper.png │ │ │ │ │ ├── fhir-parsing-flow-mi.png │ │ │ │ │ ├── fhir-populating-flow-mi.png │ │ │ │ │ ├── fhir-repository-connector-flow-mi.png │ │ │ │ │ ├── fhir-repository-connector.png │ │ │ │ │ ├── fhir-serializing.png │ │ │ │ │ ├── fhir-validation-flow-mi.png │ │ │ │ │ └── mapping-with-profile.png │ │ │ │ ├── handling-hl7 │ │ │ │ │ └── hl7-data-mapping-bal.png │ │ │ │ └── securing-fhir-api │ │ │ │ │ └── smartbeauth.png │ │ │ ├── install-and-setup │ │ │ │ └── updates │ │ │ │ │ ├── continuos-update.png │ │ │ │ │ └── update-oh-accelerator.png │ │ │ ├── learn │ │ │ │ ├── connector │ │ │ │ │ ├── connector.png │ │ │ │ │ ├── range.png │ │ │ │ │ ├── searchparams.png │ │ │ │ │ └── value.png │ │ │ │ ├── fhir-mappers │ │ │ │ │ └── v2-to-fhir-mapper.png │ │ │ │ ├── fhir-mapping-templates │ │ │ │ │ ├── business-logic.png │ │ │ │ │ ├── crbb-patient-yaml-file.png │ │ │ │ │ ├── import-projects.png │ │ │ │ │ ├── intro.png │ │ │ │ │ ├── select-projects.png │ │ │ │ │ └── source-system-connection.png │ │ │ │ ├── smart-on-fhir │ │ │ │ │ ├── carbon-console.png │ │ │ │ │ ├── devportal-login.png │ │ │ │ │ └── generate-keys.png │ │ │ │ └── workflow │ │ │ │ │ ├── application-creation-approval.png │ │ │ │ │ ├── selfsignup.png │ │ │ │ │ └── user-creation-approval.png │ │ │ ├── logo-for-light.svg │ │ │ └── logo.svg │ │ ├── js │ │ │ ├── ohtheme.js │ │ │ └── theme.js │ │ ├── lib │ │ │ ├── backtotop │ │ │ │ ├── img │ │ │ │ │ └── cd-top-arrow.svg │ │ │ │ └── js │ │ │ │ │ ├── main.js │ │ │ │ │ └── util.js │ │ │ └── highlightjs │ │ │ │ └── highlight.min.js │ │ ├── schemas │ │ │ └── fhir │ │ │ │ └── patient.json │ │ └── specs │ │ │ └── oas │ │ │ ├── AccountAPI.yaml │ │ │ ├── AdverseEventAPI.yaml │ │ │ ├── AllergyIntoleranceAPI.yaml │ │ │ ├── AppointmentAPI.yaml │ │ │ ├── AppointmentResponseAPI.yaml │ │ │ ├── AuditEventAPI.yaml │ │ │ ├── BasicAPI.yaml │ │ │ ├── BinaryAPI.yaml │ │ │ ├── BiologicallyDerivedProductAPI.yaml │ │ │ ├── BodyStructureAPI.yaml │ │ │ ├── BundleAPI.yaml │ │ │ ├── CapabilityStatementAPI.yaml │ │ │ ├── CarePlanAPI.yaml │ │ │ ├── CareTeamAPI.yaml │ │ │ ├── CatalogEntryAPI.yaml │ │ │ ├── ChargeItemAPI.yaml │ │ │ ├── ChargeItemDefinitionAPI.yaml │ │ │ ├── ClaimAPI.yaml │ │ │ ├── ClaimResponseAPI.yaml │ │ │ ├── ClinicalImpressionAPI.yaml │ │ │ ├── CodeSystemAPI.yaml │ │ │ ├── CommunicationAPI.yaml │ │ │ ├── CommunicationRequestAPI.yaml │ │ │ ├── CompartmentDefinitionAPI.yaml │ │ │ ├── CompositionAPI.yaml │ │ │ ├── ConceptMapAPI.yaml │ │ │ ├── ConditionAPI.yaml │ │ │ ├── ConsentAPI.yaml │ │ │ ├── ContractAPI.yaml │ │ │ ├── CoverageAPI.yaml │ │ │ ├── CoverageEligibilityRequestAPI.yaml │ │ │ ├── CoverageEligibilityResponseAPI.yaml │ │ │ ├── DetectedIssueAPI.yaml │ │ │ ├── DeviceAPI.yaml │ │ │ ├── DeviceDefinitionAPI.yaml │ │ │ ├── DeviceMetricAPI.yaml │ │ │ ├── DeviceRequestAPI.yaml │ │ │ ├── DeviceUseStatementAPI.yaml │ │ │ ├── DiagnosticReportAPI.yaml │ │ │ ├── DocumentManifestAPI.yaml │ │ │ ├── DocumentReferenceAPI.yaml │ │ │ ├── EffectEvidenceSynthesisAPI.yaml │ │ │ ├── EncounterAPI.yaml │ │ │ ├── EndpointAPI.yaml │ │ │ ├── EnrollmentRequestAPI.yaml │ │ │ ├── EnrollmentResponseAPI.yaml │ │ │ ├── EpisodeOfCareAPI.yaml │ │ │ ├── EventDefinitionAPI.yaml │ │ │ ├── EvidenceAPI.yaml │ │ │ ├── EvidenceVariableAPI.yaml │ │ │ ├── ExampleScenarioAPI.yaml │ │ │ ├── ExplanationOfBenefitAPI.yaml │ │ │ ├── FamilyMemberHistoryAPI.yaml │ │ │ ├── FlagAPI.yaml │ │ │ ├── GoalAPI.yaml │ │ │ ├── GraphDefinitionAPI.yaml │ │ │ ├── GroupAPI.yaml │ │ │ ├── GuidanceResponseAPI.yaml │ │ │ ├── HealthcareServiceAPI.yaml │ │ │ ├── ImagingStudyAPI.yaml │ │ │ ├── ImmunizationAPI.yaml │ │ │ ├── ImmunizationEvaluationAPI.yaml │ │ │ ├── ImmunizationRecommendationAPI.yaml │ │ │ ├── ImplementationGuideAPI.yaml │ │ │ ├── InsurancePlanAPI.yaml │ │ │ ├── InvoiceAPI.yaml │ │ │ ├── LibraryAPI.yaml │ │ │ ├── LinkageAPI.yaml │ │ │ ├── ListAPI.yaml │ │ │ ├── LocationAPI.yaml │ │ │ ├── MeasureAPI.yaml │ │ │ ├── MeasureReportAPI.yaml │ │ │ ├── MediaAPI.yaml │ │ │ ├── MedicationAPI.yaml │ │ │ ├── MedicationAdministrationAPI.yaml │ │ │ ├── MedicationDispenseAPI.yaml │ │ │ ├── MedicationKnowledgeAPI.yaml │ │ │ ├── MedicationRequestAPI.yaml │ │ │ ├── MedicationStatementAPI.yaml │ │ │ ├── MedicinalProductAPI.yaml │ │ │ ├── MedicinalProductAuthorizationAPI.yaml │ │ │ ├── MedicinalProductContraindicationAPI.yaml │ │ │ ├── MedicinalProductIndicationAPI.yaml │ │ │ ├── MedicinalProductIngredientAPI.yaml │ │ │ ├── MedicinalProductInteractionAPI.yaml │ │ │ ├── MedicinalProductManufacturedAPI.yaml │ │ │ ├── MedicinalProductPackagedAPI.yaml │ │ │ ├── MedicinalProductPharmaceuticalAPI.yaml │ │ │ ├── MedicinalProductUndesirableEffectAPI.yaml │ │ │ ├── MessageDefinitionAPI.yaml │ │ │ ├── MessageHeaderAPI.yaml │ │ │ ├── MolecularSequenceAPI.yaml │ │ │ ├── NamingSystemAPI.yaml │ │ │ ├── NutritionOrderAPI.yaml │ │ │ ├── ObservationAPI.yaml │ │ │ ├── ObservationDefinitionAPI.yaml │ │ │ ├── OperationDefinitionAPI.yaml │ │ │ ├── OperationOutcomeAPI.yaml │ │ │ ├── OrganizationAPI.yaml │ │ │ ├── OrganizationAffiliationAPI.yaml │ │ │ ├── PatientAPI.yaml │ │ │ ├── PaymentNoticeAPI.yaml │ │ │ ├── PaymentReconciliationAPI.yaml │ │ │ ├── PersonAPI.yaml │ │ │ ├── PlanDefinitionAPI.yaml │ │ │ ├── PractitionerAPI.yaml │ │ │ ├── PractitionerRoleAPI.yaml │ │ │ ├── ProcedureAPI.yaml │ │ │ ├── ProvenanceAPI.yaml │ │ │ ├── QuestionnaireAPI.yaml │ │ │ ├── QuestionnaireResponseAPI.yaml │ │ │ ├── RelatedPersonAPI.yaml │ │ │ ├── RequestGroupAPI.yaml │ │ │ ├── ResearchDefinitionAPI.yaml │ │ │ ├── ResearchElementDefinitionAPI.yaml │ │ │ ├── ResearchStudyAPI.yaml │ │ │ ├── ResearchSubjectAPI.yaml │ │ │ ├── RiskAssessmentAPI.yaml │ │ │ ├── RiskEvidenceSynthesisAPI.yaml │ │ │ ├── ScheduleAPI.yaml │ │ │ ├── SearchParameterAPI.yaml │ │ │ ├── ServiceRequestAPI.yaml │ │ │ ├── SlotAPI.yaml │ │ │ ├── SpecimenAPI.yaml │ │ │ ├── SpecimenDefinitionAPI.yaml │ │ │ ├── StructureDefinitionAPI.yaml │ │ │ ├── StructureMapAPI.yaml │ │ │ ├── SubscriptionAPI.yaml │ │ │ ├── SubstanceAPI.yaml │ │ │ ├── SubstanceNucleicAcidAPI.yaml │ │ │ ├── SubstancePolymerAPI.yaml │ │ │ ├── SubstanceProteinAPI.yaml │ │ │ ├── SubstanceReferenceInformationAPI.yaml │ │ │ ├── SubstanceSourceMaterialAPI.yaml │ │ │ ├── SubstanceSpecificationAPI.yaml │ │ │ ├── SupplyDeliveryAPI.yaml │ │ │ ├── SupplyRequestAPI.yaml │ │ │ ├── TaskAPI.yaml │ │ │ ├── TerminologyCapabilitiesAPI.yaml │ │ │ ├── TestReportAPI.yaml │ │ │ ├── TestScriptAPI.yaml │ │ │ ├── ValueSetAPI.yaml │ │ │ ├── VerificationResultAPI.yaml │ │ │ └── VisionPrescriptionAPI.yaml │ ├── concepts │ │ ├── accelerators.md │ │ └── data-mappers.md │ ├── configurations │ │ └── email-notification.md │ ├── connectors │ │ ├── hc-systems.md │ │ └── open-healthcare-connectors.md │ ├── data-transformation │ │ ├── guides │ │ │ ├── ccda-to-fhir.md │ │ │ └── hl7v2-fhir.md │ │ └── references │ │ │ └── custom-service-openapi.yaml │ ├── emr-connectivity │ │ └── guides │ │ │ ├── emr-connector.md │ │ │ └── emr-systems-overview.md │ ├── fhir │ │ ├── guides │ │ │ ├── build-the-integration-logic.md │ │ │ ├── building-fhir-bundles.md │ │ │ ├── bulk-data-export.md │ │ │ ├── connecting-ehr-emr-systems.md │ │ │ ├── expose-fhir-apis.md │ │ │ ├── exposing-an-api.md │ │ │ ├── fhir-guides-overview.md │ │ │ ├── fhir-repository-connector.md │ │ │ ├── fhir-resource-api-template.md │ │ │ ├── manage-fhir-api-access.md │ │ │ ├── metadata-api.md │ │ │ ├── overview-of-fhir.md │ │ │ ├── parsing-and-serializing.md │ │ │ ├── populating-fhir-resources.md │ │ │ ├── profiles-and-extensions.md │ │ │ ├── secure-fhir-apis.md │ │ │ ├── smart-api.md │ │ │ ├── use-fhir-apis.md │ │ │ └── validation.md │ │ └── references │ │ │ ├── fhir-mapping-templates-example.md │ │ │ ├── fhir-overview.md │ │ │ ├── fhir-resources.md │ │ │ ├── fhir-write-templates-examples.md │ │ │ ├── hl7-to-fhir-mapper.md │ │ │ ├── patient-access-api.md │ │ │ ├── provider-directory-api.md │ │ │ ├── wso2-fhir-mapping-templates.md │ │ │ └── wso2-fhir-project.md │ ├── get-started │ │ ├── architecture.md │ │ ├── introduction.md │ │ └── open-healthcare-quickstart.md │ ├── guides-overview.md │ ├── hl7 │ │ ├── guides │ │ │ ├── connect-to-hl7-file-servers.md │ │ │ ├── connect-to-hl7-tcp-servers.md │ │ │ ├── custom-hl7-message.md │ │ │ ├── hl7-server-listener.md │ │ │ ├── overview.md │ │ │ ├── parsing-and-serializing.md │ │ │ ├── populating-hl7-message.md │ │ │ └── validation.md │ │ └── references │ │ │ └── hl7-overview.md │ ├── includes │ │ └── bal-mi-note.md │ ├── index.md │ ├── install-and-setup │ │ ├── deploy-docker.md │ │ ├── deploy-kubernetes.md │ │ ├── deployment.md │ │ ├── manual.md │ │ ├── setup-mi-server.md │ │ └── updates │ │ │ ├── overview.md │ │ │ ├── update-accelerators.md │ │ │ └── update-tool.md │ ├── old-content │ │ ├── apidefs.md │ │ ├── configs │ │ │ └── email-notifications.md │ │ ├── connector.md │ │ ├── consent-mgt │ │ │ ├── admin.md │ │ │ ├── collection.md │ │ │ ├── enforcement.md │ │ │ ├── intro.md │ │ │ └── req.md │ │ ├── fhir-capability-statement │ │ │ ├── overview.md │ │ │ └── required-features.md │ │ ├── fhir-connectors.md │ │ ├── fhir-mappers │ │ │ ├── hl7-to-fhir-example.md │ │ │ ├── hl7-to-fhir-overview.md │ │ │ └── hl7-to-fhir-reference.md │ │ ├── fhir-mapping-templates │ │ │ ├── fhir-mapping-templates-example.md │ │ │ ├── fhir-mapping-templates-overview.md │ │ │ └── fhir-mapping-templates-reference.md │ │ └── smart-on-fhir │ │ │ ├── get-patient-id.md │ │ │ ├── jwt.md │ │ │ ├── tips.md │ │ │ └── wkc.md │ ├── page-not-found.md │ ├── references-overview.md │ ├── resources │ │ ├── learn │ │ │ └── fhir-mapping-templates │ │ │ │ └── dataservice.xml │ │ └── utils │ │ │ └── fhir-api-oas-list.md │ ├── secure-health-apis │ │ └── guides │ │ │ ├── configure-smart-on-fhir.md │ │ │ └── smart-on-fhir-overview.md │ ├── set-up-wso2-integration-studio.md │ ├── smart-specification.md │ └── use-cases │ │ └── use-cases-overview.md ├── mkdocs.yml └── theme │ └── material │ ├── 404.html │ ├── base.html │ ├── images │ ├── favicon.png │ └── logo.svg │ ├── main.html │ ├── partials │ ├── copyright.html │ └── footer.html │ └── templates │ ├── 404.html │ └── redoc.html ├── issue_template.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/README.md -------------------------------------------------------------------------------- /en/docs/advance-topics/guides/enable-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/advance-topics/guides/enable-workflow.md -------------------------------------------------------------------------------- /en/docs/assets/attachments/learn/fhir-mapping-templates/dataservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/attachments/learn/fhir-mapping-templates/dataservice.xml -------------------------------------------------------------------------------- /en/docs/assets/attachments/learn/fhir-mapping-templates/fhir-patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/attachments/learn/fhir-mapping-templates/fhir-patient.json -------------------------------------------------------------------------------- /en/docs/assets/attachments/learn/fhir-mapping-templates/input-patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/attachments/learn/fhir-mapping-templates/input-patient.json -------------------------------------------------------------------------------- /en/docs/assets/css/blue-palette-alt1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/css/blue-palette-alt1.css -------------------------------------------------------------------------------- /en/docs/assets/css/config-catalog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/css/config-catalog.css -------------------------------------------------------------------------------- /en/docs/assets/css/ohtheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/css/ohtheme.css -------------------------------------------------------------------------------- /en/docs/assets/css/redoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/css/redoc.css -------------------------------------------------------------------------------- /en/docs/assets/img/base-scenarios/export-capp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/base-scenarios/export-capp1.png -------------------------------------------------------------------------------- /en/docs/assets/img/base-scenarios/export-capp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/base-scenarios/export-capp2.png -------------------------------------------------------------------------------- /en/docs/assets/img/get-started/healthcare-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/get-started/healthcare-architecture.png -------------------------------------------------------------------------------- /en/docs/assets/img/get-started/healthcare-solution-offering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/get-started/healthcare-solution-offering.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/configuring-ehr-emr-system/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/configuring-ehr-emr-system/canvas.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/configuring-ehr-emr-system/epic-in-palatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/configuring-ehr-emr-system/epic-in-palatte.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/configuring-ehr-emr-system/patient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/configuring-ehr-emr-system/patient.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/configuring-ehr-emr-system/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/configuring-ehr-emr-system/property.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/connecting-to-fhir-repositories/mi-fhir-repository-connector-opertaions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/connecting-to-fhir-repositories/mi-fhir-repository-connector-opertaions.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/add-new-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/add-new-application.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/create-fhir-api-from-oas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/create-fhir-api-from-oas.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/download-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/download-api.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/get.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/oh-developer-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/oh-developer-portal.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/oh-publisher-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/oh-publisher-portal.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/product-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/product-key.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/subscription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/subscription.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/exposing-an-api/tryout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/exposing-an-api/tryout.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-base-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-base-connector.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-bundle-flow-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-bundle-flow-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-create-extension-op-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-create-extension-op-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-data-mapping-bal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-data-mapping-bal.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-data-mapping-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-data-mapping-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-datamapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-datamapper.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-parsing-flow-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-parsing-flow-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-populating-flow-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-populating-flow-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-repository-connector-flow-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-repository-connector-flow-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-repository-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-repository-connector.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-serializing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-serializing.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/fhir-validation-flow-mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/fhir-validation-flow-mi.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-fhir/mapping-with-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-fhir/mapping-with-profile.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/handling-hl7/hl7-data-mapping-bal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/handling-hl7/hl7-data-mapping-bal.png -------------------------------------------------------------------------------- /en/docs/assets/img/guildes/securing-fhir-api/smartbeauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/guildes/securing-fhir-api/smartbeauth.png -------------------------------------------------------------------------------- /en/docs/assets/img/install-and-setup/updates/continuos-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/install-and-setup/updates/continuos-update.png -------------------------------------------------------------------------------- /en/docs/assets/img/install-and-setup/updates/update-oh-accelerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/install-and-setup/updates/update-oh-accelerator.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/connector/connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/connector/connector.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/connector/range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/connector/range.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/connector/searchparams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/connector/searchparams.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/connector/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/connector/value.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mappers/v2-to-fhir-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mappers/v2-to-fhir-mapper.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/business-logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/business-logic.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/crbb-patient-yaml-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/crbb-patient-yaml-file.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/import-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/import-projects.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/intro.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/select-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/select-projects.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/fhir-mapping-templates/source-system-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/fhir-mapping-templates/source-system-connection.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/smart-on-fhir/carbon-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/smart-on-fhir/carbon-console.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/smart-on-fhir/devportal-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/smart-on-fhir/devportal-login.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/smart-on-fhir/generate-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/smart-on-fhir/generate-keys.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/workflow/application-creation-approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/workflow/application-creation-approval.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/workflow/selfsignup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/workflow/selfsignup.png -------------------------------------------------------------------------------- /en/docs/assets/img/learn/workflow/user-creation-approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/learn/workflow/user-creation-approval.png -------------------------------------------------------------------------------- /en/docs/assets/img/logo-for-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/logo-for-light.svg -------------------------------------------------------------------------------- /en/docs/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/img/logo.svg -------------------------------------------------------------------------------- /en/docs/assets/js/ohtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/js/ohtheme.js -------------------------------------------------------------------------------- /en/docs/assets/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/js/theme.js -------------------------------------------------------------------------------- /en/docs/assets/lib/backtotop/img/cd-top-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/lib/backtotop/img/cd-top-arrow.svg -------------------------------------------------------------------------------- /en/docs/assets/lib/backtotop/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/lib/backtotop/js/main.js -------------------------------------------------------------------------------- /en/docs/assets/lib/backtotop/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/lib/backtotop/js/util.js -------------------------------------------------------------------------------- /en/docs/assets/lib/highlightjs/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/lib/highlightjs/highlight.min.js -------------------------------------------------------------------------------- /en/docs/assets/schemas/fhir/patient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/schemas/fhir/patient.json -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AccountAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AccountAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AdverseEventAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AdverseEventAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AllergyIntoleranceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AllergyIntoleranceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AppointmentAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AppointmentAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AppointmentResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AppointmentResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/AuditEventAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/AuditEventAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/BasicAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/BasicAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/BinaryAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/BinaryAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/BiologicallyDerivedProductAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/BiologicallyDerivedProductAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/BodyStructureAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/BodyStructureAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/BundleAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/BundleAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CapabilityStatementAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CapabilityStatementAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CarePlanAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CarePlanAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CareTeamAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CareTeamAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CatalogEntryAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CatalogEntryAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ChargeItemAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ChargeItemAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ChargeItemDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ChargeItemDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ClaimAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ClaimAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ClaimResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ClaimResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ClinicalImpressionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ClinicalImpressionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CodeSystemAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CodeSystemAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CommunicationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CommunicationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CommunicationRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CommunicationRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CompartmentDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CompartmentDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CompositionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CompositionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ConceptMapAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ConceptMapAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ConditionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ConditionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ConsentAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ConsentAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ContractAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ContractAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CoverageAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CoverageAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CoverageEligibilityRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CoverageEligibilityRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/CoverageEligibilityResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/CoverageEligibilityResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DetectedIssueAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DetectedIssueAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DeviceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DeviceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DeviceDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DeviceDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DeviceMetricAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DeviceMetricAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DeviceRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DeviceRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DeviceUseStatementAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DeviceUseStatementAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DiagnosticReportAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DiagnosticReportAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DocumentManifestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DocumentManifestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/DocumentReferenceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/DocumentReferenceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EffectEvidenceSynthesisAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EffectEvidenceSynthesisAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EncounterAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EncounterAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EndpointAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EndpointAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EnrollmentRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EnrollmentRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EnrollmentResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EnrollmentResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EpisodeOfCareAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EpisodeOfCareAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EventDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EventDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EvidenceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EvidenceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/EvidenceVariableAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/EvidenceVariableAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ExampleScenarioAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ExampleScenarioAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ExplanationOfBenefitAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ExplanationOfBenefitAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/FamilyMemberHistoryAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/FamilyMemberHistoryAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/FlagAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/FlagAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/GoalAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/GoalAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/GraphDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/GraphDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/GroupAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/GroupAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/GuidanceResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/GuidanceResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/HealthcareServiceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/HealthcareServiceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ImagingStudyAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ImagingStudyAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ImmunizationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ImmunizationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ImmunizationEvaluationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ImmunizationEvaluationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ImmunizationRecommendationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ImmunizationRecommendationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ImplementationGuideAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ImplementationGuideAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/InsurancePlanAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/InsurancePlanAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/InvoiceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/InvoiceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/LibraryAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/LibraryAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/LinkageAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/LinkageAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ListAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ListAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/LocationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/LocationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MeasureAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MeasureAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MeasureReportAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MeasureReportAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MediaAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MediaAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationAdministrationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationAdministrationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationDispenseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationDispenseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationKnowledgeAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationKnowledgeAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicationStatementAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicationStatementAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductAuthorizationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductAuthorizationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductContraindicationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductContraindicationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductIndicationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductIndicationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductIngredientAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductIngredientAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductInteractionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductInteractionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductManufacturedAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductManufacturedAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductPackagedAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductPackagedAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductPharmaceuticalAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductPharmaceuticalAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MedicinalProductUndesirableEffectAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MedicinalProductUndesirableEffectAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MessageDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MessageDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MessageHeaderAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MessageHeaderAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/MolecularSequenceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/MolecularSequenceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/NamingSystemAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/NamingSystemAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/NutritionOrderAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/NutritionOrderAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ObservationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ObservationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ObservationDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ObservationDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/OperationDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/OperationDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/OperationOutcomeAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/OperationOutcomeAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/OrganizationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/OrganizationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/OrganizationAffiliationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/OrganizationAffiliationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PatientAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PatientAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PaymentNoticeAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PaymentNoticeAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PaymentReconciliationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PaymentReconciliationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PersonAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PersonAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PlanDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PlanDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PractitionerAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PractitionerAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/PractitionerRoleAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/PractitionerRoleAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ProcedureAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ProcedureAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ProvenanceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ProvenanceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/QuestionnaireAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/QuestionnaireAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/QuestionnaireResponseAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/QuestionnaireResponseAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/RelatedPersonAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/RelatedPersonAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/RequestGroupAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/RequestGroupAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ResearchDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ResearchDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ResearchElementDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ResearchElementDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ResearchStudyAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ResearchStudyAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ResearchSubjectAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ResearchSubjectAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/RiskAssessmentAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/RiskAssessmentAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/RiskEvidenceSynthesisAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/RiskEvidenceSynthesisAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ScheduleAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ScheduleAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SearchParameterAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SearchParameterAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ServiceRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ServiceRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SlotAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SlotAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SpecimenAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SpecimenAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SpecimenDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SpecimenDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/StructureDefinitionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/StructureDefinitionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/StructureMapAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/StructureMapAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubscriptionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubscriptionAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceNucleicAcidAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceNucleicAcidAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstancePolymerAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstancePolymerAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceProteinAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceProteinAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceReferenceInformationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceReferenceInformationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceSourceMaterialAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceSourceMaterialAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SubstanceSpecificationAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SubstanceSpecificationAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SupplyDeliveryAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SupplyDeliveryAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/SupplyRequestAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/SupplyRequestAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/TaskAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/TaskAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/TerminologyCapabilitiesAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/TerminologyCapabilitiesAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/TestReportAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/TestReportAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/TestScriptAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/TestScriptAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/ValueSetAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/ValueSetAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/VerificationResultAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/VerificationResultAPI.yaml -------------------------------------------------------------------------------- /en/docs/assets/specs/oas/VisionPrescriptionAPI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/assets/specs/oas/VisionPrescriptionAPI.yaml -------------------------------------------------------------------------------- /en/docs/concepts/accelerators.md: -------------------------------------------------------------------------------- 1 | # Accelerators -------------------------------------------------------------------------------- /en/docs/concepts/data-mappers.md: -------------------------------------------------------------------------------- 1 | # Mappers -------------------------------------------------------------------------------- /en/docs/configurations/email-notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/configurations/email-notification.md -------------------------------------------------------------------------------- /en/docs/connectors/hc-systems.md: -------------------------------------------------------------------------------- 1 | # HC Systems -------------------------------------------------------------------------------- /en/docs/connectors/open-healthcare-connectors.md: -------------------------------------------------------------------------------- 1 | # WSO2 Healthcare Solution connectors -------------------------------------------------------------------------------- /en/docs/data-transformation/guides/ccda-to-fhir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/data-transformation/guides/ccda-to-fhir.md -------------------------------------------------------------------------------- /en/docs/data-transformation/guides/hl7v2-fhir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/data-transformation/guides/hl7v2-fhir.md -------------------------------------------------------------------------------- /en/docs/data-transformation/references/custom-service-openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/data-transformation/references/custom-service-openapi.yaml -------------------------------------------------------------------------------- /en/docs/emr-connectivity/guides/emr-connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/emr-connectivity/guides/emr-connector.md -------------------------------------------------------------------------------- /en/docs/emr-connectivity/guides/emr-systems-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/emr-connectivity/guides/emr-systems-overview.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/build-the-integration-logic.md: -------------------------------------------------------------------------------- 1 | # Build the integration logic -------------------------------------------------------------------------------- /en/docs/fhir/guides/building-fhir-bundles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/building-fhir-bundles.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/bulk-data-export.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/docs/fhir/guides/connecting-ehr-emr-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/connecting-ehr-emr-systems.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/expose-fhir-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/expose-fhir-apis.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/exposing-an-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/exposing-an-api.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/fhir-guides-overview.md: -------------------------------------------------------------------------------- 1 | # Working with FHIR - Overview -------------------------------------------------------------------------------- /en/docs/fhir/guides/fhir-repository-connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/fhir-repository-connector.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/fhir-resource-api-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/fhir-resource-api-template.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/manage-fhir-api-access.md: -------------------------------------------------------------------------------- 1 | # Manage access to FHIR APIs -------------------------------------------------------------------------------- /en/docs/fhir/guides/metadata-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/metadata-api.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/overview-of-fhir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/overview-of-fhir.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/parsing-and-serializing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/parsing-and-serializing.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/populating-fhir-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/populating-fhir-resources.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/profiles-and-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/profiles-and-extensions.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/secure-fhir-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/secure-fhir-apis.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/smart-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/smart-api.md -------------------------------------------------------------------------------- /en/docs/fhir/guides/use-fhir-apis.md: -------------------------------------------------------------------------------- 1 | # Use FHIR APIs -------------------------------------------------------------------------------- /en/docs/fhir/guides/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/guides/validation.md -------------------------------------------------------------------------------- /en/docs/fhir/references/fhir-mapping-templates-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/references/fhir-mapping-templates-example.md -------------------------------------------------------------------------------- /en/docs/fhir/references/fhir-overview.md: -------------------------------------------------------------------------------- 1 | # FHIR - Overview -------------------------------------------------------------------------------- /en/docs/fhir/references/fhir-resources.md: -------------------------------------------------------------------------------- 1 | # FHIR resources -------------------------------------------------------------------------------- /en/docs/fhir/references/fhir-write-templates-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/references/fhir-write-templates-examples.md -------------------------------------------------------------------------------- /en/docs/fhir/references/hl7-to-fhir-mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/fhir/references/hl7-to-fhir-mapper.md -------------------------------------------------------------------------------- /en/docs/fhir/references/patient-access-api.md: -------------------------------------------------------------------------------- 1 | # FHIR patient access API -------------------------------------------------------------------------------- /en/docs/fhir/references/provider-directory-api.md: -------------------------------------------------------------------------------- 1 | # FHIR provider directory API -------------------------------------------------------------------------------- /en/docs/fhir/references/wso2-fhir-mapping-templates.md: -------------------------------------------------------------------------------- 1 | # WSO2 FHIR mapping templates -------------------------------------------------------------------------------- /en/docs/fhir/references/wso2-fhir-project.md: -------------------------------------------------------------------------------- 1 | # WSO2 FHIR project -------------------------------------------------------------------------------- /en/docs/get-started/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/get-started/architecture.md -------------------------------------------------------------------------------- /en/docs/get-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/get-started/introduction.md -------------------------------------------------------------------------------- /en/docs/get-started/open-healthcare-quickstart.md: -------------------------------------------------------------------------------- 1 | # Healthcare - Quick start -------------------------------------------------------------------------------- /en/docs/guides-overview.md: -------------------------------------------------------------------------------- 1 | # Guides - Overview -------------------------------------------------------------------------------- /en/docs/hl7/guides/connect-to-hl7-file-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/connect-to-hl7-file-servers.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/connect-to-hl7-tcp-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/connect-to-hl7-tcp-servers.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/custom-hl7-message.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/docs/hl7/guides/hl7-server-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/hl7-server-listener.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/overview.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/parsing-and-serializing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/parsing-and-serializing.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/populating-hl7-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/populating-hl7-message.md -------------------------------------------------------------------------------- /en/docs/hl7/guides/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/hl7/guides/validation.md -------------------------------------------------------------------------------- /en/docs/hl7/references/hl7-overview.md: -------------------------------------------------------------------------------- 1 | # HL7 - Overview -------------------------------------------------------------------------------- /en/docs/includes/bal-mi-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/includes/bal-mi-note.md -------------------------------------------------------------------------------- /en/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/index.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/deploy-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/deploy-docker.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/deploy-kubernetes.md: -------------------------------------------------------------------------------- 1 | # Deploy on Kubernetes -------------------------------------------------------------------------------- /en/docs/install-and-setup/deployment.md: -------------------------------------------------------------------------------- 1 | # Deployment methods -------------------------------------------------------------------------------- /en/docs/install-and-setup/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/manual.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/setup-mi-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/setup-mi-server.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/updates/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/updates/overview.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/updates/update-accelerators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/updates/update-accelerators.md -------------------------------------------------------------------------------- /en/docs/install-and-setup/updates/update-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/install-and-setup/updates/update-tool.md -------------------------------------------------------------------------------- /en/docs/old-content/apidefs.md: -------------------------------------------------------------------------------- 1 | API definitions -------------------------------------------------------------------------------- /en/docs/old-content/configs/email-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/configs/email-notifications.md -------------------------------------------------------------------------------- /en/docs/old-content/connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/connector.md -------------------------------------------------------------------------------- /en/docs/old-content/consent-mgt/admin.md: -------------------------------------------------------------------------------- 1 | Content administration -------------------------------------------------------------------------------- /en/docs/old-content/consent-mgt/collection.md: -------------------------------------------------------------------------------- 1 | Consent collection. -------------------------------------------------------------------------------- /en/docs/old-content/consent-mgt/enforcement.md: -------------------------------------------------------------------------------- 1 | Consent enforcement. -------------------------------------------------------------------------------- /en/docs/old-content/consent-mgt/intro.md: -------------------------------------------------------------------------------- 1 | Introduction to consent management -------------------------------------------------------------------------------- /en/docs/old-content/consent-mgt/req.md: -------------------------------------------------------------------------------- 1 | Consent Requisition. -------------------------------------------------------------------------------- /en/docs/old-content/fhir-capability-statement/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-capability-statement/overview.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-capability-statement/required-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-capability-statement/required-features.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-connectors.md: -------------------------------------------------------------------------------- 1 | FHIR base, bundle and operation outcome connectors. -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mappers/hl7-to-fhir-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-mappers/hl7-to-fhir-example.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mappers/hl7-to-fhir-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-mappers/hl7-to-fhir-overview.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mappers/hl7-to-fhir-reference.md: -------------------------------------------------------------------------------- 1 | # References -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-example.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-overview.md -------------------------------------------------------------------------------- /en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/old-content/fhir-mapping-templates/fhir-mapping-templates-reference.md -------------------------------------------------------------------------------- /en/docs/old-content/smart-on-fhir/get-patient-id.md: -------------------------------------------------------------------------------- 1 | How to get patient/member id. -------------------------------------------------------------------------------- /en/docs/old-content/smart-on-fhir/jwt.md: -------------------------------------------------------------------------------- 1 | JWT claims handling. -------------------------------------------------------------------------------- /en/docs/old-content/smart-on-fhir/tips.md: -------------------------------------------------------------------------------- 1 | Tips on building a SMART app. -------------------------------------------------------------------------------- /en/docs/old-content/smart-on-fhir/wkc.md: -------------------------------------------------------------------------------- 1 | Well-known Config -------------------------------------------------------------------------------- /en/docs/page-not-found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/page-not-found.md -------------------------------------------------------------------------------- /en/docs/references-overview.md: -------------------------------------------------------------------------------- 1 | # References - Overview -------------------------------------------------------------------------------- /en/docs/resources/learn/fhir-mapping-templates/dataservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/resources/learn/fhir-mapping-templates/dataservice.xml -------------------------------------------------------------------------------- /en/docs/resources/utils/fhir-api-oas-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/resources/utils/fhir-api-oas-list.md -------------------------------------------------------------------------------- /en/docs/secure-health-apis/guides/configure-smart-on-fhir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/secure-health-apis/guides/configure-smart-on-fhir.md -------------------------------------------------------------------------------- /en/docs/secure-health-apis/guides/smart-on-fhir-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/docs/secure-health-apis/guides/smart-on-fhir-overview.md -------------------------------------------------------------------------------- /en/docs/set-up-wso2-integration-studio.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/docs/smart-specification.md: -------------------------------------------------------------------------------- 1 | # SMART app specification -------------------------------------------------------------------------------- /en/docs/use-cases/use-cases-overview.md: -------------------------------------------------------------------------------- 1 | # Use cases - Overview -------------------------------------------------------------------------------- /en/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/mkdocs.yml -------------------------------------------------------------------------------- /en/theme/material/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/404.html -------------------------------------------------------------------------------- /en/theme/material/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/base.html -------------------------------------------------------------------------------- /en/theme/material/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/images/favicon.png -------------------------------------------------------------------------------- /en/theme/material/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/images/logo.svg -------------------------------------------------------------------------------- /en/theme/material/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/main.html -------------------------------------------------------------------------------- /en/theme/material/partials/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/partials/copyright.html -------------------------------------------------------------------------------- /en/theme/material/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/partials/footer.html -------------------------------------------------------------------------------- /en/theme/material/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/templates/404.html -------------------------------------------------------------------------------- /en/theme/material/templates/redoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/en/theme/material/templates/redoc.html -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/issue_template.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/open-healthcare-docs/HEAD/requirements.txt --------------------------------------------------------------------------------