All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmTest.com.iprd.report.FhirPathEvaluatorTest.kt Maven / Gradle / Ivy

There is a newer version: 1.0.28
Show newest version
/* IPRD Group 2022 */
package com.iprd.report

import ca.uhn.fhir.context.FhirContext
import ca.uhn.fhir.context.FhirVersionEnum
import ca.uhn.fhir.rest.client.impl.GenericClient
import ca.uhn.fhir.rest.client.interceptor.BearerTokenAuthInterceptor
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.fasterxml.jackson.module.kotlin.readValue
import com.google.common.truth.Truth
import com.iprd.report.model.Transform
import com.iprd.report.model.definition.FhirPathTransformation
import com.iprd.report.ui.token
import org.hl7.fhir.r4.model.Resource
import org.intellij.lang.annotations.Language
import org.junit.jupiter.api.Test

class FhirPathEvaluatorTest {

  @Test
  fun testExtractValueFromResource() {
    val authInterceptor = BearerTokenAuthInterceptor(token)
    val ctx = FhirContext.forR4()
    val serverBase = "http://localhost:8085/fhir/"
    val fhirClient = ctx.newRestfulGenericClient(serverBase)
    fhirClient.registerInterceptor(authInterceptor)
    val response = (fhirClient as GenericClient).search().byUrl("Patient?_id=caa62128-18f4-45c1-a689-35ec352c94ba").execute() as Resource
    val value = FhirPathEvaluator.extractValueFromResource(response, "Bundle.entry.resource.ofType(Patient).birthDate")
    Truth.assertThat(value).isEqualTo("1990-06-13")
  }

  @Test
  fun extractValueFromExpression() {
    val resource = FhirContext.forCached(FhirVersionEnum.R4).newJsonParser().parseResource(resource)
    val transformList: List = jacksonObjectMapper().readValue(transform)
    val value = FhirPathEvaluator.extractValueFromResource(resource as Resource, "Bundle.entry.resource.ofType(Patient).birthDate", transformList)
  }

  @Test
  fun extractValueFromExpressionForSummaryPage() {
    val resource = FhirContext.forCached(FhirVersionEnum.R4).newJsonParser().parseResource(resource)
    val value = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpressionUsingReflection(resource as Resource, FhirPathTransformation("Bundle.entry.resource.ofType(Patient).birthDate", "verifyGreaterThanEqualToOnFhirPathValue(31556952)", null))
    Truth.assertThat("0").isEqualTo("9.0")
  }

  @Test
  fun extractValueFromExpressionForSummaryPageUsingDifferentFhirPath() {
    val resource = FhirContext.forCached(FhirVersionEnum.R4).newJsonParser().parseResource(resource)
    val value = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpressionUsingReflection(resource as Resource, FhirPathTransformation("Bundle.entry.resource.ofType(Observation).where(code.coding.code='ANC.B6.DE14').value", "verifyGreaterThanEqualToAndLessThanOnFhirPathValueForDateTimeType(0,12096000)", null))
    Truth.assertThat(value).isEqualTo("1.0")
  }

  @Test
  fun extractValueFromResourceAndFhirPathExpression() {
    val resource = FhirContext.forCached(FhirVersionEnum.R4).newJsonParser().parseResource(resource) as Resource
    val result = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpression(
      resource,
      "Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Observation).where(code.coding.code= 'ANC.B6.DE14').count()"
    )
    Truth.assertThat(result).isEqualTo("9.0") // 1 + 8
    val result2 = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpression(
      resource,
      "Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + ( Bundle.entry.resource.ofType(Observation).where(code.coding.code= 'ANC.B6.DE14').count() / ( Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() ))"
    )
    Truth.assertThat(result2).isEqualTo("5.0") // 1 + ( 8 / ( 1 + 1 ))
    val result3 = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpression(
      resource,
      "Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + ( Bundle.entry.resource.ofType(Observation).where(code.coding.code= 'ANC.B6.DE14').count() / ( Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Encounter).count() ))"
    )
    Truth.assertThat(result3).isEqualTo("2.0") // 1 + ( 8 / ( 1 + 7 ))
    val result4 = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpression(
      resource,
      "Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() / Bundle.entry.resource.ofType(Media).count()"
    )
    Truth.assertThat(result4).isEqualTo("0.0") // 1 / 0
  }

  @Test
  fun extractValueFromResourceAndFhirPathExpressionUsingReflection() {
    val resource = FhirContext.forCached(FhirVersionEnum.R4).newJsonParser().parseResource(sampleResource) as Resource

    val result = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpressionUsingReflection(
      resource,
      FhirPathTransformation("Bundle.entry.resource.ofType(Observation).where(code.coding.code= 'ANC.B6.DE14').value", "computeGestationalAge", null)
    )
    Truth.assertThat(result).isEqualTo("84") // 84
    val result2 = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpressionUsingReflection(
      resource,
      FhirPathTransformation("Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() ,Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count()", "transformTwoArgumentsForTestWithDifferentArgType", null)
    )
    Truth.assertThat(result2).isEqualTo("3.0") // 2+1
    val result3 = FhirPathEvaluator.extractValueFromResourceAndFhirPathExpressionUsingReflection(
      resource,
      FhirPathTransformation("Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() ,Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() / Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count() + Bundle.entry.resource.ofType(Immunization).where(vaccineCode.coding.display.contains('IPTp-SP dose 1')).count()", "transformTwoArgumentsForTest", null)
    )
    Truth.assertThat(result3).isEqualTo("4.0") // 2+2
  }
}

@Language("JSON")
val transform = """
  [
                  {
                    "operator": ">=",
                    "operand" : 315569520
                  },
                  {
                    "operator": "<=",
                    "operand" : 441797328 
                  }
                ] 
  """

@Language("JSON")
val sampleResource = """
{
  "resourceType": "Bundle",
  "entry": [
     {
      "fullUrl": "http://testhost.dashboard:8085/fhir/Observation/4126e401-2031-4400-b182-6533761015bd",
      "resource": {
        "resourceType": "Observation",
        "id": "4126e401-2031-4400-b182",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2023-03-20T15:56:59.119+05:30",
          "source": "#PvShrdE8Gxt3C8H3",
          "tag": [
            {
              "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
              "code": "anc-registration",
              "display": "ANC Registration"
            }
          ]
        },
        "extension": [
          {
            "url": "http://iprdgroup.com/fhir/StructureDefinition/resource-questionnaireResponse",
            "valueReference": {
              "reference": "QuestionnaireResponse/16859662-8d41-44bb-bc26-2f496a360ab6"
            }
          }
        ],
        "code": {
          "coding": [
            {
              "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes",
              "code": "ANC.B6.DE99",
              "display": "Last menstrual period (LMP) date"
            }
          ],
          "text": "Last menstrual period (LMP) date"
        },
        "subject": {
          "reference": "Patient/3f0dd22b-6307-4191-a0d0-15e5f9a876c3"
        },
        "encounter": {
          "reference": "Encounter/5ae38290-e240-4c3e-a76b-b545838ed842"
        },
        "effectiveDateTime": "2023-03-20T15:56:57+05:30",
        "performer": [
          {
            "reference": "PractitionerRole/a843957a-10d4-4b50-b834-faf82a948796"
          }
        ],
        "valueInteger": "5"
      },
      "search": {
        "mode": "match"
      }
    },
         {
      "fullUrl": "http://testhost.dashboard:8085/fhir/Observation/4126e401-2031-4400-b182-6533761015bd",
      "resource": {
        "resourceType": "Observation",
        "id": "4126e401-2031-4400-b182",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2023-03-20T15:56:59.119+05:30",
          "source": "#PvShrdE8Gxt3C8H3",
          "tag": [
            {
              "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
              "code": "anc-registration",
              "display": "ANC Registration"
            }
          ]
        },
        "extension": [
          {
            "url": "http://iprdgroup.com/fhir/StructureDefinition/resource-questionnaireResponse",
            "valueReference": {
              "reference": "QuestionnaireResponse/16859662-8d41-44bb-bc26-2f496a360ab6"
            }
          }
        ],
        "code": {
          "coding": [
            {
              "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes",
              "code": "ANC.B6.DE99",
              "display": "Last menstrual period (LMP) date"
            }
          ],
          "text": "Last menstrual period (LMP) date"
        },
        "subject": {
          "reference": "Patient/3f0dd22b-6307-4191-a0d0-15e5f9a876c3"
        },
        "encounter": {
          "reference": "Encounter/5ae38290-e240-4c3e-a76b-b545838ed842"
        },
        "effectiveDateTime": "2023-03-20T15:56:57+05:30",
        "performer": [
          {
            "reference": "PractitionerRole/a843957a-10d4-4b50-b834-faf82a948796"
          }
        ],
        "valueInteger": "5"
      },
      "search": {
        "mode": "match"
      }
    },
    {
      "fullUrl": "http://testhost.dashboard:8085/fhir/Observation/4126e401-2031-4400-b182-6533761017bd",
      "resource": {
        "resourceType": "Observation",
        "id": "4126e401-2031-4400-b182-6533761015bd",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2023-03-20T15:56:59.119+05:30",
          "source": "#PvShrdE8Gxt3C8H3",
          "tag": [
            {
              "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
              "code": "anc-registration",
              "display": "ANC Registration"
            }
          ]
        },
        "extension": [
          {
            "url": "http://iprdgroup.com/fhir/StructureDefinition/resource-questionnaireResponse",
            "valueReference": {
              "reference": "QuestionnaireResponse/16859662-8d41-44bb-bc26-2f496a360ab6"
            }
          }
        ],
        "code": {
          "coding": [
            {
              "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes",
              "code": "ANC.B6.DE14",
              "display": "Last menstrual period (LMP) date"
            }
          ],
          "text": "Last menstrual period (LMP) date"
        },
        "subject": {
          "reference": "Patient/3f0dd22b-6307-4191-a0d0-15e5f9a876c3"
        },
        "encounter": {
          "reference": "Encounter/5ae38290-e240-4c3e-a76b-b545838ed842"
        },
        "effectiveDateTime": "2023-03-20T15:56:57+05:30",
        "performer": [
          {
            "reference": "PractitionerRole/a843957a-10d4-4b50-b834-faf82a948796"
          }
        ],
        "valueDateTime": "2023-03-01T00:00:00+05:30"
      },
      "search": {
        "mode": "match"
      }
    },
    {
      "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Immunization/256f074a-2df7-414e-a289-273a9f27b9a1",
      "resource": {
        "resourceType": "Immunization",
        "id": "256f074a-2df7-414e-a289-273a9f27b9a1",
        "meta": {
          "versionId": "1",
          "lastUpdated": "2022-09-12T03:16:25.421+00:00",
          "source": "#DLS9x6q1KkQ0xkLQ",
          "tag": [
            {
              "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
              "code": "anc-visit",
              "display": "Anc visit"
            }
          ]
        },
        "status": "completed",
        "vaccineCode": {
          "coding": [
            {
              "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes",
              "code": "ANC.B10.DE245",
              "display": "IPTp-SP dose 1 provided"
            }
          ],
          "text": "IPTp-SP dose 1 provided"
        },
        "patient": {
          "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae"
        },
        "encounter": {
          "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243"
        },
        "occurrenceDateTime": "2022-09-12T04:16:16+01:00",
        "performer": [
          {
            "actor": {
              "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7"
            }
          }
        ]
      },
      "search": {
        "mode": "match"
      }
    }
  ]
}
""".trimIndent()

@Language("JSON")
val resource = """
    {
      "resourceType": "Bundle",
      "entry": [
        {
          "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd",
          "resource": {
            "resourceType": "Encounter",
            "id": "6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd",
            "meta": {
              "versionId": "1",
              "lastUpdated": "2022-09-12T02:47:15.725+00:00",
              "source": "#tHQYoAPID0Cq959L",
              "tag": [
                {
                  "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
                  "code": "patient-registration",
                  "display": "Patient Registration"
                }
              ]
            },
            "class": {
              "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
              "code": "IMP",
              "display": "inpatient encounter"
            },
            "serviceType": {
              "coding": [
                {
                  "system": "https://iprdgroup.com/custom-codes",
                  "code": "patient-registration",
                  "display": "Patient Registration"
                }
              ],
              "text": "Patient Registration"
            },
            "subject": {
              "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847"
            },
            "period": {
              "start": "2022-09-12T08:15:41+05:30",
              "end": "2022-09-12T23:59:59+05:30"
            },
            "location": [
              {
                "location": {
                  "reference": "Location/4fcb08a6-bacc-4f1e-85c7-1fc5bb8dfc7b"
                }
              },
              {
                "location": {
                  "reference": "Location/fd645af5-a101-4342-955e-464d81289480"
                }
              }
            ],
            "serviceProvider": {
              "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b"
            }
          },
          "search": {
            "mode": "match"
          }
        },
        {
    "fullUrl": "http://testhost.dashboard:8085/fhir/Observation/4126e401-2031-4400-b182-6533761015bd",
    "resource": {
      "resourceType": "Observation",
      "id": "4126e401-2031-4400-b182-6533761015bd",
      "meta": {
        "versionId": "1",
        "lastUpdated": "2023-03-20T15:56:59.119+05:30",
        "source": "#PvShrdE8Gxt3C8H3",
        "tag": [ {
          "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags",
          "code": "anc-registration",
          "display": "ANC Registration"
        } ]
      },
      "extension": [ {
        "url": "http://iprdgroup.com/fhir/StructureDefinition/resource-questionnaireResponse",
        "valueReference": {
          "reference": "QuestionnaireResponse/16859662-8d41-44bb-bc26-2f496a360ab6"
        }
      } ],
      "code": {
        "coding": [ {
          "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes",
          "code": "ANC.B6.DE14",
          "display": "Last menstrual period (LMP) date"
        } ],
        "text": "Last menstrual period (LMP) date"
      },
      "subject": {
        "reference": "Patient/3f0dd22b-6307-4191-a0d0-15e5f9a876c3"
      },
      "encounter": {
        "reference": "Encounter/5ae38290-e240-4c3e-a76b-b545838ed842"
      },
      "effectiveDateTime": "2023-03-20T15:56:57+05:30",
      "performer": [ {
        "reference": "PractitionerRole/a843957a-10d4-4b50-b834-faf82a948796"
      } ],
      "valueDateTime": "2023-03-01T00:00:00+05:30"
    },
    "search": {
      "mode": "match"
    }
  },
        {
          "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/b2f5093a-2375-481f-b6df-0b3dea866847",
          "resource": {
            "resourceType": "Patient",
            "id": "b2f5093a-2375-481f-b6df-0b3dea866847",
            "meta": {
              "versionId": "1",
              "lastUpdated": "2022-09-12T02:47:15.725+00:00",
              "source": "#tHQYoAPID0Cq959L"
            },
            "text": {
              "status": "generated",
              "div": "
Satest Sept 12 1
IdentifierQwert
AddressT
Date of birth01 September 2022
" }, "extension": [ { "url": "http://iprdgroup.org/fhir/extention/state-origin", "valueCoding": { "code": "Anambra", "display": "Anambra" } }, { "url": "http://fhir.org/guides/who/anc-cds/StructureDefinition/occupation", "valueCoding": { "code": "teacher", "display": "Teacher" } }, { "url": "http://iprdgroup.org/fhir/extention/tribe", "valueCoding": { "code": "hausa", "display": "Hausa" } }, { "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", "valueCoding": { "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", "code": "1013", "display": "Christian" } }, { "url": "http://iprdgroup.org/fhir/extention/marriage", "valueInteger": 0 } ], "identifier": [ { "system": "http://iprdgroup.com/identifiers/patient-card", "value": "Qwert" }, { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=VDE8SWG6B1BF&v=3&g=d1787a68-adb3-4f46-9ba9-e8fa7fa8e034&d=H4sIAAAAAAAAAC2Oy46DMAxFf6XKmtDEIS92o+77A1UXhgSoShk0E5Cqqv9eezS7K59rH7/ELYlWJO2DRxckps7IZmicjB1GmcOAfsCQlWlEJWaqaqijBqe0rbyvHQRnIjBbCXoKhUvOQbQqgOEBk0ih/3M1ypJAo+yTJ5fSWnZGKemyBYimJyef2XvqXqA62Cuvbj8sn0pZf9vjcco4l6kev/d6GRkv+MjEv86nwwkfK97GhcZbGkR7eYk7oXt+/j9XnmtmAcUd5y2L9/X9AbUNn8QIAQAA" } ], "name": [ { "family": "1", "given": [ "Satest", "Sept 12" ] } ], "telecom": [ { "system": "phone", "value": "+91-123456489150" } ], "gender": "male", "birthDate": "2022-09-01", "address": [ { "line": [ "T" ] } ], "maritalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married" } ], "text": "Married" }, "contact": [ { "telecom": [ { "system": "phone", "value": "+91-236514890000" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/d51cb45e-c1e2-4dc1-8aae-ed58358dbe80", "resource": { "resourceType": "Observation", "id": "d51cb45e-c1e2-4dc1-8aae-ed58358dbe80", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:47:39.305+00:00", "source": "#uXKAiT7vOjHR4XUZ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:17:38+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueDateTime": "2022-09-01T00:00:00+05:30" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/ac0901e1-7ba8-4673-8377-d45bd08014ba", "resource": { "resourceType": "Observation", "id": "ac0901e1-7ba8-4673-8377-d45bd08014ba", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:47:39.305+00:00", "source": "#uXKAiT7vOjHR4XUZ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:17:38+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueInteger": 1 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/ae01603d-e5ef-4562-b5d0-4b7de28b3703", "resource": { "resourceType": "Observation", "id": "ae01603d-e5ef-4562-b5d0-4b7de28b3703", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE3", "display": "Current weight" } ], "text": "Current weight" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueQuantity": { "value": 2, "code": "Kgs" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/e57fe4b4-c929-4834-a5c6-8af4c6ffaec4", "resource": { "resourceType": "Observation", "id": "e57fe4b4-c929-4834-a5c6-8af4c6ffaec4", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE107", "display": "Syphilis test result" } ], "text": "Syphilis test result" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE108", "display": "Syphilis positive" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/5faff601-b6d5-4ebe-99b7-f98e3e213608", "resource": { "resourceType": "Observation", "id": "5faff601-b6d5-4ebe-99b7-f98e3e213608", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE1", "display": "Height" } ], "text": "Height" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueQuantity": { "value": 2, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/b2489d1f-a762-4bd1-a778-67cf64394eca", "resource": { "resourceType": "Observation", "id": "b2489d1f-a762-4bd1-a778-67cf64394eca", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE24", "display": "Blood type" } ], "text": "Blood type" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "883-9", "display": "Blood type - A" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/3ca128f6-b03a-4e08-b7ca-3532750370fb", "resource": { "resourceType": "Observation", "id": "3ca128f6-b03a-4e08-b7ca-3532750370fb", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE66", "display": "Hepatitis B test result" } ], "text": "Hepatitis B test result" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE73", "display": "Hepatitis B negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/a7bfce52-ac7a-4002-8134-bae5349c26ab", "resource": { "resourceType": "Observation", "id": "a7bfce52-ac7a-4002-8134-bae5349c26ab", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE29", "display": "Rh factor" } ], "text": "Rh factor" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "10331-7", "display": "Positive" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/8735addf-afb3-4ccf-a269-9e6371f6ef6e", "resource": { "resourceType": "Observation", "id": "8735addf-afb3-4ccf-a269-9e6371f6ef6e", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/custom-codes", "code": "llin-given", "display": "LLIN given" } ], "text": "LLIN given" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/70749e30-f9da-4768-8964-db428cfc0e19", "resource": { "resourceType": "Observation", "id": "70749e30-f9da-4768-8964-db428cfc0e19", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://hl7.org/fhir/sid/icd-10", "code": "B54", "display": "Unspecified malaria" } ], "text": "Unspecified malaria" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "invalid", "display": "Invalid" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/9fc55912-719e-48b9-9b95-6c5dee20cc60", "resource": { "resourceType": "Observation", "id": "9fc55912-719e-48b9-9b95-6c5dee20cc60", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE89", "display": "hepatitis C test result" } ], "text": "hepatitis C test result" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE75", "display": "Hepatitis C positive" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/3364e777-62cf-49bf-ab39-cac04e033784", "resource": { "resourceType": "Observation", "id": "3364e777-62cf-49bf-ab39-cac04e033784", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE41", "display": "HIV test result" } ], "text": "HIV test result" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T08:18:26+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE43", "display": "HIV negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/b3b0f1e5-f17f-459a-8034-666568dc137f", "resource": { "resourceType": "Observation", "id": "b3b0f1e5-f17f-459a-8034-666568dc137f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T05:42:44.822+00:00", "source": "#HcknmEWP8nqIYXpa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T11:12:43+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueDateTime": "2022-09-06T00:00:00+05:30" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/9794d4dd-a3ae-4ade-9bc9-1d6266baadd3", "resource": { "resourceType": "Observation", "id": "9794d4dd-a3ae-4ade-9bc9-1d6266baadd3", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T05:42:44.822+00:00", "source": "#HcknmEWP8nqIYXpa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "effectiveDateTime": "2022-09-12T11:12:43+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueInteger": 2 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/d0fbf803-5a48-4ba5-a166-674774afb850", "resource": { "resourceType": "Procedure", "id": "d0fbf803-5a48-4ba5-a166-674774afb850", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE96", "display": "Syphilis test conducted" } ], "text": "Syphilis test conducted" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/6f90dcb2-e890-4b4f-90a9-82ab6ac5e29d", "resource": { "resourceType": "Procedure", "id": "6f90dcb2-e890-4b4f-90a9-82ab6ac5e29d", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE60", "display": "Hepatitis B test conducted" } ], "text": "Hepatitis B test conducted" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/c5c85ca2-0814-4476-a454-ccc99b442006", "resource": { "resourceType": "Procedure", "id": "c5c85ca2-0814-4476-a454-ccc99b442006", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE78", "display": "hepatitis C test conducted" } ], "text": "hepatitis C test conducted" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/5e5aeb24-0548-4c51-a660-122800e3c4c1", "resource": { "resourceType": "Procedure", "id": "5e5aeb24-0548-4c51-a660-122800e3c4c1", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "95041000119101", "display": "Female Genital Mutilation" } ], "text": "Female Genital Mutilation" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/aa6df59f-31b0-4726-8e9c-e5656128c5e1", "resource": { "resourceType": "Procedure", "id": "aa6df59f-31b0-4726-8e9c-e5656128c5e1", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:28.425+00:00", "source": "#hylsYZ0Ctb7r3TIC", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "288254005", "display": "Maternal nutrition" } ], "text": "Maternal nutrition" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/3fa91c3b-fe2f-493f-b248-0c5a85842109", "resource": { "resourceType": "Procedure", "id": "3fa91c3b-fe2f-493f-b248-0c5a85842109", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "hiv-test-conducted", "display": "HIV test conducted" } ], "text": "HIV test conducted" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/349cc173-d428-4943-825b-31474e8685e9", "resource": { "resourceType": "Procedure", "id": "349cc173-d428-4943-825b-31474e8685e9", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "Malaria-test-conducted", "display": "Malaria test conducted" } ], "text": "Malaria test conducted" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/f5bc8520-78d7-4100-a766-5f328bd74ea3", "resource": { "resourceType": "Procedure", "id": "f5bc8520-78d7-4100-a766-5f328bd74ea3", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:48:37.835+00:00", "source": "#YTLxacCQSTEjse8F", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE114", "display": "Urine test conducted" } ], "text": "Urine test conducted" }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "not-done", "display": "No" } ], "text": "No" }, "subject": { "reference": "Patient/b2f5093a-2375-481f-b6df-0b3dea866847" }, "encounter": { "reference": "Encounter/6ddaf5c4-51df-4f88-ae0a-4cc96471ffcd" }, "performedDateTime": "2022-09-12T08:18:26+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/38fcde7c-3822-4913-bd57-a0a81c25cb1b", "resource": { "resourceType": "Encounter", "id": "38fcde7c-3822-4913-bd57-a0a81c25cb1b", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:05.425+00:00", "source": "#2ClU1IDnX2fug6hA" }, "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "subject": { "reference": "Patient/ae7e6bd4-9597-40d2-bf58-44152b607d0c" }, "period": { "start": "2022-09-12T08:20:52+05:30", "end": "2022-09-12T23:59:59+05:30" }, "location": [ { "location": { "reference": "Location/3bb73153-6fb8-46dc-ac44-79a05b8c6e79" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/ae7e6bd4-9597-40d2-bf58-44152b607d0c", "resource": { "resourceType": "Patient", "id": "ae7e6bd4-9597-40d2-bf58-44152b607d0c", "meta": { "versionId": "1", "lastUpdated": "2022-09-11T05:51:01.706+00:00", "source": "#F6yVMvO2e1UGDPHH" }, "text": { "status": "generated", "div": "
Satest Sept 11 OFF
IdentifierT
AddressQ
Date of birth09 September 2022
" }, "extension": [ { "url": "http://iprdgroup.org/fhir/extention/state-origin", "valueCoding": { "code": "Anambra", "display": "Anambra" } }, { "url": "http://fhir.org/guides/who/anc-cds/StructureDefinition/occupation", "valueCoding": { "code": "teacher", "display": "Teacher" } }, { "url": "http://iprdgroup.org/fhir/extention/tribe", "valueCoding": { "code": "hausa", "display": "Hausa" } }, { "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", "valueCoding": { "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", "code": "1013", "display": "Christian" } } ], "identifier": [ { "system": "http://iprdgroup.com/identifiers/patient-card", "value": "T" }, { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=H4QKF42C9M9B&v=3&g=7dced608-9328-4909-9a14-8f9c9f5f3769&d=H4sIAAAAAAAAAC2OzW7CMBCEXwX5HAf/rr25Vdz7AoiD658EEULUOpEQ4t3rrXobzTezsy92TWxgLsWcQHiOWnluUCDHIA33BSMWW7QDZB2bW1SqHgElSuic6wFAK+GJrXSniUohAOWdlaDIIEL1+LdlhDXFyMBjcpobISX/0kJwyFYp1DH7Qmf22LJn1R3sharbN41Pta4/w/E45TDXqR8fe7+MhJdwz41/fJ4Op3Bfw3Vcmr2lwobzi90auuXn/3P1uWYaaHIP85bZ+/L+BeYV5FoIAQAA" } ], "name": [ { "family": "Off", "given": [ "Satest", "Sept 11" ] } ], "telecom": [ { "system": "phone", "value": "+91-123456789022" } ], "gender": "female", "birthDate": "2022-09-09", "address": [ { "line": [ "Q" ] } ], "contact": [ { "name": { "given": [ "Cvsb" ] }, "telecom": [ { "system": "phone", "value": "+91-949961337888561" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/20fb0f5b-887f-41cc-ba4f-1a0d9bbe8680", "resource": { "resourceType": "Observation", "id": "20fb0f5b-887f-41cc-ba4f-1a0d9bbe8680", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:05.425+00:00", "source": "#2ClU1IDnX2fug6hA", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/ae7e6bd4-9597-40d2-bf58-44152b607d0c" }, "encounter": { "reference": "Encounter/38fcde7c-3822-4913-bd57-a0a81c25cb1b" }, "effectiveDateTime": "2022-09-12T08:21:04+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueInteger": 3 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/645b4903-27f8-4f98-aafb-89ed103aeb13", "resource": { "resourceType": "Observation", "id": "645b4903-27f8-4f98-aafb-89ed103aeb13", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:05.425+00:00", "source": "#2ClU1IDnX2fug6hA", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/ae7e6bd4-9597-40d2-bf58-44152b607d0c" }, "encounter": { "reference": "Encounter/38fcde7c-3822-4913-bd57-a0a81c25cb1b" }, "effectiveDateTime": "2022-09-12T08:21:04+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueDateTime": "2022-09-01T00:00:00+05:30" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/f5ea0643-d99e-43f7-9db0-020cbe3bfc32", "resource": { "resourceType": "Encounter", "id": "f5ea0643-d99e-43f7-9db0-020cbe3bfc32", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:56.079+00:00", "source": "#NgT9stOfKfeedWud" }, "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "subject": { "reference": "Patient/edafa27c-05b1-4ebd-91cd-868c3da518aa" }, "period": { "start": "2022-09-12T08:21:41+05:30", "end": "2022-09-12T23:59:59+05:30" }, "location": [ { "location": { "reference": "Location/f9a01f5a-1b6c-4506-8962-9f21883fe62b" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/edafa27c-05b1-4ebd-91cd-868c3da518aa", "resource": { "resourceType": "Patient", "id": "edafa27c-05b1-4ebd-91cd-868c3da518aa", "meta": { "versionId": "1", "lastUpdated": "2022-09-11T03:54:14.371+00:00", "source": "#N2MjPaDWQFGTFM2A" }, "text": { "status": "generated", "div": "
Satest Sept 11 1
IdentifierT
AddressG
Oyo
Date of birth11 September 2022
" }, "identifier": [ { "system": "http://iprdgroup.com/identifiers/patient-card", "value": "T" }, { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=8C9EG22H2V76&v=3&g=b2f856b0-0336-48ff-bbda-7567221be891&d=H4sIAAAAAAAAAC2OwW7DIBBEfyXibBxYYAHfqtzzA1EOYIMdxXGtFluKovx7lqq30bzZnXmx28A6FiE7g1FwoRRy7XLmMQ6BW4MWQMbkvGQNmykqofXopRfYWNsiopIKKlsJWhKlhhDBodNaVKMST6L/69LC6Kxl4P1gFddCSh6VEByTAfCqTy7XN3tP2Qs0B3Otp9tPLZ9KWX+743FKYS5TO37v7TJWvIRHIv51Ph1O4bGG27iQvQ2ZdZcXuxO6p+f/uPJcUy0guYd5S+x9fX8AmO9P4QgBAAA=" } ], "name": [ { "family": "1", "given": [ "Satest", "Sept 11" ] } ], "telecom": [ { "system": "phone", "value": "+91-250147963258" } ], "gender": "male", "birthDate": "2022-09-11", "address": [ { "line": [ "G" ], "state": "Oyo" } ], "contact": [ { "telecom": [ { "system": "phone", "value": "+91-255888552228" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/f9873320-c389-4ab3-99e1-2e3c63c9334f", "resource": { "resourceType": "Observation", "id": "f9873320-c389-4ab3-99e1-2e3c63c9334f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:56.079+00:00", "source": "#NgT9stOfKfeedWud", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/edafa27c-05b1-4ebd-91cd-868c3da518aa" }, "encounter": { "reference": "Encounter/f5ea0643-d99e-43f7-9db0-020cbe3bfc32" }, "effectiveDateTime": "2022-09-12T08:21:54+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueInteger": 8 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/22bd2b62-fa31-45c8-8135-b81766742368", "resource": { "resourceType": "Observation", "id": "22bd2b62-fa31-45c8-8135-b81766742368", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:51:56.079+00:00", "source": "#NgT9stOfKfeedWud", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/edafa27c-05b1-4ebd-91cd-868c3da518aa" }, "encounter": { "reference": "Encounter/f5ea0643-d99e-43f7-9db0-020cbe3bfc32" }, "effectiveDateTime": "2022-09-12T08:21:54+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueDateTime": "2022-09-13T00:00:00+05:30" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6", "resource": { "resourceType": "Encounter", "id": "21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE" }, "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "period": { "start": "2022-09-12T08:22:50+05:30", "end": "2022-09-12T23:59:59+05:30" }, "location": [ { "location": { "reference": "Location/b3c6978f-8b3f-4917-a94f-f8e084a4500e" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/1577307f-88c2-4885-8fad-a1788515252f", "resource": { "resourceType": "Patient", "id": "1577307f-88c2-4885-8fad-a1788515252f", "meta": { "versionId": "1", "lastUpdated": "2022-09-09T11:21:26.075+00:00", "source": "#7aOE6fbnAhId0r3e" }, "text": { "status": "generated", "div": "
Satest 09 sept 2
Identifierhttps://OCLink.io/Q?s=RKYMC6PRES2C&v=3&g=67e6524e-4011-4afd-8546-99c57054c2d4&d=H4sIAAAAAAAAAC1OSw6CMBC9CumaKi3TFtgZ916AuKjtAAZEooWEEO7uVF29l3m/2djds4ppg1pJQA6ZEBxs43mhQPOydMpkCpz0wFI2kJVHnIgYIoFQaC2NlFCIeIhKScR9e4GyDQjLnTf5r/yWZxnXqKQsc4dFE2sWR95apom6xuj8ikNdCNO7Oh47tEPoDu1zOYxtlEf7QNJPl3Nyto/J3tuRzrNvWFVvrCepx/X/XFgnjANEFzvMyPbr/gH9+LaY9AAAAA==
AddressT
Date of birth03 September 2022
" }, "extension": [ { "url": "http://iprdgroup.org/fhir/extention/state-origin", "valueCoding": { "code": "Bayelsa", "display": "Bayelsa" } } ], "identifier": [ { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=RKYMC6PRES2C&v=3&g=67e6524e-4011-4afd-8546-99c57054c2d4&d=H4sIAAAAAAAAAC1OSw6CMBC9CumaKi3TFtgZ916AuKjtAAZEooWEEO7uVF29l3m/2djds4ppg1pJQA6ZEBxs43mhQPOydMpkCpz0wFI2kJVHnIgYIoFQaC2NlFCIeIhKScR9e4GyDQjLnTf5r/yWZxnXqKQsc4dFE2sWR95apom6xuj8ikNdCNO7Oh47tEPoDu1zOYxtlEf7QNJPl3Nyto/J3tuRzrNvWFVvrCepx/X/XFgnjANEFzvMyPbr/gH9+LaY9AAAAA==" } ], "name": [ { "family": "2", "given": [ "Satest", "09 sept" ] } ], "telecom": [ { "system": "phone", "value": "+91-123456789011" } ], "gender": "male", "birthDate": "2022-09-03", "address": [ { "line": [ "T" ] } ], "contact": [ { "telecom": [ { "system": "phone", "value": "+91-123456155899" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/7d3fa37b-352e-49aa-b697-758745534371", "resource": { "resourceType": "Observation", "id": "7d3fa37b-352e-49aa-b697-758745534371", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE24", "display": "Blood type" } ], "text": "Blood type" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "effectiveDateTime": "2022-09-12T08:23:14+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "883-9", "display": "Blood type - O" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/01027afe-3683-4631-b577-7782e1fc62c0", "resource": { "resourceType": "Observation", "id": "01027afe-3683-4631-b577-7782e1fc62c0", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE3", "display": "Current weight" } ], "text": "Current weight" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "effectiveDateTime": "2022-09-12T08:23:14+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueQuantity": { "value": 2, "code": "Kgs" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/e7db5181-62c5-4a91-8522-9c48ee45c314", "resource": { "resourceType": "Observation", "id": "e7db5181-62c5-4a91-8522-9c48ee45c314", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE1", "display": "Height" } ], "text": "Height" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "effectiveDateTime": "2022-09-12T08:23:14+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueQuantity": { "value": 5, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/8bb3f0be-554e-42aa-ba9a-c2ac81d018cf", "resource": { "resourceType": "Observation", "id": "8bb3f0be-554e-42aa-ba9a-c2ac81d018cf", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE29", "display": "Rh factor" } ], "text": "Rh factor" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "effectiveDateTime": "2022-09-12T08:23:14+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "10331-7", "display": "Positive" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/6f6c8494-8b28-495e-9587-0c803a511cdc", "resource": { "resourceType": "Observation", "id": "6f6c8494-8b28-495e-9587-0c803a511cdc", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/custom-codes", "code": "llin-given", "display": "LLIN given" } ], "text": "LLIN given" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "effectiveDateTime": "2022-09-12T08:23:14+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/98d3f90b-376e-4b79-8b30-a8e206f43c82", "resource": { "resourceType": "Procedure", "id": "98d3f90b-376e-4b79-8b30-a8e206f43c82", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T02:53:16.424+00:00", "source": "#MoP4QRHdElVD1AdE", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE114", "display": "Urine test conducted" } ], "text": "Urine test conducted" }, "subject": { "reference": "Patient/1577307f-88c2-4885-8fad-a1788515252f" }, "encounter": { "reference": "Encounter/21f30ec3-f7fb-4f05-a1c8-de5ad974d7c6" }, "performedDateTime": "2022-09-12T08:23:14+05:30", "recorder": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "asserter": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243", "resource": { "resourceType": "Encounter", "id": "d6017d0a-f7c5-4e38-aa01-20b09154c243", "meta": { "versionId": "2", "lastUpdated": "2022-09-12T03:09:03.586+00:00", "source": "#Ukd379gxMMOqkIdT", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "patient-registration", "display": "Patient Registration" } ] }, "extension": [ { "url": "http://iprdgroup.com/Extentions/sms-sent", "valueDateTime": "2022-09-12T03:09:01.284788460Z" } ], "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "serviceType": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "patient-registration", "display": "Patient Registration" } ], "text": "Patient Registration" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "period": { "start": "2022-09-12T03:58:50+01:00", "end": "2022-09-12T23:59:59+01:00" }, "location": [ { "location": { "reference": "Location/1e34f4f2-3ef0-489c-a7bb-3eba384c54bb" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/14fc2357-5379-4713-82a3-91d53bc780ae", "resource": { "resourceType": "Patient", "id": "14fc2357-5379-4713-82a3-91d53bc780ae", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:07:27.180+00:00", "source": "#oLRtMRXnrlGw9vVd" }, "text": { "status": "generated", "div": "
Perth THANAPON
IdentifierSPHCB/PHCIBC/987/02209/028
Address1 Ahmed Kunle street
Agbowo Oyo
Date of birth20 March 2001
" }, "extension": [ { "url": "http://iprdgroup.org/fhir/extention/state-origin", "valueCoding": { "code": "Edo", "display": "Edo" } }, { "url": "http://fhir.org/guides/who/anc-cds/StructureDefinition/occupation", "valueString": "Thespian " }, { "url": "http://iprdgroup.org/fhir/extention/tribe", "valueString": "Edo" }, { "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", "valueCoding": { "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", "code": "1013", "display": "Christian" } } ], "identifier": [ { "system": "http://iprdgroup.com/identifiers/patient-card", "value": "SPHCB/PHCIBC/987/02209/028" }, { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=1HRB2DPW9BYR&v=3&g=50c8c4fa-0616-401c-b7a1-818b90eeccb3&d=H4sIAAAAAAAAAC2OzY6DMAyEX6XKmVDnl4Tbqve+QNVDMAGqUhbtBqSq6rvXXu3Jo/nGHr/ErRetcIAB7ZAkeOWlBYWya5KSQYUuQs6InRGVmCnqawc+QlOZ2lgHMbC/EmhIFJrKex2dBqXZYBJJ4F+PBWcHq5LEvjHco2RnAKTPTutoMIeBz+xI2YuuDu7Kq9sPF0+lrL/t8TjlNJepHr/3ehkZL+mRiX+dT4dTeqzpNi5kb/0g2stL3And8/P/ufJcMxeQ3NO8ZfG+vj/JAtyXBAEAAA==" } ], "name": [ { "family": "Thanapon", "given": [ "Perth" ] } ], "telecom": [ { "system": "phone", "value": "+234-08131967570" } ], "gender": "female", "birthDate": "2011-03-20", "address": [ { "line": [ "1 Ahmed Kunle street " ], "city": "Agbowo", "district": "Ibarapa Central", "state": "Oyo" } ], "maritalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "U", "display": "Unmarried" } ], "text": "Unmarried" }, "contact": [ { "relationship": [ { "coding": [ { "code": "brother", "display": "Brother" } ], "text": "Brother" } ], "name": { "family": "Koothrappali", "given": [ "Rajesh" ] }, "telecom": [ { "system": "phone", "value": "+234-08037136668" } ], "address": { "line": [ "1 Ahmed Kunle street " ] } } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/10eecbe0-8cd4-47ca-9823-96c0a7f2dba1", "resource": { "resourceType": "Observation", "id": "10eecbe0-8cd4-47ca-9823-96c0a7f2dba1", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE19", "display": "Diastolic blood pressure" } ], "text": "Diastolic blood pressure" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 85, "code": "mmHg" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/91598f33-bbe0-4ada-b5a0-b3abddcf4e7b", "resource": { "resourceType": "Observation", "id": "91598f33-bbe0-4ada-b5a0-b3abddcf4e7b", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE17", "display": "Systolic blood pressure" } ], "text": "Systolic blood pressure" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 120, "code": "mmHg" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/2715baa0-d641-44c6-8d21-4401741817f2", "resource": { "resourceType": "Observation", "id": "2715baa0-d641-44c6-8d21-4401741817f2", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE1", "display": "Height" } ], "text": "Height" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 170, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/86fae448-e115-4359-962c-f5c466aaaef8", "resource": { "resourceType": "Observation", "id": "86fae448-e115-4359-962c-f5c466aaaef8", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE3", "display": "Current weight" } ], "text": "Current weight" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 78, "code": "Kgs" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/c59541ba-2ae2-44e0-b276-7b55fc05c59f", "resource": { "resourceType": "Observation", "id": "c59541ba-2ae2-44e0-b276-7b55fc05c59f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE24", "display": "Blood type" } ], "text": "Blood type" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "883-9", "display": "Blood type - AB" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/4282057f-4a03-471f-a086-d01d0599732b", "resource": { "resourceType": "Observation", "id": "4282057f-4a03-471f-a086-d01d0599732b", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE29", "display": "Rh factor" } ], "text": "Rh factor" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "10331-7", "display": "Negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/e952ee2f-154f-4354-b659-cc62d986fcfa", "resource": { "resourceType": "Observation", "id": "e952ee2f-154f-4354-b659-cc62d986fcfa", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE102", "display": "Reason syphilis test not done" } ], "text": "Reason syphilis test not done" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:42+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueString": "Not yet done " }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/2ea97b8c-a0be-40c2-944a-d510f7058ebd", "resource": { "resourceType": "Observation", "id": "2ea97b8c-a0be-40c2-944a-d510f7058ebd", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC-B7-DE98", "display": "Foetal Movement" } ], "text": "Foetal Movement" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B7.DE.99", "display": "Usual" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/bc2faa1b-5edd-4743-a1ff-4e8f9250b65f", "resource": { "resourceType": "Observation", "id": "bc2faa1b-5edd-4743-a1ff-4e8f9250b65f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://hl7.org/fhir/sid/icd-10", "code": "B54", "display": "Unspecified malaria" } ], "text": "Unspecified malaria" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueString": "positive" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/c40a734f-35c0-4119-98fd-f3ce62833fb6", "resource": { "resourceType": "Observation", "id": "c40a734f-35c0-4119-98fd-f3ce62833fb6", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE21", "display": "Foetal Height" } ], "text": "Foetal Height" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 20, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/ab61d77b-b38e-47e6-8545-75cce8eaad3e", "resource": { "resourceType": "Observation", "id": "ab61d77b-b38e-47e6-8545-75cce8eaad3e", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE106", "display": "foetal heart sound" } ], "text": "foetal heart sound" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": true }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/d95ad50f-775b-425b-83f6-f451ef3b13b1", "resource": { "resourceType": "Observation", "id": "d95ad50f-775b-425b-83f6-f451ef3b13b1", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE69", "display": "Hepatitis B test result - Other reason test not conducted (specify)" } ], "text": "Hepatitis B test result - Other reason test not conducted (specify)" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueString": "Not yet done " }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/c0e93ddf-be4b-4687-9daf-3a1de5fe2d50", "resource": { "resourceType": "Observation", "id": "c0e93ddf-be4b-4687-9daf-3a1de5fe2d50", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:50.984+00:00", "source": "#pXxpBcMOuPwGhK8s", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE111", "display": "Foetal Position" } ], "text": "Foetal Position" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE113", "display": "Vertex" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/60a6cb21-7a51-42ee-87f2-d51c361bc639", "resource": { "resourceType": "Observation", "id": "60a6cb21-7a51-42ee-87f2-d51c361bc639", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:50.984+00:00", "source": "#pXxpBcMOuPwGhK8s", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B10.DE96", "display": "Reason iron and folic acid not prescribed" } ], "text": "Reason iron and folic acid not prescribed" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueString": "Out of stock " }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/c2771c95-181a-4eba-8e29-e00aadea3caa", "resource": { "resourceType": "Observation", "id": "c2771c95-181a-4eba-8e29-e00aadea3caa", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:50.984+00:00", "source": "#pXxpBcMOuPwGhK8s", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "calcium-tablet-given", "display": "Given calcium tablet" } ], "text": "Given calcium tablet" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": true }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/f36ca595-92fc-4a0f-aef2-943b92a2b7cc", "resource": { "resourceType": "Observation", "id": "f36ca595-92fc-4a0f-aef2-943b92a2b7cc", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:50.984+00:00", "source": "#pXxpBcMOuPwGhK8s", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/outcome-of-visit", "code": "outcome-of-visit", "display": "Outcome of visit" } ], "text": "Outcome of visit" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://iprdgroup.com/outcome-of-visit", "code": "IPRD.02", "display": "Treated" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/64841010-622a-49a7-8848-010e410e5a6f", "resource": { "resourceType": "Observation", "id": "64841010-622a-49a7-8848-010e410e5a6f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:50.984+00:00", "source": "#pXxpBcMOuPwGhK8s", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/custom-codes", "code": "llin-given", "display": "LLIN given" } ], "text": "LLIN given" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:11:43+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": false }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/11c68b1f-b4d2-430c-bb33-8e0509bea5da", "resource": { "resourceType": "Observation", "id": "11c68b1f-b4d2-430c-bb33-8e0509bea5da", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:13:32.459+00:00", "source": "#ir7nr553QdTUKwBG", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:13:31+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueInteger": 5 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/8be09fc8-9bfa-4adb-99b4-d2f51ac4abe8", "resource": { "resourceType": "Observation", "id": "8be09fc8-9bfa-4adb-99b4-d2f51ac4abe8", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:13:32.459+00:00", "source": "#ir7nr553QdTUKwBG", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:13:31+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueDateTime": "2022-07-12T00:00:00+01:00" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/33fbdc8c-a905-465e-a00c-246338c1f6b3", "resource": { "resourceType": "Observation", "id": "33fbdc8c-a905-465e-a00c-246338c1f6b3", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:14:07.893+00:00", "source": "#emPNaomy7E2ojikY", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:14:07+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueInteger": 2 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/88cae2d8-4c7c-4322-867d-15b6999f2841", "resource": { "resourceType": "Observation", "id": "88cae2d8-4c7c-4322-867d-15b6999f2841", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:14:07.893+00:00", "source": "#emPNaomy7E2ojikY", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:14:07+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueDateTime": "2021-10-14T00:00:00+01:00" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/0c2559fd-07f3-432e-a4ea-7f57b9c15645", "resource": { "resourceType": "Observation", "id": "0c2559fd-07f3-432e-a4ea-7f57b9c15645", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE19", "display": "Diastolic blood pressure" } ], "text": "Diastolic blood pressure" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 92, "code": "mmHg" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/4bf2bce8-3260-4fc8-9795-e98549144f0d", "resource": { "resourceType": "Observation", "id": "4bf2bce8-3260-4fc8-9795-e98549144f0d", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE1", "display": "Height" } ], "text": "Height" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 160, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/5e1c21d4-d489-450d-aada-872e4ad13d8a", "resource": { "resourceType": "Observation", "id": "5e1c21d4-d489-450d-aada-872e4ad13d8a", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE107", "display": "Syphilis test result" } ], "text": "Syphilis test result" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE109", "display": "Syphilis negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/6e94fb81-b00b-42e2-bd66-496fc2e0af54", "resource": { "resourceType": "Observation", "id": "6e94fb81-b00b-42e2-bd66-496fc2e0af54", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE3", "display": "Current weight" } ], "text": "Current weight" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 68, "code": "Kgs" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/4009f61c-1f30-4f1a-b645-b857ff0113d5", "resource": { "resourceType": "Observation", "id": "4009f61c-1f30-4f1a-b645-b857ff0113d5", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE24", "display": "Blood type" } ], "text": "Blood type" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "883-9", "display": "Blood type - AB" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/291bdf32-5b4f-4efe-9eab-c4db3d24b7a6", "resource": { "resourceType": "Observation", "id": "291bdf32-5b4f-4efe-9eab-c4db3d24b7a6", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE17", "display": "Systolic blood pressure" } ], "text": "Systolic blood pressure" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 135, "code": "mmHg" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/5bd70a1a-ea3a-405f-b791-9873fbc0d3ca", "resource": { "resourceType": "Observation", "id": "5bd70a1a-ea3a-405f-b791-9873fbc0d3ca", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE29", "display": "Rh factor" } ], "text": "Rh factor" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:15+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://loinc.org", "code": "10331-7", "display": "Negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/cc63dda4-8957-47b5-b8c4-0d0fda87ddf0", "resource": { "resourceType": "Observation", "id": "cc63dda4-8957-47b5-b8c4-0d0fda87ddf0", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE106", "display": "foetal heart sound" } ], "text": "foetal heart sound" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": true }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/a795055b-f4a6-4df3-83fb-84b5b68b7066", "resource": { "resourceType": "Observation", "id": "a795055b-f4a6-4df3-83fb-84b5b68b7066", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://hl7.org/fhir/sid/icd-10", "code": "B54", "display": "Unspecified malaria" } ], "text": "Unspecified malaria" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/21b61c74-f13c-47ed-9ce3-570cb87bf611", "resource": { "resourceType": "Observation", "id": "21b61c74-f13c-47ed-9ce3-570cb87bf611", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "registered", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "vital-signs", "display": "Vital Signs" } ], "text": "Vital Signs" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE21", "display": "Foetal Height" } ], "text": "Foetal Height" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueQuantity": { "value": 23, "code": "cms" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/d19cb207-fe40-4a26-9eca-00fc5b8f9429", "resource": { "resourceType": "Observation", "id": "d19cb207-fe40-4a26-9eca-00fc5b8f9429", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/ValueSet/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC-B7-DE98", "display": "Foetal Movement" } ], "text": "Foetal Movement" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B7.DE.99", "display": "Usual" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/bea1e08b-b68e-49c3-9b20-4ca1a8aef10b", "resource": { "resourceType": "Observation", "id": "bea1e08b-b68e-49c3-9b20-4ca1a8aef10b", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE66", "display": "Hepatitis B test result" } ], "text": "Hepatitis B test result" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE73", "display": "Hepatitis B negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/e66f1054-e691-4c87-b184-64f9e0c708d4", "resource": { "resourceType": "Observation", "id": "e66f1054-e691-4c87-b184-64f9e0c708d4", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "procedure", "display": "Procedure" } ], "text": "Procedure" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE89", "display": "hepatitis C test result" } ], "text": "hepatitis C test result" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE76", "display": "Hepatitis C negative" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/b72ea6f2-91fc-4b86-bb05-9045d99dbaaf", "resource": { "resourceType": "Observation", "id": "b72ea6f2-91fc-4b86-bb05-9045d99dbaaf", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://loinc.org", "code": "72180-3", "display": "Given iron and folic acid" } ], "text": "Given iron and folic acid" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": true }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/dca7085b-1996-4886-8d87-8cdbc19f36e7", "resource": { "resourceType": "Observation", "id": "dca7085b-1996-4886-8d87-8cdbc19f36e7", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/custom-codes", "code": "llin-given", "display": "LLIN given" } ], "text": "LLIN given" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": false }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/34b988e3-a6d2-4d5e-ae96-d614ffd9aa4a", "resource": { "resourceType": "Observation", "id": "34b988e3-a6d2-4d5e-ae96-d614ffd9aa4a", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "calcium-tablet-given", "display": "Given calcium tablet" } ], "text": "Given calcium tablet" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueBoolean": true }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/419f4b0d-4b8d-4c59-909e-b23922829470", "resource": { "resourceType": "Observation", "id": "419f4b0d-4b8d-4c59-909e-b23922829470", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "code": { "coding": [ { "system": "http://iprdgroup.com/outcome-of-visit", "code": "outcome-of-visit", "display": "Outcome of visit" } ], "text": "Outcome of visit" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://iprdgroup.com/outcome-of-visit", "code": "IPRD.02", "display": "Treated" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/da9eed6d-5efc-46fe-98cc-39ba31eb678f", "resource": { "resourceType": "Observation", "id": "da9eed6d-5efc-46fe-98cc-39ba31eb678f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "preliminary", "category": [ { "coding": [ { "system": "http://hl7.org/fhir/observation-category", "code": "survey", "display": "Survey" } ], "text": "Survey" } ], "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE111", "display": "Foetal Position" } ], "text": "Foetal Position" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "effectiveDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } ], "valueCodeableConcept": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B8.DE113", "display": "Vertex" } ] } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/91c293e9-f3e4-4564-aa46-b3d5327e361c", "resource": { "resourceType": "Procedure", "id": "91c293e9-f3e4-4564-aa46-b3d5327e361c", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "288254005", "display": "Maternal nutrition" } ], "text": "Maternal nutrition" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:42+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/4355abbd-05f1-4c8c-9c9d-854321bcafca", "resource": { "resourceType": "Procedure", "id": "4355abbd-05f1-4c8c-9c9d-854321bcafca", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://unstats.un.org/unsd/methods/m49/m49.htm", "code": "002", "display": "HIV testing services" } ], "text": "HIV testing services" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:42+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/5c072474-8f8d-49e0-bce4-17051843aa05", "resource": { "resourceType": "Procedure", "id": "5c072474-8f8d-49e0-bce4-17051843aa05", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE60", "display": "Hepatitis B test conducted" } ], "text": "Hepatitis B test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:42+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/3ae63884-ad58-4be1-9b1c-3d738d085c2e", "resource": { "resourceType": "Procedure", "id": "3ae63884-ad58-4be1-9b1c-3d738d085c2e", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:44.138+00:00", "source": "#V1SJJYsIkDW2FI6P", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE96", "display": "Syphilis test conducted" } ], "text": "Syphilis test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:42+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/f8e7df2d-1570-4270-ae2b-c4dfdc67dbd6", "resource": { "resourceType": "Procedure", "id": "f8e7df2d-1570-4270-ae2b-c4dfdc67dbd6", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "hbsAg-test-conducted", "display": "HbsAg test conducted" } ], "text": "HbsAg test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/ec39c593-24e3-44d2-8f16-e3d9ea4a8df0", "resource": { "resourceType": "Procedure", "id": "ec39c593-24e3-44d2-8f16-e3d9ea4a8df0", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "hiv-test-conducted", "display": "HIV test conducted" } ], "text": "HIV test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/de61a51d-683f-4cc0-af9d-ecef69fe89d4", "resource": { "resourceType": "Procedure", "id": "de61a51d-683f-4cc0-af9d-ecef69fe89d4", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE175", "display": "Blood haemoglobin test conducted" } ], "text": "Blood haemoglobin test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/7a641ea4-79d3-49db-9935-2e1c7f06ae3c", "resource": { "resourceType": "Procedure", "id": "7a641ea4-79d3-49db-9935-2e1c7f06ae3c", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE114", "display": "Urine test conducted" } ], "text": "Urine test conducted" }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "not-done", "display": "No" } ], "text": "No" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/bbe3ab1e-9d6e-45f1-870a-a252d3c120e8", "resource": { "resourceType": "Procedure", "id": "bbe3ab1e-9d6e-45f1-870a-a252d3c120e8", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "Malaria-test-conducted", "display": "Malaria test conducted" } ], "text": "Malaria test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/636c22fd-8f43-4b83-b372-664622829c1f", "resource": { "resourceType": "Procedure", "id": "636c22fd-8f43-4b83-b372-664622829c1f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:11:47.458+00:00", "source": "#9Lu6qJFWsdfKTDZa", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "sickle-cell-test-conducted", "display": "Sickle test conducted" } ], "text": "Sickle test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:11:43+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/75fe55e1-47fa-4c1d-9062-99ff1561753d", "resource": { "resourceType": "Procedure", "id": "75fe55e1-47fa-4c1d-9062-99ff1561753d", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE96", "display": "Syphilis test conducted" } ], "text": "Syphilis test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:15+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/fc674e6a-51e7-4e31-923e-5e6533bc1ceb", "resource": { "resourceType": "Procedure", "id": "fc674e6a-51e7-4e31-923e-5e6533bc1ceb", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "288254005", "display": "Maternal nutrition" } ], "text": "Maternal nutrition" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:15+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/e9096d38-2657-4373-83f3-66df4610a61d", "resource": { "resourceType": "Procedure", "id": "e9096d38-2657-4373-83f3-66df4610a61d", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE60", "display": "Hepatitis B test conducted" } ], "text": "Hepatitis B test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:15+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/2e942eb4-844e-48e9-acd1-21bc7d060a3f", "resource": { "resourceType": "Procedure", "id": "2e942eb4-844e-48e9-acd1-21bc7d060a3f", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:17.013+00:00", "source": "#nnbbA1Y0GdMVmM5r", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-type", "code": "76", "display": "Health Counselling" } ], "text": "Health Counselling" }, "code": { "coding": [ { "system": "http://loinc.org", "code": "43895-7", "display": "Early initiation of breastfeeding" } ], "text": "Early initiation of breastfeeding" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:15+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/45604d87-c88d-44db-8e84-0f0cb305bc98", "resource": { "resourceType": "Procedure", "id": "45604d87-c88d-44db-8e84-0f0cb305bc98", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "hiv-test-conducted", "display": "HIV test conducted" } ], "text": "HIV test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:16+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/ffc2d1ec-51af-4e25-b2a7-656d558d79f7", "resource": { "resourceType": "Procedure", "id": "ffc2d1ec-51af-4e25-b2a7-656d558d79f7", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "Malaria-test-conducted", "display": "Malaria test conducted" } ], "text": "Malaria test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:16+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/44f8ea93-826a-46c8-8a95-23dc89551e00", "resource": { "resourceType": "Procedure", "id": "44f8ea93-826a-46c8-8a95-23dc89551e00", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "not-done", "code": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "sickle-cell-test-conducted", "display": "Sickle test conducted" } ], "text": "Sickle test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:16+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/4f0d489c-2db2-4d22-a317-3b4f8ba747fd", "resource": { "resourceType": "Procedure", "id": "4f0d489c-2db2-4d22-a317-3b4f8ba747fd", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "category": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE114", "display": "Urine test conducted" } ], "text": "Urine test conducted" }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "not-done", "display": "No" } ], "text": "No" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:16+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Procedure/b9082b19-4ee8-45ad-a4bf-aa0d02642813", "resource": { "resourceType": "Procedure", "id": "b9082b19-4ee8-45ad-a4bf-aa0d02642813", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:20.392+00:00", "source": "#1dA2LJHs1VpWjnyk", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B9.DE78", "display": "hepatitis C test conducted" } ], "text": "hepatitis C test conducted" }, "subject": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "performedDateTime": "2022-09-12T04:16:16+01:00", "recorder": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "asserter": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" }, "performer": [ { "actor": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } } ], "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Immunization/256f074a-2df7-414e-a289-273a9f27b9a1", "resource": { "resourceType": "Immunization", "id": "256f074a-2df7-414e-a289-273a9f27b9a1", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:16:25.421+00:00", "source": "#DLS9x6q1KkQ0xkLQ", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "vaccineCode": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B10.DE245", "display": "IPTp-SP dose 1 provided" } ], "text": "IPTp-SP dose 1 provided" }, "patient": { "reference": "Patient/14fc2357-5379-4713-82a3-91d53bc780ae" }, "encounter": { "reference": "Encounter/d6017d0a-f7c5-4e38-aa01-20b09154c243" }, "occurrenceDateTime": "2022-09-12T04:16:16+01:00", "performer": [ { "actor": { "reference": "PractitionerRole/07f64f7c-8366-40c1-b87c-0642ffa038b7" } } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/723981b9-53af-4e7f-b7e8-ddf511ef2329", "resource": { "resourceType": "Encounter", "id": "723981b9-53af-4e7f-b7e8-ddf511ef2329", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:51:48.026+00:00", "source": "#LgfIupRVOoUnEH7x" }, "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "subject": { "reference": "Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0" }, "period": { "start": "2022-09-12T09:21:36+05:30", "end": "2022-09-12T23:59:59+05:30" }, "location": [ { "location": { "reference": "Location/49d48c26-5f91-4185-809f-857db8720106" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0", "resource": { "resourceType": "Patient", "id": "3b8fb605-bb5d-4b78-846f-d3327d3c7ee0", "meta": { "versionId": "1", "lastUpdated": "2022-09-11T14:10:50.638+00:00", "source": "#byvudwpg4ichweXy" }, "text": { "status": "generated", "div": "
Vishal1 SEP11
Identifierhttps://OCLink.io/Q?s=ATGNYBK1WNB9&v=3&g=7f7203b6-652f-4720-ac43-ad5777519fe8&d=H4sIAAAAAAAAAC1OSw6CMBC9iuna0f4r7Ax7L0BY1NKC4SPRQkIId3dKXM2b95k3G3nVJCcmGE7FU4NWPIDEBayTAmytjDGKZcHfyJn0aIU0p5RBEHEyrXlGlZQHkZQMgTvuSuSDZBZcbQRIyhg8BaWgveI8E87fQkotDr0lP59UlaLzJxW1MU7f/Hptve1je2ney2VskjzawaN+fxSnwg6TfTUj0nMdSF5upEOp8+v/ubhOPhUgXGw/e7JX+w/CPge59AAAAA==
AddressA
Date of birth16 August 2000
" }, "extension": [ { "url": "http://fhir.org/guides/who/anc-cds/StructureDefinition/occupation", "valueCoding": { "code": "teacher", "display": "Teacher" } }, { "url": "http://iprdgroup.org/fhir/extention/tribe", "valueCoding": { "code": "hausa", "display": "Hausa" } }, { "url": "http://hl7.org/fhir/StructureDefinition/patient-religion", "valueCoding": { "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation", "code": "1013", "display": "Christian" } }, { "url": "http://iprdgroup.org/fhir/extention/marriage", "valueInteger": 20 } ], "identifier": [ { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=ATGNYBK1WNB9&v=3&g=7f7203b6-652f-4720-ac43-ad5777519fe8&d=H4sIAAAAAAAAAC1OSw6CMBC9iuna0f4r7Ax7L0BY1NKC4SPRQkIId3dKXM2b95k3G3nVJCcmGE7FU4NWPIDEBayTAmytjDGKZcHfyJn0aIU0p5RBEHEyrXlGlZQHkZQMgTvuSuSDZBZcbQRIyhg8BaWgveI8E87fQkotDr0lP59UlaLzJxW1MU7f/Hptve1je2ney2VskjzawaN+fxSnwg6TfTUj0nMdSF5upEOp8+v/ubhOPhUgXGw/e7JX+w/CPge59AAAAA==" } ], "name": [ { "family": "Sep11", "given": [ "Vishal1" ] } ], "telecom": [ { "system": "phone", "value": "+91-080808080808" } ], "gender": "female", "birthDate": "2000-08-16", "address": [ { "line": [ "A" ] } ], "maritalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus", "code": "M", "display": "Married" } ], "text": "Married" }, "contact": [ { "telecom": [ { "system": "phone", "value": "+91-080808080808" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/8f7711a5-aa3d-4be3-ac04-129397feabc9", "resource": { "resourceType": "Observation", "id": "8f7711a5-aa3d-4be3-ac04-129397feabc9", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:51:48.026+00:00", "source": "#LgfIupRVOoUnEH7x", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0" }, "encounter": { "reference": "Encounter/723981b9-53af-4e7f-b7e8-ddf511ef2329" }, "effectiveDateTime": "2022-09-12T09:21:47+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueInteger": 3 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/0ea0afb3-244a-4803-a3dd-37b48ebf94eb", "resource": { "resourceType": "Observation", "id": "0ea0afb3-244a-4803-a3dd-37b48ebf94eb", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T03:51:48.026+00:00", "source": "#LgfIupRVOoUnEH7x", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0" }, "encounter": { "reference": "Encounter/723981b9-53af-4e7f-b7e8-ddf511ef2329" }, "effectiveDateTime": "2022-09-12T09:21:47+05:30", "performer": [ { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } ], "valueDateTime": "2022-09-03T00:00:00+05:30" }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Immunization/1acf6b92-adf9-43f7-a128-fe6c3fe7cc98", "resource": { "resourceType": "Immunization", "id": "1acf6b92-adf9-43f7-a128-fe6c3fe7cc98", "meta": { "versionId": "1", "lastUpdated": "2022-09-11T14:13:06.065+00:00", "source": "#mKUMDMLDMlO9Q7WB", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "vaccineCode": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B10.DE247", "display": "IPTp-SP dose 2 provided" } ], "text": "IPTp-SP dose 2 provided" }, "patient": { "reference": "Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0" }, "encounter": { "reference": "Encounter/d7994bf0-b81b-42f7-92dd-0183f9422e38" }, "occurrenceDateTime": "2022-09-11T19:42:18+05:30", "performer": [ { "actor": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Immunization/42c89dc9-ea93-4bc9-a292-1b291bcc702e", "resource": { "resourceType": "Immunization", "id": "42c89dc9-ea93-4bc9-a292-1b291bcc702e", "meta": { "versionId": "1", "lastUpdated": "2022-09-11T14:13:06.065+00:00", "source": "#mKUMDMLDMlO9Q7WB", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-visit", "display": "Anc visit" } ] }, "status": "completed", "vaccineCode": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B10.DE167", "display": "Tetanus toxoid (TT) 2 immunization provided" } ], "text": "Tetanus toxoid (TT) 2 immunization provided" }, "patient": { "reference": "Patient/3b8fb605-bb5d-4b78-846f-d3327d3c7ee0" }, "encounter": { "reference": "Encounter/d7994bf0-b81b-42f7-92dd-0183f9422e38" }, "occurrenceDateTime": "2022-09-11T19:42:18+05:30", "performer": [ { "actor": { "reference": "PractitionerRole/ce490179-7012-40e6-83f8-aa941d1c0e89" } } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Encounter/a83da9a7-9612-4371-ae7e-a92439bd2b85", "resource": { "resourceType": "Encounter", "id": "a83da9a7-9612-4371-ae7e-a92439bd2b85", "meta": { "versionId": "2", "lastUpdated": "2022-09-12T08:16:48.065+00:00", "source": "#WAlPH4qP5V10WRyB", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "patient-registration", "display": "Patient Registration" } ] }, "extension": [ { "url": "http://iprdgroup.com/Extentions/sms-sent", "valueDateTime": "2022-09-12T08:16:45.017574614Z" } ], "class": { "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", "code": "IMP", "display": "inpatient encounter" }, "serviceType": { "coding": [ { "system": "https://iprdgroup.com/custom-codes", "code": "patient-registration", "display": "Patient Registration" } ], "text": "Patient Registration" }, "subject": { "reference": "Patient/2b941e0d-add0-47b3-bfe1-1bf412f40a27" }, "period": { "start": "2022-09-12T10:14:21+02:00", "end": "2022-09-12T23:59:59+02:00" }, "location": [ { "location": { "reference": "Location/e19e3cf4-8157-4292-a873-a7ff00c924af" } }, { "location": { "reference": "Location/fd645af5-a101-4342-955e-464d81289480" } } ], "serviceProvider": { "reference": "Organization/e15b899b-8d94-4279-8cb7-3eb90a14279b" } }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Patient/2b941e0d-add0-47b3-bfe1-1bf412f40a27", "resource": { "resourceType": "Patient", "id": "2b941e0d-add0-47b3-bfe1-1bf412f40a27", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T08:16:23.642+00:00", "source": "#n3GS4TZkXqSEQLmE" }, "text": { "status": "generated", "div": "
Tshepo NAGE3
Identifier1155
Address96
Date of birth10 August 1993
" }, "identifier": [ { "system": "http://iprdgroup.com/identifiers/patient-card", "value": "1155" }, { "system": "http://iprdgroup.com/identifiers/ocl", "value": "https://OCLink.io/Q?s=4W71H69B4K34&v=3&g=6ca44645-59ce-4ee4-93c5-e3ad85ff8649&d=H4sIAAAAAAAAAC2OS27DMAxErxJobTn6ULTkXZF9LxBkocqUHcRxjFY2EAS5e6miKw74Zjh8iesgeoEpAiA46UIiCUQgg01Oko2Ddzl7hCAaMbNVGmy1UsFa3RjfKus79L7ClWnHovDUiCZ0ymElpZKaT39loBxk0FGmobMSlNbyyyolkZwxXEs+1zN7Yu/ZNAd3qdHtu7ZPpaw//fE4UZzL1I6PvV3Gipd4J+Yfn6fDKd7XeB0XXm9DFv35JW6MbvT8f648V6oFLPc4byTel/cvfXljhwkBAAA=" } ], "name": [ { "family": "Nage3", "given": [ "Tshepo" ] } ], "telecom": [ { "system": "phone", "value": "+234-66666666666" } ], "birthDate": "1993-08-10", "address": [ { "line": [ "96" ] } ], "contact": [ { "telecom": [ { "system": "phone", "value": "+234-999999999999" } ] } ] }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/a285f8bd-c709-4746-a503-b24aacff8558", "resource": { "resourceType": "Observation", "id": "a285f8bd-c709-4746-a503-b24aacff8558", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T08:16:58.309+00:00", "source": "#dq8MJZnGjqELeqjM", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "127362006", "display": "Previous pregnancies" } ], "text": "Previous pregnancies" }, "subject": { "reference": "Patient/2b941e0d-add0-47b3-bfe1-1bf412f40a27" }, "encounter": { "reference": "Encounter/a83da9a7-9612-4371-ae7e-a92439bd2b85" }, "effectiveDateTime": "2022-09-12T10:16:56+02:00", "performer": [ { "reference": "PractitionerRole/7ade9d12-539a-4bbb-9b3a-549aaf090378" } ], "valueInteger": 1 }, "search": { "mode": "match" } }, { "fullUrl": "http://malaria1.opencampaignlink.org/fhir/Observation/0d8aa15b-d10d-4ccb-94fd-64c6aa89ab0e", "resource": { "resourceType": "Observation", "id": "0d8aa15b-d10d-4ccb-94fd-64c6aa89ab0e", "meta": { "versionId": "1", "lastUpdated": "2022-09-12T08:16:58.309+00:00", "source": "#dq8MJZnGjqELeqjM", "tag": [ { "system": "https://www.iprdgroup.com/ValueSet/Workflow/tags", "code": "anc-registration", "display": "Anc registration" } ] }, "code": { "coding": [ { "system": "http://fhir.org/guides/who/anc-cds/CodeSystem/anc-custom-codes", "code": "ANC.B6.DE14", "display": "Last menstrual period (LMP) date" } ], "text": "Last menstrual period (LMP) date" }, "subject": { "reference": "Patient/2b941e0d-add0-47b3-bfe1-1bf412f40a27" }, "encounter": { "reference": "Encounter/a83da9a7-9612-4371-ae7e-a92439bd2b85" }, "effectiveDateTime": "2022-09-12T10:16:56+02:00", "performer": [ { "reference": "PractitionerRole/7ade9d12-539a-4bbb-9b3a-549aaf090378" } ], "valueDateTime": "2022-08-10T00:00:00+02:00" }, "search": { "mode": "match" } } ] } """.trimIndent()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy