diff --git a/.github/actions/remote-branch/LICENSE b/.github/actions/remote-branch/LICENSE new file mode 100644 index 00000000000..ade79f7960a --- /dev/null +++ b/.github/actions/remote-branch/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Josiah Siegel + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.github/actions/remote-branch/README.md b/.github/actions/remote-branch/README.md new file mode 100644 index 00000000000..af36d8f980a --- /dev/null +++ b/.github/actions/remote-branch/README.md @@ -0,0 +1,106 @@ +# Remote Branch Action + +## Synopsis + +1. Create a branch on a remote repository. +2. [actions/checkout](https://github.com/actions/checkout) determins the active repo. + +## Usage + +### Single repo +```yml +jobs: + create-branch-action: + name: Create branch + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Create branch + uses: CDCgov/prime-reportstream/.github/actions/remote-branch@v1.0.1 + with: + branch: new-branch +``` +### Single alternative repo +```yml +jobs: + create-branch-action: + name: Create branch + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Checkout alt repo + uses: actions/checkout@v4 + with: + sparse-checkout: . + repository: me/alt-repo + token: ${{ secrets.ALT_REPO_TOKEN }} + path: alt-repo + + - name: Create branch on alt repo + uses: CDCgov/prime-reportstream/.github/actions/remote-branch@v1.0.1 + with: + branch: new-branch-alt-repo + path: alt-repo +``` +### Multiple repos +```yml +jobs: + create-branch-action: + name: Create branch + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v4 + + - name: Checkout second repo + uses: actions/checkout@v4 + with: + sparse-checkout: . + repository: me/second-repo + token: ${{ secrets.SECONDARY_REPO_TOKEN }} + path: second-repo + + - name: Create branch + id: create-branch-action + uses: CDCgov/prime-reportstream/.github/actions/remote-branch@v1.0.1 + with: + branch: new-branch + + - name: Create branch on second repo + id: create-branch-action-second-repo + uses: CDCgov/prime-reportstream/.github/actions/remote-branch@v1.0.1 + with: + branch: new-branch-second-repo + path: second-repo + + - name: Get create branch status + run: echo ${{ steps.create-branch-action.outputs.create-status }} + + - name: Get create branch status on second repo + run: echo ${{ steps.create-branch-action-second-repo.outputs.create-status }} +``` + +## Inputs + +```yml +inputs: + branch: + description: Branch name + required: true + path: + description: Relative path under $GITHUB_WORKSPACE to place the repository + required: false + default: '.' +``` + +## Outputs +```yml +outputs: + create-status: + description: Branch creation status + value: ${{ steps.create-branch.outputs.create_status }} +``` diff --git a/.github/actions/remote-branch/action.yml b/.github/actions/remote-branch/action.yml new file mode 100644 index 00000000000..215d2203407 --- /dev/null +++ b/.github/actions/remote-branch/action.yml @@ -0,0 +1,61 @@ +# action.yml +name: Remote Branch Action +description: Create and manage a remote branch +branding: + icon: 'git-branch' + color: 'blue' +inputs: + branch: + description: Branch name + required: true + path: + description: Relative path under $GITHUB_WORKSPACE to place the repository + required: false + default: '.' +outputs: + create-status: + description: Branch creation status + value: ${{ steps.create-branch.outputs.create_status }} + +runs: + using: "composite" + steps: + + - name: Create branch + id: create-branch + working-directory: ${{ inputs.path }} + shell: bash + run: | + # Assign the arguments to variables + branch_name=${{ inputs.branch }} + + # Create a new branch locally + git checkout -b $branch_name + + # Check if the branch exists on the remote + check_status=$(git ls-remote --heads origin $branch_name | wc -l) + + # Check if the branch does not exist on the remote + if [ $check_status -eq 0 ]; then + # Push the new branch to the remote repository using the token + git push -u origin $branch_name + + # Store the status of the push command + status=$? + + # Check if the push was successful + if [ $status -eq 0 ]; then + # Print a success message + echo "Branch $branch_name created and pushed" + else + # Print an error message + echo "Branch creation failed with status $status" + status="Branch creation failed with status $status" + fi + else + # Print a message that the branch already exists on the remote + echo "Branch $branch_name already exists" + status="Branch $branch_name already exists" + fi + + echo "create_status=$status" >> $GITHUB_OUTPUT diff --git a/.github/actions/terraform-stats/.gitignore b/.github/actions/terraform-stats/.gitignore new file mode 100644 index 00000000000..4d6246fd61a --- /dev/null +++ b/.github/actions/terraform-stats/.gitignore @@ -0,0 +1,2 @@ +terraform/*.git +.github diff --git a/.github/actions/terraform-stats/LICENSE b/.github/actions/terraform-stats/LICENSE new file mode 100644 index 00000000000..1c50494ad20 --- /dev/null +++ b/.github/actions/terraform-stats/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Josiah Siegel + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.github/actions/terraform-stats/README.md b/.github/actions/terraform-stats/README.md new file mode 100644 index 00000000000..84522f09306 --- /dev/null +++ b/.github/actions/terraform-stats/README.md @@ -0,0 +1,107 @@ +# Terraform Stats +## Synopsis + +Output the following statistics for the Terraform environment: +1. Terraform version +2. Drift count + * "Drift" refers to changes made outside of Terraform and does not necessary match any resources listed for changes. +3. Resource drifts +4. Change count + * "Change" refers to change actions that Terraform plans to use to move from the prior state to a new state. +5. Change percent + * Percentage of changes to total resources. +6. Resource changes + +## Usage + +```yml +- name: Terraform stats + uses: josiahsiegel/terraform-stats@ + id: stats + with: + terraform-directory: ${{ env.tf-dir }} + terraform-version: 1.1.9 +- name: Get outputs + run: | + echo "terraform-version: ${{ steps.stats.outputs.terraform-version }}" + echo "drift-count: ${{ steps.stats.outputs.drift-count }}" + echo "resource-drifts: ${{ steps.stats.outputs.resource-drifts }}" + echo "change-count: ${{ steps.stats.outputs.change-count }}" + echo "change-percent: ${{ steps.stats.outputs.change-percent }}" + echo "resource-changes: ${{ steps.stats.outputs.resource-changes }}" +``` + +## Workflow summary + +### :construction: Terraform Stats :construction: + +* change-count: 2 +* change-percent: 100 +* resource-changes: +```json +[ + { + "address": "docker_container.nginx", + "changes": [ + "create" + ] + }, + { + "address": "docker_image.nginx", + "changes": [ + "create" + ] + } +] +``` + +## Inputs + +```yml +inputs: + terraform-directory: + description: Terraform commands will run in this location. + required: true + default: "./terraform" + include-no-op: + description: "\"no-op\" refers to the before and after Terraform changes are identical as a value will only be known after apply." + required: true + default: false + add-args: + description: Pass additional arguments to Terraform plan. + required: true + default: "" + upload-plan: + description: Upload plan file. true or false + required: true + default: false + upload-retention-days: + description: Number of days to keep uploaded plan. + required: true + default: 7 + plan-file: + description: Name of plan file. + required: true + default: tf__stats__plan.bin + terraform-version: + description: Specify a specific version of Terraform + required: true + default: latest +``` + +## Outputs +```yml +outputs: + terraform-version: + description: 'Terraform version' + drift-count: + description: 'Count of drifts' + resource-drifts: + description: 'JSON output of resource drifts' + change-count: + description: 'Count of changes' + change-percent: + description: 'Percentage of changes to total resources' + resource-changes: + description: 'JSON output of resource changes' +``` diff --git a/.github/actions/terraform-stats/action.yml b/.github/actions/terraform-stats/action.yml new file mode 100644 index 00000000000..bfe0b53976e --- /dev/null +++ b/.github/actions/terraform-stats/action.yml @@ -0,0 +1,108 @@ +# action.yml +name: 'Generate Terraform statistics' +description: 'Output Terraform stats for drift and pending changes' +branding: + icon: 'bar-chart' + color: 'purple' +inputs: + terraform-directory: + description: Terraform commands will run in this location. + required: true + default: "./terraform" + include-no-op: + description: "\"no-op\" refers to the before and after Terraform changes are identical as a value will only be known after apply." + required: true + default: false + add-args: + description: Pass additional arguments to Terraform plan. + required: true + default: "" + upload-plan: + description: Upload plan file. true or false + required: true + default: false + upload-retention-days: + description: Number of days to keep uploaded plan. + required: true + default: 7 + plan-file: + description: Name of plan file. + required: true + default: tf__stats__plan.bin + terraform-version: + description: Specify a specific version of Terraform + required: true + default: latest + +outputs: + terraform-version: + description: 'Terraform version' + value: ${{ steps.local-action.outputs.terraform-version }} + drift-count: + description: 'Count of drifts' + value: ${{ steps.local-action.outputs.drift-count }} + resource-drifts: + description: 'JSON output of resource drifts' + value: ${{ steps.local-action.outputs.resource-drifts }} + change-count: + description: 'Count of changes' + value: ${{ steps.local-action.outputs.change-count }} + resource-changes: + description: 'JSON output of resource changes' + value: ${{ steps.local-action.outputs.resource-changes }} + change-percent: + description: 'Percentage of changes to total resources' + value: ${{ steps.local-action.outputs.change-percent }} + +runs: + using: "composite" + steps: + - name: Use specific version of Terraform + uses: hashicorp/setup-terraform@v3 + with: + terraform_version: ${{ inputs.terraform-version }} + terraform_wrapper: false + - name: Run Terraform stats + id: local-action + run: | + ${{ github.action_path }}/lib/tf_stats.sh \ + "${{ inputs.terraform-directory }}" \ + ${{ inputs.include-no-op }} \ + "${{ inputs.add-args }}" \ + "${{ inputs.plan-file }}" + shell: bash + + - name: Upload Artifact + if: inputs.upload-plan == 'true' + uses: actions/upload-artifact@v4.3.3 + with: + name: ${{ inputs.plan-file }} + path: "${{ inputs.terraform-directory }}/${{ inputs.plan-file }}" + retention-days: ${{ inputs.upload-retention-days }} + + - name: Create summary + if: | + steps.local-action.outputs.change-count > 0 || + steps.local-action.outputs.drift-count > 0 + run: | + echo "### :construction: Terraform Stats :construction:" >> $GITHUB_STEP_SUMMARY + if [[ ${{ steps.local-action.outputs.change-count }} > 0 ]]; then + resource_changes=$(echo "${{ steps.local-action.outputs.resource-changes }}" | jq .) + echo " + * change-count: ${{ steps.local-action.outputs.change-count }} + * change-percent: ${{ steps.local-action.outputs.change-percent }} + * resource-changes: + \`\`\`json + $resource_changes + \`\`\`" >> $GITHUB_STEP_SUMMARY + fi + if [[ ${{ steps.local-action.outputs.drift-count }} > 0 ]]; then + resource_drifts=$(echo "${{ steps.local-action.outputs.resource-drifts }}" | jq .) + echo " + * drift-count: ${{ steps.local-action.outputs.drift-count }} + * resource-drift: + \`\`\`json + $resource_drifts + \`\`\`" >> $GITHUB_STEP_SUMMARY + fi + shell: bash diff --git a/.github/actions/terraform-stats/lib/tf_stats.sh b/.github/actions/terraform-stats/lib/tf_stats.sh new file mode 100755 index 00000000000..74eb7431ed9 --- /dev/null +++ b/.github/actions/terraform-stats/lib/tf_stats.sh @@ -0,0 +1,79 @@ +#!/bin/bash + +tf_dir=$1 +#For ["no-op"], the before and +#after values are identical. The "after" value will be incomplete if there +#are values within it that won't be known until after apply. +include_no_op=$2 +add_args=$3 +plan_file=$4 + +# Define a function to run terraform plan with common arguments +tf_plan() { + terraform -chdir=$tf_dir plan $add_args -input=false -no-color -lock-timeout=120s -out=$plan_file "$@" +} + +# Try to run terraform plan and init if needed +if ! tf_plan &>/dev/null; then + terraform -chdir=$tf_dir init >/dev/null || exit 1 + tf_plan >/dev/null || exit 1 +fi + +# Get the plan output in text and json formats +PLAN_TXT=$( terraform -chdir=$tf_dir show -no-color $plan_file ) +PLAN_JSON=$( terraform -chdir=$tf_dir show -no-color -json $plan_file ) + +# Define a function to parse the plan json with jq +parse_plan_json() { + echo $PLAN_JSON | jq "$@" +} + +# Define a function to make output friendly +make_output_friendly() { + local output=$1 + output="${output//'%'/'%25'}" + output="${output//$'\n'/'%0A'}" + output="${output//$'\r'/'%0D'}" + output="${output//'"'/'\"'}" + output="${output//'\\"'/'\\\"'}" + echo $output +} + +# Define a function to write the output to the github output file +write_output() { + local key=$1 + local value=$2 + echo "$key=$(make_output_friendly $value)" >> $GITHUB_OUTPUT +} + +# Get the terraform version from the plan json +VERSION=$(parse_plan_json .terraform_version) + +# Get the resource drift from the plan json +DRIFT=$(parse_plan_json .resource_drift) +DRIFT_COUNT=$(echo $DRIFT | jq length) +DRIFTED_RESOURCES=$(echo $DRIFT | jq -c '[.[] | {address: .address, changes: .change.actions}]') + +# Get the resource changes from the plan json +CHANGES=$(parse_plan_json .resource_changes) +if [[ $include_no_op = true ]]; then + CHANGES_FILTERED=$CHANGES +else + CHANGES_FILTERED=$(echo $CHANGES | jq -c '[.[] | {address: .address, changes: .change.actions} | select( .changes[] != "no-op")]') +fi +CHANGE_COUNT=$(echo $CHANGES_FILTERED | jq length) + +# Get the total resources and percent changed from the plan json +TOTAL_RESOURCES=$(parse_plan_json .planned_values.root_module) +TOTAL_ROOT=$(echo $TOTAL_RESOURCES | jq -c .resources | jq length) +TOTAL_CHILD=$(echo $TOTAL_RESOURCES | jq -c .child_modules | jq -c '[.[]?.resources | length] | add') +TOTAL_COUNT=$(( TOTAL_ROOT + TOTAL_CHILD )) +CHANGE_PERC=$(echo "scale=0 ; $CHANGE_COUNT / $TOTAL_COUNT * 100" | bc) + +# Write the output to the github output file +write_output "terraform-version" "$VERSION" +write_output "change-percent" "$CHANGE_PERC" +write_output "drift-count" "$DRIFT_COUNT" +write_output "change-count" "$CHANGE_COUNT" +write_output "resource-drifts" "$DRIFTED_RESOURCES" +write_output "resource-changes" "$CHANGES_FILTERED" diff --git a/.github/actions/terraform-stats/terraform/main.tf b/.github/actions/terraform-stats/terraform/main.tf new file mode 100644 index 00000000000..57ddbbef9c2 --- /dev/null +++ b/.github/actions/terraform-stats/terraform/main.tf @@ -0,0 +1,24 @@ +terraform { + required_providers { + docker = { + source = "kreuzwerker/docker" + version = "~> 2.13.0" + } + } +} + +provider "docker" {} + +resource "docker_image" "nginx" { + name = "nginx:latest" + keep_locally = false +} + +resource "docker_container" "nginx" { + image = docker_image.nginx.latest + name = "tutorial" + ports { + internal = 80 + external = 8000 + } +} \ No newline at end of file diff --git a/.github/actions/workflow-housekeeper/.gitignore b/.github/actions/workflow-housekeeper/.gitignore new file mode 100644 index 00000000000..47b70ae9777 --- /dev/null +++ b/.github/actions/workflow-housekeeper/.gitignore @@ -0,0 +1,4 @@ +.git +_git +.github +_github diff --git a/.github/actions/workflow-housekeeper/README.md b/.github/actions/workflow-housekeeper/README.md new file mode 100644 index 00000000000..60abfd838a9 --- /dev/null +++ b/.github/actions/workflow-housekeeper/README.md @@ -0,0 +1,55 @@ +# Workflow Housekeeper + +Retain a time period or quantity of workflow runs. + +[![Test action](https://github.com/CDCgov/prime-reportstream/.github/workflows/workflow-housekeeper--test_action.yml/badge.svg)](https://github.com/CDCgov/prime-reportstream/.github/workflows/workflow-housekeeper--test_action.yml) + +### Dependencies: + +>Change in repo: `Settings -> Actions -> General -> Workflow Permissions to allow read and write` + +## Inputs +```yml + ignore-branch-workflows: + description: 'Ignore runs from workflows currently in ./github/workflow' + required: false + retention-time: + description: 'Period of time to maintain history. E.g. "2 weeks", "3 days", etc.' + required: false + retain-run-count: + description: 'Number of latest runs to keep' + required: false + dry-run: + description: 'Only list runs pending deletion' + required: false +``` + +## Usage +```yml + - name: Checkout + uses: actions/checkout@v3 + - name: Run workflow housekeeper + uses: josiahsiegel/workflow-housekeeper@ + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +``` +or +```yml + - name: Checkout + uses: actions/checkout@v3 + - name: Run workflow housekeeper + uses: josiahsiegel/workflow-housekeeper@ + id: scan + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + ignore-branch-workflows: true + retention-time: '1 days' + retain-run-count: 1 + dry-run: false +``` + +## Generated summary +### ✨ Workflow Housekeeper ✨ + * .github/workflows/test_action.yml 4618840926 + * .github/workflows/test_action.yml 4618827035 \ No newline at end of file diff --git a/.github/actions/workflow-housekeeper/action.yml b/.github/actions/workflow-housekeeper/action.yml new file mode 100644 index 00000000000..796910b771c --- /dev/null +++ b/.github/actions/workflow-housekeeper/action.yml @@ -0,0 +1,41 @@ +# action.yml +name: 'Workflow Housekeeper' +description: 'Retain a time period or quantity of workflow runs.' +branding: + icon: 'trash-2' + color: 'red' +inputs: + ignore-branch-workflows: + description: 'Ignore runs from workflows currently in ./github/workflow' + required: false + retention-time: + description: 'Period of time to maintain history. E.g. "2 weeks", "3 days", etc.' + required: false + retain-run-count: + description: 'Number of latest runs to keep' + required: false + dry-run: + description: 'Only list runs pending deletion' + required: false +outputs: + housekeeping_output: + description: 'Output of housekeeping steps' + value: ${{ steps.local-action.outputs.housekeeping_output }} +runs: + using: "composite" + steps: + - name: Run local action + id: local-action + run: | + ${{ github.action_path }}/lib/housekeeper.sh \ + "${{ github.repository }}" \ + "${{ inputs.ignore-branch-workflows }}" \ + "${{ inputs.retention-time }}" \ + "${{ inputs.retain-run-count }}" \ + "${{ inputs.dry-run }}" + shell: bash + - name: Create summary + run: | + echo "### :sparkles: Workflow Housekeeper :sparkles:" >> $GITHUB_STEP_SUMMARY + echo -e "${{ steps.local-action.outputs.housekeeping_output }}" >> $GITHUB_STEP_SUMMARY + shell: bash diff --git a/.github/actions/workflow-housekeeper/lib/housekeeper.sh b/.github/actions/workflow-housekeeper/lib/housekeeper.sh new file mode 100755 index 00000000000..ff4bd6e84cc --- /dev/null +++ b/.github/actions/workflow-housekeeper/lib/housekeeper.sh @@ -0,0 +1,72 @@ +#!/bin/bash + +# Init +repo="$1" +ignore_branch_workflows=$2 +retention_time=$3 +retain_run_count=$4 +dry_run=$5 + +# ignore_branch_workflows +if [[ -z $ignore_branch_workflows ]]; then + ignore_branch_workflows=false +fi +echo "ignore_branch_workflows: $ignore_branch_workflows" + +if [[ $ignore_branch_workflows = true ]]; then + files=$(ls -1 .github/workflows/ | sed 's/^/and .path != \".github\/workflows\//;s/$/\"/') +else + files="" +fi + +# retention_time +if [[ -z $retention_time ]]; then + retention_time="" +else + keep_date=$(date -d "$date -$retention_time" +%s) + keep_stmt="| select (.run_started_at | . == null or fromdateiso8601 < $keep_date)" +fi +echo "time_threshold: $retention_time" + +# retain_run_count +if [[ -z $retain_run_count ]]; then + retain_run_count=0 +fi +let retain_run_count2=retain_run_count*2 +echo "retain_run_count: $retain_run_count2" + +# dry_run +if [[ -z $dry_run ]]; then + dry_run=false +fi +echo "dry_run: $dry_run" + +# Build jq query +runs="repos/$repo/actions/runs" +query=".workflow_runs[] \ +| select( \ +.path != \".github/workflows/placeholder.yaml\" \ +"$files" +) +$keep_stmt +| (.path,.id)" + +# Get run ids +output=$(gh api --paginate $runs --jq "$query") +output=($(echo $output | tr " " "\n")) +output=${output[@]:$retain_run_count2} + +# Delete or echo run ids +for id in $output; do + if [[ $dry_run = false ]]; then + [[ $id != ".git"* ]] && gh api --silent $runs/$id -X DELETE + else + [[ $id != ".git"* ]] && echo "gh api --silent $runs/$id -X DELETE" || echo "$id" + fi + [[ $id = ".git"* ]] && summary+=" * $id" || summary+=" $id\n" + + # Prevent rate limit + sleep 1; +done + +echo "housekeeping_output=$(echo "${summary}")" >>$GITHUB_OUTPUT diff --git a/operations/app/terraform/modules/init/key_vault.tf b/operations/app/terraform/modules/init/key_vault.tf index d8c1756ed29..36b69673f16 100644 --- a/operations/app/terraform/modules/init/key_vault.tf +++ b/operations/app/terraform/modules/init/key_vault.tf @@ -107,7 +107,7 @@ resource "azurerm_key_vault_access_policy" "init_tf" { key_vault_id = azurerm_key_vault.init[each.value].id tenant_id = data.azurerm_client_config.current.tenant_id // terraform-automation 5ab367bf-df15-45af-a027-47f95f2c75d8 - object_id = "4d81288c-27a3-4df8-b776-c9da8e688bc7" + object_id = "a58ee002-62c7-4a91-a2dc-4a837663aa00" key_permissions = [ "Create", diff --git a/operations/app/terraform/vars/demo/locals.tf b/operations/app/terraform/vars/demo/locals.tf index 52e3441efa8..72250bbb34a 100644 --- a/operations/app/terraform/vars/demo/locals.tf +++ b/operations/app/terraform/vars/demo/locals.tf @@ -26,7 +26,7 @@ locals { tf_secrets_vault = "pdh${local.init.environment}-keyvault${local.init.random_id}" } ad = { - terraform_object_id = "4d81288c-27a3-4df8-b776-c9da8e688bc7" + terraform_object_id = "a58ee002-62c7-4a91-a2dc-4a837663aa00" aad_object_keyvault_admin = "3c17896c-ff94-4298-a719-aaac248aa2c8" aad_group_postgres_admin = "f94409a9-12b1-4820-a1b6-e3e0a4fa282d" } diff --git a/operations/app/terraform/vars/prod/locals.tf b/operations/app/terraform/vars/prod/locals.tf index a64ee7953a8..78df2edc770 100644 --- a/operations/app/terraform/vars/prod/locals.tf +++ b/operations/app/terraform/vars/prod/locals.tf @@ -25,7 +25,7 @@ locals { tf_secrets_vault = "pdh${local.init.environment}-keyvault" } ad = { - terraform_object_id = "4d81288c-27a3-4df8-b776-c9da8e688bc7" + terraform_object_id = "a58ee002-62c7-4a91-a2dc-4a837663aa00" aad_object_keyvault_admin = "5c6a951e-a4c2-4890-b62c-0ed8179501bb" aad_group_postgres_admin = "c4031f1f-229c-4a8a-b3b9-23bae9dbf197" } diff --git a/operations/app/terraform/vars/staging/locals.tf b/operations/app/terraform/vars/staging/locals.tf index 47066309e34..3a221af96a7 100644 --- a/operations/app/terraform/vars/staging/locals.tf +++ b/operations/app/terraform/vars/staging/locals.tf @@ -25,7 +25,7 @@ locals { tf_secrets_vault = "pdh${local.init.environment}-keyvault" } ad = { - terraform_object_id = "4d81288c-27a3-4df8-b776-c9da8e688bc7" + terraform_object_id = "a58ee002-62c7-4a91-a2dc-4a837663aa00" aad_object_keyvault_admin = "b35a2a63-aeb2-438c-913b-bebeb821adfe" aad_group_postgres_admin = "c4031f1f-229c-4a8a-b3b9-23bae9dbf197" } diff --git a/operations/app/terraform/vars/test/locals.tf b/operations/app/terraform/vars/test/locals.tf index b229fad36f0..8ff6b711219 100644 --- a/operations/app/terraform/vars/test/locals.tf +++ b/operations/app/terraform/vars/test/locals.tf @@ -25,7 +25,7 @@ locals { tf_secrets_vault = "pdh${local.init.environment}-keyvault" } ad = { - terraform_object_id = "4d81288c-27a3-4df8-b776-c9da8e688bc7" + terraform_object_id = "a58ee002-62c7-4a91-a2dc-4a837663aa00" aad_object_keyvault_admin = "3c17896c-ff94-4298-a719-aaac248aa2c8" aad_group_postgres_admin = "f94409a9-12b1-4820-a1b6-e3e0a4fa282d" } diff --git a/prime-router/docs/design/design/HL7v2-FHIR-Inventory.md b/prime-router/docs/design/design/HL7v2-FHIR-Inventory.md index 3a38116943d..f6bad801178 100644 --- a/prime-router/docs/design/design/HL7v2-FHIR-Inventory.md +++ b/prime-router/docs/design/design/HL7v2-FHIR-Inventory.md @@ -146,8 +146,7 @@ implementation differs from what is in the spreadsheets. ### PD1 -> Patient -- PD1.4 is deprecated in the HL7v2.7 and NIST HL7v2.5.1 specs. Further, the HAPI v2.7 model has set both fields to - NULLDT. Thus, this field is not being mapped. +- PD1.4 Backwards compatible in NIST. Needed for ETOR NBS use case. Mapped to Patient.generalPractitioner. ### PV1 -> Patient diff --git a/prime-router/docs/docs-deprecated/environment-provisioning.md b/prime-router/docs/docs-deprecated/environment-provisioning.md index 83d62558c67..f9460ae2533 100644 --- a/prime-router/docs/docs-deprecated/environment-provisioning.md +++ b/prime-router/docs/docs-deprecated/environment-provisioning.md @@ -6,7 +6,7 @@ Any adjustments to the infrastructure provisining process should be noted here s 2. [Trial Frontend Environments](#trial-frontend-environments) ## Azure Prerequisites -We assume the following infrastructure has already been deployed by CMS. +We assume the following infrastructure has already been deployed by CMS. - Resource Group for underlying infrastructure - Storage Account - Used to store the terraform tf state. - You will need to authenticate the az command line application using your SU account: @@ -42,14 +42,14 @@ Push (or merge) code into any of the following branches: > 1. Navigate to `demo` Terraform directory using one of the following methods: > * `terraform -chdir=operations/app/terraform/vars/demo` > * `operations/app/terraform/vars/demo terraform` -> +> > 2. Specify `-var-file` and `-backend-config` from the desired demo directory (demo1, demo2, or demo3) > * `-var-file=demo1/env.tfvars.json` > * `-backend-config=demo1/env.tfbackend` -> +> > 3. Target the `init` Terraform module to `apply` base resources (vnets, key vaults, etc.) > * `-target=module.init` -> +> > 4. After base resources are created, run `apply` without a target ### Specify environment & Terraform path @@ -84,11 +84,11 @@ echo "init complete" # Import access polices that are shared with init and key_vault modules terraform -chdir=$path import -var-file=$env/env.tfvars.json \ module.key_vault.azurerm_key_vault_access_policy.terraform_app_config_access_policy[0] \ -"/subscriptions/7d1e3999-6577-4cd5-b296-f518e5c8e677/resourceGroups/prime-data-hub-$env/providers/Microsoft.KeyVault/vaults/pdh$env-appconfigmt8/objectId/4d81288c-27a3-4df8-b776-c9da8e688bc7" +"/subscriptions/7d1e3999-6577-4cd5-b296-f518e5c8e677/resourceGroups/prime-data-hub-$env/providers/Microsoft.KeyVault/vaults/pdh$env-appconfigmt8/objectId/a58ee002-62c7-4a91-a2dc-4a837663aa00" terraform -chdir=$path import -var-file=$env/env.tfvars.json \ module.key_vault.azurerm_key_vault_access_policy.terraform_access_policy[0] \ -"/subscriptions/7d1e3999-6577-4cd5-b296-f518e5c8e677/resourceGroups/prime-data-hub-$env/providers/Microsoft.KeyVault/vaults/pdh$env-keyvaultmt8/objectId/4d81288c-27a3-4df8-b776-c9da8e688bc7" +"/subscriptions/7d1e3999-6577-4cd5-b296-f518e5c8e677/resourceGroups/prime-data-hub-$env/providers/Microsoft.KeyVault/vaults/pdh$env-keyvaultmt8/objectId/a58ee002-62c7-4a91-a2dc-4a837663aa00" for i in {1..3}; do \ terraform -chdir=$path apply \ diff --git a/prime-router/docs/standard-operating-procedures/new-conditions-sop.md b/prime-router/docs/standard-operating-procedures/new-conditions-sop.md new file mode 100644 index 00000000000..2b701b2a37e --- /dev/null +++ b/prime-router/docs/standard-operating-procedures/new-conditions-sop.md @@ -0,0 +1,128 @@ +# Standard Operating Procedure (SOP) for Validating New Reportable Conditions + +--- + +## Purpose +To ensure that data from new reportable conditions sent by new or existing senders is processed correctly and successfully delivered to state, tribal, local, and territorial (STLT) health departments. + +--- + +## Step 1: Verify LOINC Code Mappings + +1. **Check Observation Mapping Table**: + - Ensure all LOINC codes for new conditions are mapped in ReportStream’s observation mapping table. + - Verify that any new Ask at Order Entry (AOE) questions included in the message are also mapped. + +2. **Address Missing Mappings**: + - If codes are not mapped, refer to the documentation: [Mapping Sender Codes to Conditions](https://github.com/CDCgov/prime-reportstream/blob/main/prime-router/docs/onboarding-users/sender-onboarding/mapping-sender-codes-to-condition.md). + +--- + +## Step 2: Validate LOINC Descriptions and Minimum Data + +1. **Ensure Accurate Descriptions**: + - Verify that LOINC descriptions in ReportStream’s local LOINC table match the expected codes and descriptions. + +2. **Confirm Minimum Data**: + - Ensure the minimum required data is present to represent a test. + - For FHIR messages: + - **Test Ordered**: Located under `DiagnosticReport.code.coding.code`. + - **Test Ordered Description**: Located under `DiagnosticReport.code.coding.display`. + - **Test Performed**: Located under `Observation.code.coding.code`. + - **Test Ordered Description**: Located under `Observation.code.coding.display`. + - For HL7 v2.5.1 messages: + - **Test Ordered**: Located in `OBR-4`. + - **Test Performed**: Located in `OBX-3`. + +--- + +## Step 3: Minimal Data Requirements + +### FHIR Representation + +1. **DiagnosticReport** + - **status**: The diagnostic report status (e.g., `final`, `partial`, `amended`). + - **code**: Type of report (e.g., LOINC code for "Complete Blood Count"). + - **subject**: Reference to the patient resource. + - **effectiveDateTime** or **effectivePeriod**: Clinical relevance time. + - **issued**: Timestamp when the report was issued. + - **result**: References to associated **Observation** resources. + +2. **Observation** + - **status**: The observation status (e.g., `final`, `preliminary`). + - **code**: Type of observation (e.g., "Glucose level" as a LOINC code). + - **subject**: Reference to the patient. + - **effectiveDateTime** or **effectivePeriod**: Clinical relevance time. + - **value[x]**: Observation value, such as: + - **valueQuantity**: Numeric result (e.g., `10 mg/dL`). + - **valueString**: Textual result (e.g., "Negative"). + - **referenceRange**: Normal range for quantitative results. + +3. **Patient** + - **identifier**: Unique identifier (e.g., MRN or national ID). + - **name**: Patient’s full name. + - **gender**: Patient’s gender. + - **birthDate**: Patient’s date of birth. + +4. **Practitioner** (if applicable) + - **identifier**: Identifier for the practitioner (e.g., license number). + - **name**: Practitioner’s full name. + +5. **Organization** (if applicable) + - **name**: Reporting organization’s name. + - **identifier**: Organization’s identifier (e.g., CLIA number). + +### HL7 v2.5.1 Representation + +1. **Message Header (MSH Segment)** + - Essential fields: + - `MSH-1` (Field Separator): `|` + - `MSH-2` (Encoding Characters): `^~\&` + - `MSH-9` (Message Type): `ORU^R01` + - `MSH-12` (Version ID): `2.5.1` + +2. **Patient Identification (PID Segment)** + - Essential fields: + - `PID-3` (Patient Identifier List): Unique patient ID. + - `PID-5` (Patient Name): Patient’s full name. + - `PID-7` (Date of Birth): Patient’s DOB. + - `PID-8` (Sex): Gender. + +3. **Observation Request (OBR Segment)** + - Essential fields: + - `OBR-4` (Universal Service Identifier): Type of test ordered. + - `OBR-16` (Ordering Provider): Name of the requesting provider. + +4. **Observation Result (OBX Segment)** + - Essential fields: + - `OBX-2` (Value Type): Type of result (e.g., numeric). + - `OBX-3` (Observation Identifier): Specific test performed. + - `OBX-5` (Observation Value): Result value. + - `OBX-6` (Units): Measurement units. + - `OBX-7` (Reference Range): Normal range. + - `OBX-11` (Observation Result Status): Status (e.g., `F` for final). + +5. **Specimen (SPM Segment)** (if applicable) + - Essential fields: + - `SPM-4` (Specimen Type): Type of specimen (e.g., blood). + +--- + +## Step 4: Validate Example Messages + +1. **FHIR Example**: + - Ask the sender to send a sample message and validate a FHIR message for the new condition. + - Convert the message to HL7 and ensure no data is being lost during translation +2. **HL7 Example**: + - Ask the sender to send a sample HL7 v2.5.1 ORU_R01 message for the new condition. + - Process the message through the UP and ensure no data is being lost during translation from HL7 -> FHIR -> HL7 + +--- + +## Step 5: Test End-to-End Workflow + +1. Submit sample messages to the staging environment. +2. Confirm data passes validation checks in ReportStream. +3. Verify successful delivery to the intended STLT systems. + + diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml b/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml index 3dc555ef779..cf9fd031117 100644 --- a/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml +++ b/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml @@ -18,7 +18,7 @@ resourceType: Patient # to Patient.link which includes a reference to RelatedPerson -# - PD1.4 Deprecated in NIST, set to NullDT in HAPI. Field not mapped +# - PD1.4 Backwards compatible in NIST. Needed for ETOR NBS use case. Mapped to Patient.generalPractitioner. id: type: STRING @@ -423,14 +423,23 @@ meta: expressionType: reference specs: PID.34 -generalPractitioner_Organization: - condition: $pd13 NOT_NULL +generalPractitioner: + expressionType: nested generateList: true - specs: PD1.3 * vars: pd13: STRING_ALL, PD1.3 - valueOf: datatypes/XON/Organization - expressionType: reference + pd14: STRING_ALL, PD1.4 + expressions: + - condition: $pd13 NOT_NULL + valueOf: datatypes/XON/Organization + expressionType: reference + specs: PD1.3 * + generateList: true + - condition: $pd14 NOT_NULL + valueOf: datatypes/XCN/Practitioner + expressionType: reference + specs: PD1.4 * + generateList: true extension: expressionType: nested diff --git a/prime-router/src/main/kotlin/azure/SenderFunction.kt b/prime-router/src/main/kotlin/azure/SenderFunction.kt new file mode 100644 index 00000000000..2b19e42369d --- /dev/null +++ b/prime-router/src/main/kotlin/azure/SenderFunction.kt @@ -0,0 +1,84 @@ +package gov.cdc.prime.router.azure + +import com.fasterxml.jackson.databind.ObjectMapper +import com.github.doyaaaaaken.kotlincsv.dsl.csvReader +import com.microsoft.azure.functions.HttpMethod +import com.microsoft.azure.functions.HttpRequestMessage +import com.microsoft.azure.functions.HttpResponseMessage +import com.microsoft.azure.functions.annotation.AuthorizationLevel +import com.microsoft.azure.functions.annotation.FunctionName +import com.microsoft.azure.functions.annotation.HttpTrigger +import gov.cdc.prime.router.azure.db.enums.TaskAction +import gov.cdc.prime.router.cli.LookupTableCompareMappingCommand +import gov.cdc.prime.router.metadata.ObservationMappingConstants +import gov.cdc.prime.router.tokens.AuthenticatedClaims +import gov.cdc.prime.router.tokens.authenticationFailure +import gov.cdc.prime.router.tokens.authorizationFailure +import org.apache.logging.log4j.kotlin.Logging + +class SenderFunction( + private val workflowEngine: WorkflowEngine = WorkflowEngine(), + private val actionHistory: ActionHistory = ActionHistory(TaskAction.receive), +) : RequestFunction(workflowEngine), + Logging { + + /** + * POST a CSV with test codes and conditions to compare with existing + * code to condition observation mapping table + * + * @return original request body data with mapping results in JSON format + */ + @FunctionName("conditionCodeComparisonPostRequest") + fun conditionCodeComparisonPostRequest( + @HttpTrigger( + name = "conditionCodeComparisonPostRequest", + methods = [HttpMethod.POST], + authLevel = AuthorizationLevel.ANONYMOUS, + route = "sender/conditionCode/comparison" + ) request: HttpRequestMessage, + ): HttpResponseMessage { + val senderName = extractClient(request) + if (senderName.isBlank()) { + return HttpUtilities.bad(request, "Expected a '$CLIENT_PARAMETER' query parameter") + } + + actionHistory.trackActionParams(request) + try { + val claims = AuthenticatedClaims.authenticate(request) + ?: return HttpUtilities.unauthorizedResponse(request, authenticationFailure) + + val sender = workflowEngine.settings.findSender(senderName) + ?: return HttpUtilities.bad(request, "'$CLIENT_PARAMETER:$senderName': unknown client") + + if (!claims.authorizedForSendOrReceive(sender, request)) { + return HttpUtilities.unauthorizedResponse(request, authorizationFailure) + } + + // Read request body CSV + val bodyCsvText = request.body ?: "" + val bodyCsv = csvReader().readAllWithHeader(bodyCsvText) + + // Get observation mapping table + val tableMapper = LookupTableConditionMapper(workflowEngine.metadata) + val observationMappingTable = tableMapper.mappingTable.caseSensitiveDataRowsMap + val tableTestCodeMap = observationMappingTable.associateBy { it[ObservationMappingConstants.TEST_CODE_KEY] } + + // Compare request CSV with table using CLI wrapper + val conditionCodeComparison = LookupTableCompareMappingCommand.compareMappings( + compendium = bodyCsv, tableTestCodeMap = tableTestCodeMap + ) + + // Create output JSON with mapping comparison result + val conditionCodeComparisonJson = ObjectMapper().writeValueAsString(conditionCodeComparison) + + return HttpUtilities.okResponse(request, conditionCodeComparisonJson) + } catch (ex: Exception) { + if (ex.message != null) { + logger.error(ex.message!!, ex) + } else { + logger.error(ex) + } + return HttpUtilities.internalErrorResponse(request) + } + } +} \ No newline at end of file diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Patient/PD1.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Patient/PD1.yml index 309aec4ce49..a2dbfccadaf 100644 --- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Patient/PD1.yml +++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Patient/PD1.yml @@ -11,6 +11,13 @@ elements: constants: hl7XONField: '%{hl7PD1Field}-3(%{xonIndex})' + - name: patient-primary-provider + resource: '%resource.generalPractitioner.resolve().ofType(Practitioner)' + schema: classpath:/metadata/hl7_mapping/resources/Practitioner/XCN.yml + resourceIndex: xcnIndex + constants: + hl7XCNField: '%{hl7PD1Field}-4(%{xcnIndex})' + - name: student-indicator condition: '%context.extension(%`rsext-studentStatus`).exists()' resource: '%resource.extension(%`rsext-studentStatus`).value' diff --git a/prime-router/src/test/kotlin/azure/SenderFunctionTest.kt b/prime-router/src/test/kotlin/azure/SenderFunctionTest.kt new file mode 100644 index 00000000000..2e5845dbe72 --- /dev/null +++ b/prime-router/src/test/kotlin/azure/SenderFunctionTest.kt @@ -0,0 +1,292 @@ +package gov.cdc.prime.router.azure + +import com.microsoft.azure.functions.HttpStatus +import gov.cdc.prime.router.CustomerStatus +import gov.cdc.prime.router.DeepOrganization +import gov.cdc.prime.router.FileSettings +import gov.cdc.prime.router.Metadata +import gov.cdc.prime.router.MimeFormat +import gov.cdc.prime.router.Organization +import gov.cdc.prime.router.Receiver +import gov.cdc.prime.router.SettingsProvider +import gov.cdc.prime.router.Topic +import gov.cdc.prime.router.UniversalPipelineSender +import gov.cdc.prime.router.azure.db.enums.TaskAction +import gov.cdc.prime.router.cli.LookupTableCompareMappingCommand +import gov.cdc.prime.router.metadata.LookupTable +import gov.cdc.prime.router.metadata.ObservationMappingConstants +import gov.cdc.prime.router.serializers.Hl7Serializer +import gov.cdc.prime.router.tokens.AuthenticatedClaims +import gov.cdc.prime.router.unittest.UnitTestUtils +import io.mockk.clearAllMocks +import io.mockk.every +import io.mockk.mockk +import io.mockk.mockkClass +import io.mockk.mockkObject +import io.mockk.spyk +import org.jooq.tools.jdbc.MockConnection +import org.jooq.tools.jdbc.MockDataProvider +import org.jooq.tools.jdbc.MockResult +import org.junit.jupiter.api.BeforeEach +import org.junit.jupiter.api.Test +import kotlin.test.assertEquals + +class SenderFunctionTest { + val dataProvider = MockDataProvider { emptyArray() } + val connection = MockConnection(dataProvider) + val accessSpy = spyk(DatabaseAccess(connection)) + val metadata = UnitTestUtils.simpleMetadata + val settings = mockkClass(SettingsProvider::class) + val blobMock = mockkClass(BlobAccess::class) + private val serializer = spyk(Hl7Serializer(metadata, settings)) + private val queueMock = mockkClass(QueueAccess::class) + private val timing1 = mockkClass(Receiver.Timing::class) + + val REQ_BODY_TEST_CSV = "test code,test description,coding system\n" + + "97097-0,SARS-CoV-2 (COVID-19) Ag [Presence] in Upper respiratory specimen by Rapid immunoassay,LOINC\n" + + "80382-5,Influenza virus A Ag [Presence] in Upper respiratory specimen by Rapid immunoassay,LOINC\n" + + "12345,Flu B,LOCAL" + + val testOrganization = DeepOrganization( + "phd", + "test", + Organization.Jurisdiction.FEDERAL, + receivers = listOf( + Receiver( + "elr", + "phd", + Topic.TEST, + CustomerStatus.INACTIVE, + "one", + timing = timing1 + ) + ) + ) + + private fun makeEngine(metadata: Metadata, settings: SettingsProvider): WorkflowEngine = spyk( + WorkflowEngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy) + .blobAccess(blobMock).queueAccess(queueMock).hl7Serializer(serializer).build() + ) + + @BeforeEach + fun reset() { + clearAllMocks() + + // setup + every { timing1.isValid() } returns true + every { timing1.numberPerDay } returns 1 + every { timing1.maxReportCount } returns 1 + every { timing1.whenEmpty } returns Receiver.WhenEmpty() + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest ok`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + val sender = UniversalPipelineSender( + name = "Test Sender", + organizationName = "testOrganization", + format = MimeFormat.HL7, + topic = Topic.FULL_ELR + ) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + every { workflowEngine.settings.findSender("Test Sender") } returns sender + + mockkObject(AuthenticatedClaims) + val mockClaims = mockk() + every { AuthenticatedClaims.authenticate(any()) } returns mockClaims + every { mockClaims.authorizedForSendOrReceive(any(), any()) } returns true + + metadata.lookupTableStore += mapOf( + "observation-mapping" to LookupTable( + "observation-mapping", + listOf( + listOf( + ObservationMappingConstants.TEST_CODE_KEY, + ObservationMappingConstants.CONDITION_CODE_KEY, + ObservationMappingConstants.CONDITION_CODE_SYSTEM_KEY, + ObservationMappingConstants.CONDITION_NAME_KEY + ), + listOf( + "00001", + "Some Condition Code", + "Condition Code System", + "Condition Name" + ) + ) + ) + ) + + val codeToConditionMapping = listOf( + mapOf( + "test code" to "00001", + "test description" to "test description 1", + "coding system" to "Condition Code System", + "mapped?" to "Y" + ), + mapOf( + "test code" to "00002", + "test description" to "test description 2", + "coding system" to "Another Condition Code System", + "mapped?" to "N" + ) + ) + mockkObject(LookupTableCompareMappingCommand) + every { + LookupTableCompareMappingCommand.compareMappings(any(), any()) + } returns codeToConditionMapping + + testRequest.httpHeaders += mapOf( + "client" to "Test Sender", + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.OK, response.status) + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest with no sender`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + testRequest.httpHeaders += mapOf( + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.BAD_REQUEST, response.status) + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest with bad sender`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + every { workflowEngine.settings.findSender("Test sender") } returns null + + mockkObject(AuthenticatedClaims) + val mockClaims = mockk() + every { AuthenticatedClaims.authenticate(any()) } returns mockClaims + + testRequest.httpHeaders += mapOf( + "client" to "Test sender", + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.BAD_REQUEST, response.status) + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest with unauthenticated sender`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + every { workflowEngine.settings.findSender("Test sender") } returns null + + mockkObject(AuthenticatedClaims) + every { AuthenticatedClaims.authenticate(any()) } returns null + + testRequest.httpHeaders += mapOf( + "client" to "Test sender", + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.UNAUTHORIZED, response.status) + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest with unauthorized sender`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + val sender = UniversalPipelineSender( + name = "Test Sender", + organizationName = "testOrganization", + format = MimeFormat.HL7, + topic = Topic.FULL_ELR + ) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + every { workflowEngine.settings.findSender("Test sender") } returns sender + + mockkObject(AuthenticatedClaims) + val mockClaims = mockk() + every { AuthenticatedClaims.authenticate(any()) } returns mockClaims + every { mockClaims.authorizedForSendOrReceive(any(), any()) } returns false + + testRequest.httpHeaders += mapOf( + "client" to "Test sender", + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.UNAUTHORIZED, response.status) + } + + @Test + fun `test SenderFunction conditionCodeComparisonPostRequest exception error`() { + val metadata = UnitTestUtils.simpleMetadata + val settings = FileSettings().loadOrganizations(testOrganization) + val sender = UniversalPipelineSender( + name = "Test Sender", + organizationName = "testOrganization", + format = MimeFormat.HL7, + topic = Topic.FULL_ELR + ) + + val workflowEngine = makeEngine(metadata, settings) + val actionHistory = spyk(ActionHistory(TaskAction.receive)) + val senderFunction = spyk(SenderFunction(workflowEngine, actionHistory)) + + val testRequest = MockHttpRequestMessage(REQ_BODY_TEST_CSV) + + every { workflowEngine.settings.findSender("Test sender") } returns sender + mockkObject(LookupTableCompareMappingCommand) + every { LookupTableCompareMappingCommand.compareMappings(any(), any()) }.throws(Exception()) + + testRequest.httpHeaders += mapOf( + "client" to "Test sender", + "content-length" to "4" + ) + + val response = senderFunction.conditionCodeComparisonPostRequest(testRequest) + + assertEquals(HttpStatus.INTERNAL_SERVER_ERROR, response.status) + } +} \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir index a09befe105f..74b8d1f67de 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir @@ -1,21 +1,21 @@ { "resourceType": "Bundle", - "id": "1735607788699055000.3de0f503-4ebe-44f0-8bc8-8e24478b3077", + "id": "1736458919202086313.8c6bf3b5-b363-45dd-aca1-2074f05dc439", "meta": { - "lastUpdated": "2024-12-30T20:16:28.708-05:00" + "lastUpdated": "2025-01-09T21:41:59.213+00:00" }, "identifier": { "system": "https://reportstream.cdc.gov/prime-router", "value": "0123" }, "type": "message", - "timestamp": "2019-07-20T09:12:29.000-04:00", + "timestamp": "2019-07-20T09:12:29.000+00:00", "entry": [ { - "fullUrl": "MessageHeader/1735607788795430000.ed00757a-911d-4521-998e-e130a358323d", + "fullUrl": "MessageHeader/1736458919519512551.13581fb7-1664-4fd6-a62a-e996f2e243d8", "resource": { "resourceType": "MessageHeader", - "id": "1735607788795430000.ed00757a-911d-4521-998e-e130a358323d", + "id": "1736458919519512551.13581fb7-1664-4fd6-a62a-e996f2e243d8", "meta": { "security": [ { @@ -208,7 +208,7 @@ "name": "txdshslabNBS", "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2", "receiver": { - "reference": "Organization/1735607788790540000.0301f764-abad-4339-9b04-3d67bfc2890f" + "reference": "Organization/1736458919504212481.c84875fb-5a44-4094-afa4-450f197d029e" } }, { @@ -229,17 +229,17 @@ "name": "ReceivingNetworkAddress", "endpoint": "urn:oid:9.87.123.1.114222.XXX", "receiver": { - "reference": "Organization/1735607788791771000.2c5e0d28-0e71-4524-b816-6366b513149a" + "reference": "Organization/1736458919509753399.2453ef6d-c34c-4f6a-8d53-60b967f772c4" } }, { "receiver": { - "reference": "Organization/1735607788795116000.d031bc0f-0bd5-40f5-851f-f2d63d07df66" + "reference": "Organization/1736458919518840563.8e999ad0-689a-4a0b-8381-cd7e17772336" } } ], "sender": { - "reference": "Organization/1735607788762135000.21b7bfc1-727f-407e-b307-fc6c2061020d" + "reference": "Organization/1736458919373789038.ebc18af6-b93a-4c06-aaf7-cea5ceb1dd44" }, "source": { "extension": [ @@ -265,15 +265,15 @@ "endpoint": "urn:oid:2.16.840.1.114222.XXX" }, "responsible": { - "reference": "Organization/1735607788789601000.ea639e33-766a-43a3-b788-65734b2038e3" + "reference": "Organization/1736458919502602395.70ff3e5f-477f-4f08-b145-3fb2323c97ba" } } }, { - "fullUrl": "Organization/1735607788762135000.21b7bfc1-727f-407e-b307-fc6c2061020d", + "fullUrl": "Organization/1736458919373789038.ebc18af6-b93a-4c06-aaf7-cea5ceb1dd44", "resource": { "resourceType": "Organization", - "id": "1735607788762135000.21b7bfc1-727f-407e-b307-fc6c2061020d", + "id": "1736458919373789038.ebc18af6-b93a-4c06-aaf7-cea5ceb1dd44", "identifier": [ { "extension": [ @@ -311,10 +311,10 @@ } }, { - "fullUrl": "Location/1735607788783004000.fcc9da5e-069b-4cec-b7aa-736ecc94727c", + "fullUrl": "Location/1736458919490739280.c11d79d4-c906-4004-92da-34be4c52984a", "resource": { "resourceType": "Location", - "id": "1735607788783004000.fcc9da5e-069b-4cec-b7aa-736ecc94727c", + "id": "1736458919490739280.c11d79d4-c906-4004-92da-34be4c52984a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -338,10 +338,10 @@ } }, { - "fullUrl": "Organization/1735607788789601000.ea639e33-766a-43a3-b788-65734b2038e3", + "fullUrl": "Organization/1736458919502602395.70ff3e5f-477f-4f08-b145-3fb2323c97ba", "resource": { "resourceType": "Organization", - "id": "1735607788789601000.ea639e33-766a-43a3-b788-65734b2038e3", + "id": "1736458919502602395.70ff3e5f-477f-4f08-b145-3fb2323c97ba", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -449,7 +449,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607788783004000.fcc9da5e-069b-4cec-b7aa-736ecc94727c" + "reference": "Location/1736458919490739280.c11d79d4-c906-4004-92da-34be4c52984a" } } ], @@ -468,10 +468,10 @@ } }, { - "fullUrl": "Organization/1735607788790540000.0301f764-abad-4339-9b04-3d67bfc2890f", + "fullUrl": "Organization/1736458919504212481.c84875fb-5a44-4094-afa4-450f197d029e", "resource": { "resourceType": "Organization", - "id": "1735607788790540000.0301f764-abad-4339-9b04-3d67bfc2890f", + "id": "1736458919504212481.c84875fb-5a44-4094-afa4-450f197d029e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -510,10 +510,10 @@ } }, { - "fullUrl": "Organization/1735607788791771000.2c5e0d28-0e71-4524-b816-6366b513149a", + "fullUrl": "Organization/1736458919509753399.2453ef6d-c34c-4f6a-8d53-60b967f772c4", "resource": { "resourceType": "Organization", - "id": "1735607788791771000.2c5e0d28-0e71-4524-b816-6366b513149a", + "id": "1736458919509753399.2453ef6d-c34c-4f6a-8d53-60b967f772c4", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -552,10 +552,10 @@ } }, { - "fullUrl": "Location/1735607788793366000.f69dd253-1b62-4691-9d11-7706639537a1", + "fullUrl": "Location/1736458919513924540.6670c63f-8e91-4fc7-87f5-bb315049f6f8", "resource": { "resourceType": "Location", - "id": "1735607788793366000.f69dd253-1b62-4691-9d11-7706639537a1", + "id": "1736458919513924540.6670c63f-8e91-4fc7-87f5-bb315049f6f8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -579,10 +579,10 @@ } }, { - "fullUrl": "Organization/1735607788795116000.d031bc0f-0bd5-40f5-851f-f2d63d07df66", + "fullUrl": "Organization/1736458919518840563.8e999ad0-689a-4a0b-8381-cd7e17772336", "resource": { "resourceType": "Organization", - "id": "1735607788795116000.d031bc0f-0bd5-40f5-851f-f2d63d07df66", + "id": "1736458919518840563.8e999ad0-689a-4a0b-8381-cd7e17772336", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -694,7 +694,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607788793366000.f69dd253-1b62-4691-9d11-7706639537a1" + "reference": "Location/1736458919513924540.6670c63f-8e91-4fc7-87f5-bb315049f6f8" } } ], @@ -713,10 +713,10 @@ } }, { - "fullUrl": "Provenance/1735607789400786000.36647406-d8ef-465c-a006-4ad8ebae709a", + "fullUrl": "Provenance/1736458919655883953.7eba1ab1-dd47-40d8-be3d-9934c6fc49b0", "resource": { "resourceType": "Provenance", - "id": "1735607789400786000.36647406-d8ef-465c-a006-4ad8ebae709a", + "id": "1736458919655883953.7eba1ab1-dd47-40d8-be3d-9934c6fc49b0", "recorded": "2019-07-20T09:12:29Z", "activity": { "coding": [ @@ -736,7 +736,7 @@ ] }, "who": { - "reference": "Organization/1735607789400549000.0870bdd0-f749-461e-b3a7-6716ac333094" + "reference": "Organization/1736458919655610784.6d104bf7-b298-4fc2-bfb9-a56ac8ea622d" } } ], @@ -744,17 +744,17 @@ { "role": "source", "what": { - "reference": "Device/1735607789406144000.b3404124-99ee-41c8-bf4e-23f2b9cd21eb" + "reference": "Device/1736458919662724259.28591888-2b48-4972-8128-b5d95591d148" } } ] } }, { - "fullUrl": "Location/1735607789399146000.b3b90f88-3ed9-4df1-aab0-fd44bfa06ef3", + "fullUrl": "Location/1736458919653856362.09959ff4-8cc6-4d55-8433-b8a3c3a0bb1d", "resource": { "resourceType": "Location", - "id": "1735607789399146000.b3b90f88-3ed9-4df1-aab0-fd44bfa06ef3", + "id": "1736458919653856362.09959ff4-8cc6-4d55-8433-b8a3c3a0bb1d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -778,10 +778,10 @@ } }, { - "fullUrl": "Organization/1735607789400549000.0870bdd0-f749-461e-b3a7-6716ac333094", + "fullUrl": "Organization/1736458919655610784.6d104bf7-b298-4fc2-bfb9-a56ac8ea622d", "resource": { "resourceType": "Organization", - "id": "1735607789400549000.0870bdd0-f749-461e-b3a7-6716ac333094", + "id": "1736458919655610784.6d104bf7-b298-4fc2-bfb9-a56ac8ea622d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -889,7 +889,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789399146000.b3b90f88-3ed9-4df1-aab0-fd44bfa06ef3" + "reference": "Location/1736458919653856362.09959ff4-8cc6-4d55-8433-b8a3c3a0bb1d" } } ], @@ -908,10 +908,10 @@ } }, { - "fullUrl": "Location/1735607789404699000.db0bf87e-0ef0-41d2-a02b-6868b2bc9c05", + "fullUrl": "Location/1736458919661158103.180080e2-b849-43a4-bcb5-e40cfffe33fa", "resource": { "resourceType": "Location", - "id": "1735607789404699000.db0bf87e-0ef0-41d2-a02b-6868b2bc9c05", + "id": "1736458919661158103.180080e2-b849-43a4-bcb5-e40cfffe33fa", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -935,10 +935,10 @@ } }, { - "fullUrl": "Organization/1735607789405967000.2ef44250-9645-410a-939b-311c8720f2cb", + "fullUrl": "Organization/1736458919662515547.e91f572a-3a93-4545-be10-5bb8081ae27d", "resource": { "resourceType": "Organization", - "id": "1735607789405967000.2ef44250-9645-410a-939b-311c8720f2cb", + "id": "1736458919662515547.e91f572a-3a93-4545-be10-5bb8081ae27d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -1026,7 +1026,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789404699000.db0bf87e-0ef0-41d2-a02b-6868b2bc9c05" + "reference": "Location/1736458919661158103.180080e2-b849-43a4-bcb5-e40cfffe33fa" } } ], @@ -1045,15 +1045,15 @@ } }, { - "fullUrl": "Device/1735607789406144000.b3404124-99ee-41c8-bf4e-23f2b9cd21eb", + "fullUrl": "Device/1736458919662724259.28591888-2b48-4972-8128-b5d95591d148", "resource": { "resourceType": "Device", - "id": "1735607789406144000.b3404124-99ee-41c8-bf4e-23f2b9cd21eb", + "id": "1736458919662724259.28591888-2b48-4972-8128-b5d95591d148", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org", "valueReference": { - "reference": "Organization/1735607789405967000.2ef44250-9645-410a-939b-311c8720f2cb" + "reference": "Organization/1736458919662515547.e91f572a-3a93-4545-be10-5bb8081ae27d" } } ], @@ -1092,11 +1092,11 @@ } }, { - "fullUrl": "Provenance/1735607789419005000.28215b2a-0820-4097-8f30-2c9547183002", + "fullUrl": "Provenance/1736458919691235960.52f6fd0b-b557-4d98-8c4f-d6d545e472d5", "resource": { "resourceType": "Provenance", - "id": "1735607789419005000.28215b2a-0820-4097-8f30-2c9547183002", - "recorded": "2024-12-30T20:16:29Z", + "id": "1736458919691235960.52f6fd0b-b557-4d98-8c4f-d6d545e472d5", + "recorded": "2025-01-09T21:41:59Z", "policy": [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], @@ -1118,17 +1118,17 @@ ] }, "who": { - "reference": "Organization/1735607789418679000.e3615b5a-1599-4ec9-9225-2509f96c3cb3" + "reference": "Organization/1736458919690758563.1f826fa7-f5d7-46a0-9a42-4948b7bc7d7f" } } ] } }, { - "fullUrl": "Organization/1735607789418679000.e3615b5a-1599-4ec9-9225-2509f96c3cb3", + "fullUrl": "Organization/1736458919690758563.1f826fa7-f5d7-46a0-9a42-4948b7bc7d7f", "resource": { "resourceType": "Organization", - "id": "1735607789418679000.e3615b5a-1599-4ec9-9225-2509f96c3cb3", + "id": "1736458919690758563.1f826fa7-f5d7-46a0-9a42-4948b7bc7d7f", "identifier": [ { "value": "CDC PRIME - Atlanta" @@ -1148,16 +1148,16 @@ } }, { - "fullUrl": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358", + "fullUrl": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5", "resource": { "resourceType": "Patient", - "id": "1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358", + "id": "1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5", "meta": { "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id", "valueReference": { - "reference": "Organization/1735607789475161000.607492b8-293e-4676-9ba0-80ac477a81ea" + "reference": "Organization/1736458919766423966.c3999584-a2e0-4456-ba88-8ef4adb03842" } } ], @@ -1313,7 +1313,7 @@ } ], "authorReference": { - "reference": "Practitioner/1735607789436858000.2442f7af-f8dc-4ebc-ab01-07797fd87ad3" + "reference": "Practitioner/1736458919711904425.9f0042c1-9f45-4ea2-88b2-e243c9017b04" }, "time": "2023-05-31", "_time": { @@ -2208,7 +2208,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1735607789447262000.d65ccc51-e1cf-4446-9f9b-3a215ce7f1ef" + "reference": "Organization/1736458919721982439.b96c375d-32d7-4764-b51f-72a5b10558be" } }, { @@ -2259,7 +2259,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1735607789448245000.e28c90b7-673b-444f-9e62-26ea69eb7f20" + "reference": "Organization/1736458919723152217.e1ec858f-7171-4b0a-be77-3cd6824aee93" } }, { @@ -2373,13 +2373,13 @@ { "url": "PD1.14", "valueReference": { - "reference": "Organization/1735607789451052000.37570915-eb73-48bf-a47a-0f21de6138df" + "reference": "Organization/1736458919726642709.6f2ec3fc-3f29-4fbd-a15c-760e3e7ff28b" } }, { "url": "PD1.14", "valueReference": { - "reference": "Organization/1735607789452466000.a861f493-536d-4c92-a4c9-be3e9b3790a4" + "reference": "Organization/1736458919728360353.1ae2c1f2-0f65-4cb9-a66e-ae389d1f35c9" } }, { @@ -2810,7 +2810,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1735607789426028000.cebe20d6-333b-43e2-97bb-2b964a190659" + "reference": "Organization/1736458919701700868.d97d468e-3504-4c0a-919f-920aff658365" } }, { @@ -2962,7 +2962,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", "valueReference": { - "reference": "Organization/1735607789429009000.a4ca49cb-6127-4060-b213-637f62d3a797" + "reference": "Organization/1736458919705296366.84182968-773e-419a-9c23-a93dbd813953" } }, { @@ -4202,7 +4202,7 @@ }, "gender": "unknown", "organization": { - "reference": "Organization/1735607789479937000.0ffe6365-3167-46b8-97cd-b89e3c3cc76c" + "reference": "Organization/1736458919773301928.ddcabfbc-735a-4d08-b558-4d5e0ae094da" }, "period": { "start": "2022-05-01T10:25:31-04:00", @@ -4250,22 +4250,25 @@ ], "generalPractitioner": [ { - "reference": "Organization/1735607789431855000.ad939ac4-711d-46a1-9bac-8f982a70ad28" + "reference": "Organization/1736458919789935071.8d9babc0-3174-431a-8d2e-8db15ea102ce" }, { - "reference": "Organization/1735607789433921000.e7ff3fd8-e7da-4e7a-aed7-a309096a63d1" + "reference": "Organization/1736458919792968897.ed7b289e-f356-4a4d-a157-132e8915597f" + }, + { + "reference": "Practitioner/1736458919794295529.9305d0d9-cd42-4dab-81de-1220b3ac11c7" } ], "link": [ { "other": { - "reference": "RelatedPerson/1735607789466485000.2e42cc17-cf86-48fd-ba66-e408a017d2e0" + "reference": "RelatedPerson/1736458919745992613.eae73524-9e36-422c-af93-2eb49f67297a" }, "type": "seealso" }, { "other": { - "reference": "RelatedPerson/1735607789466882000.88992c12-14e1-49bc-9c2d-b912fac21955" + "reference": "RelatedPerson/1736458919746932862.1fcb890f-266a-413c-8948-67bde4a46990" }, "type": "seealso" } @@ -4273,10 +4276,10 @@ } }, { - "fullUrl": "Organization/1735607789426028000.cebe20d6-333b-43e2-97bb-2b964a190659", + "fullUrl": "Organization/1736458919701700868.d97d468e-3504-4c0a-919f-920aff658365", "resource": { "resourceType": "Organization", - "id": "1735607789426028000.cebe20d6-333b-43e2-97bb-2b964a190659", + "id": "1736458919701700868.d97d468e-3504-4c0a-919f-920aff658365", "identifier": [ { "extension": [ @@ -4309,10 +4312,10 @@ } }, { - "fullUrl": "Organization/1735607789429009000.a4ca49cb-6127-4060-b213-637f62d3a797", + "fullUrl": "Organization/1736458919705296366.84182968-773e-419a-9c23-a93dbd813953", "resource": { "resourceType": "Organization", - "id": "1735607789429009000.a4ca49cb-6127-4060-b213-637f62d3a797", + "id": "1736458919705296366.84182968-773e-419a-9c23-a93dbd813953", "identifier": [ { "extension": [ @@ -4345,10 +4348,94 @@ } }, { - "fullUrl": "Location/1735607789430391000.4226dbd4-f4e0-449a-8832-a725f2913b8f", + "fullUrl": "Practitioner/1736458919711904425.9f0042c1-9f45-4ea2-88b2-e243c9017b04", + "resource": { + "resourceType": "Practitioner", + "id": "1736458919711904425.9f0042c1-9f45-4ea2-88b2-e243c9017b04", + "identifier": [ + { + "value": "Bob R.N." + } + ] + } + }, + { + "fullUrl": "Organization/1736458919721982439.b96c375d-32d7-4764-b51f-72a5b10558be", + "resource": { + "resourceType": "Organization", + "id": "1736458919721982439.b96c375d-32d7-4764-b51f-72a5b10558be", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "University H" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.0" + } + ] + } + }, + { + "fullUrl": "Organization/1736458919723152217.e1ec858f-7171-4b0a-be77-3cd6824aee93", + "resource": { + "resourceType": "Organization", + "id": "1736458919723152217.e1ec858f-7171-4b0a-be77-3cd6824aee93", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "SSA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.184" + } + ] + } + }, + { + "fullUrl": "Location/1736458919725088174.9fed01fa-2244-4046-bc99-44dbed63e595", "resource": { "resourceType": "Location", - "id": "1735607789430391000.4226dbd4-f4e0-449a-8832-a725f2913b8f", + "id": "1736458919725088174.9fed01fa-2244-4046-bc99-44dbed63e595", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4372,10 +4459,10 @@ } }, { - "fullUrl": "Organization/1735607789431855000.ad939ac4-711d-46a1-9bac-8f982a70ad28", + "fullUrl": "Organization/1736458919726642709.6f2ec3fc-3f29-4fbd-a15c-760e3e7ff28b", "resource": { "resourceType": "Organization", - "id": "1735607789431855000.ad939ac4-711d-46a1-9bac-8f982a70ad28", + "id": "1736458919726642709.6f2ec3fc-3f29-4fbd-a15c-760e3e7ff28b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4447,7 +4534,7 @@ }, { "url": "XON.10", - "valueString": "OrgIdentifier" + "valueString": "1st OrgIdentifier" } ] } @@ -4483,7 +4570,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789430391000.4226dbd4-f4e0-449a-8832-a725f2913b8f" + "reference": "Location/1736458919725088174.9fed01fa-2244-4046-bc99-44dbed63e595" } } ], @@ -4495,17 +4582,17 @@ } ] }, - "value": "OrgIdentifier" + "value": "1st OrgIdentifier" } ], - "name": "Ordering Facility" + "name": "1st Ordering Facility" } }, { - "fullUrl": "Location/1735607789432811000.d8d8dec6-00c4-4bd9-b1cc-b194f2fd82e4", + "fullUrl": "Location/1736458919727384611.a7fff565-fcba-470f-9559-d5aab6cee4ac", "resource": { "resourceType": "Location", - "id": "1735607789432811000.d8d8dec6-00c4-4bd9-b1cc-b194f2fd82e4", + "id": "1736458919727384611.a7fff565-fcba-470f-9559-d5aab6cee4ac", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4529,10 +4616,10 @@ } }, { - "fullUrl": "Organization/1735607789433921000.e7ff3fd8-e7da-4e7a-aed7-a309096a63d1", + "fullUrl": "Organization/1736458919728360353.1ae2c1f2-0f65-4cb9-a66e-ae389d1f35c9", "resource": { "resourceType": "Organization", - "id": "1735607789433921000.e7ff3fd8-e7da-4e7a-aed7-a309096a63d1", + "id": "1736458919728360353.1ae2c1f2-0f65-4cb9-a66e-ae389d1f35c9", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4604,7 +4691,7 @@ }, { "url": "XON.10", - "valueString": "OrgIdentifier" + "valueString": "2nd OrgIdentifier" } ] } @@ -4640,7 +4727,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789432811000.d8d8dec6-00c4-4bd9-b1cc-b194f2fd82e4" + "reference": "Location/1736458919727384611.a7fff565-fcba-470f-9559-d5aab6cee4ac" } } ], @@ -4652,29 +4739,41 @@ } ] }, - "value": "OrgIdentifier" + "value": "2nd OrgIdentifier" } ], - "name": "Ordering Facility" + "name": "2nd Ordering Facility" } }, { - "fullUrl": "Practitioner/1735607789436858000.2442f7af-f8dc-4ebc-ab01-07797fd87ad3", + "fullUrl": "RelatedPerson/1736458919745992613.eae73524-9e36-422c-af93-2eb49f67297a", "resource": { - "resourceType": "Practitioner", - "id": "1735607789436858000.2442f7af-f8dc-4ebc-ab01-07797fd87ad3", + "resourceType": "RelatedPerson", + "id": "1736458919745992613.eae73524-9e36-422c-af93-2eb49f67297a", "identifier": [ { - "value": "Bob R.N." + "value": "maybe" + } + ] + } + }, + { + "fullUrl": "RelatedPerson/1736458919746932862.1fcb890f-266a-413c-8948-67bde4a46990", + "resource": { + "resourceType": "RelatedPerson", + "id": "1736458919746932862.1fcb890f-266a-413c-8948-67bde4a46990", + "identifier": [ + { + "value": "maybe not" } ] } }, { - "fullUrl": "Organization/1735607789447262000.d65ccc51-e1cf-4446-9f9b-3a215ce7f1ef", + "fullUrl": "Organization/1736458919766423966.c3999584-a2e0-4456-ba88-8ef4adb03842", "resource": { "resourceType": "Organization", - "id": "1735607789447262000.d65ccc51-e1cf-4446-9f9b-3a215ce7f1ef", + "id": "1736458919766423966.c3999584-a2e0-4456-ba88-8ef4adb03842", "identifier": [ { "extension": [ @@ -4683,7 +4782,7 @@ "valueString": "HD.1" } ], - "value": "University H" + "value": "RSDT" }, { "extension": [ @@ -4701,52 +4800,163 @@ ] }, "system": "urn:ietf:rfc:3986", - "value": "2.16.840.1.113883.3.0" + "value": "0.0.0.1.1138" } ] } }, { - "fullUrl": "Organization/1735607789448245000.e28c90b7-673b-444f-9e62-26ea69eb7f20", + "fullUrl": "Organization/1736458919773301928.ddcabfbc-735a-4d08-b558-4d5e0ae094da", "resource": { "resourceType": "Organization", - "id": "1735607789448245000.e28c90b7-673b-444f-9e62-26ea69eb7f20", - "identifier": [ + "id": "1736458919773301928.ddcabfbc-735a-4d08-b558-4d5e0ae094da", + "extension": [ { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.1" + "url": "XON.3", + "valueString": "112233" + }, + { + "url": "XON.10", + "valueString": "HRU" } - ], - "value": "SSA" - }, + ] + } + ], + "identifier": [ { - "extension": [ + "value": "HRU" + } + ], + "name": "HospitalsRUs", + "contact": [ + { + "telecom": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.2,HD.3" + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", + "valueString": "1" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", + "valueString": "720" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", + "valueString": "5553954" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", + "extension": [ + { + "url": "XTN.2", + "valueString": "WPN" + }, + { + "url": "XTN.3", + "valueString": "PH" + }, + { + "url": "XTN.7", + "valueString": "5553954" + }, + { + "url": "XTN.12", + "valueString": "+1 720 555 3954" + } + ] + } + ], + "system": "phone", + "value": "+1 720 555 3954", + "use": "work" } ], - "type": { - "coding": [ + "address": { + "extension": [ { - "system": "http://terminology.hl7.org/CodeSystem/v2-0301", - "code": "ISO" + "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", + "valueCode": "12" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", + "extension": [ + { + "url": "SAD.1", + "valueString": "4861 20TH AVE" + } + ] + }, + { + "url": "XAD.2", + "valueString": "#B" + }, + { + "url": "XAD.7", + "valueCode": "H" + }, + { + "url": "XAD.8", + "valueString": "World" + }, + { + "url": "XAD.11", + "valueCode": "8" + }, + { + "url": "XAD.12", + "extension": [ + { + "url": "XAD.12.1", + "valueString": "2017" + }, + { + "url": "XAD.12.2", + "valueString": "2025" + } + ] + }, + { + "url": "XAD.13", + "valueString": "2020" + }, + { + "url": "XAD.14", + "valueString": "2021" + } + ] } - ] - }, - "system": "urn:ietf:rfc:3986", - "value": "2.16.840.1.113883.3.184" + ], + "use": "home", + "line": [ + "4861 20TH AVE", + "#B" + ], + "city": "AURORA", + "district": "King", + "state": "IG", + "postalCode": "99999", + "country": "USA", + "period": { + "start": "2020", + "end": "2021" + } + } } ] } }, { - "fullUrl": "Location/1735607789450177000.e6c74734-dd43-44a1-b9a3-cafa523fc44a", + "fullUrl": "Location/1736458919788081687.4e558643-e2d9-4c34-80aa-d2197a908885", "resource": { "resourceType": "Location", - "id": "1735607789450177000.e6c74734-dd43-44a1-b9a3-cafa523fc44a", + "id": "1736458919788081687.4e558643-e2d9-4c34-80aa-d2197a908885", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4770,10 +4980,10 @@ } }, { - "fullUrl": "Organization/1735607789451052000.37570915-eb73-48bf-a47a-0f21de6138df", + "fullUrl": "Organization/1736458919789935071.8d9babc0-3174-431a-8d2e-8db15ea102ce", "resource": { "resourceType": "Organization", - "id": "1735607789451052000.37570915-eb73-48bf-a47a-0f21de6138df", + "id": "1736458919789935071.8d9babc0-3174-431a-8d2e-8db15ea102ce", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -4845,7 +5055,7 @@ }, { "url": "XON.10", - "valueString": "1st OrgIdentifier" + "valueString": "OrgIdentifier" } ] } @@ -4881,7 +5091,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789450177000.e6c74734-dd43-44a1-b9a3-cafa523fc44a" + "reference": "Location/1736458919788081687.4e558643-e2d9-4c34-80aa-d2197a908885" } } ], @@ -4893,17 +5103,17 @@ } ] }, - "value": "1st OrgIdentifier" + "value": "OrgIdentifier" } ], - "name": "1st Ordering Facility" + "name": "Ordering Facility" } }, { - "fullUrl": "Location/1735607789451705000.4a934e83-2a80-47e9-bbff-d492029451ab", + "fullUrl": "Location/1736458919791116279.90fa9cb7-2527-48d1-92a4-af7f4ef1e1fe", "resource": { "resourceType": "Location", - "id": "1735607789451705000.4a934e83-2a80-47e9-bbff-d492029451ab", + "id": "1736458919791116279.90fa9cb7-2527-48d1-92a4-af7f4ef1e1fe", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -4927,10 +5137,10 @@ } }, { - "fullUrl": "Organization/1735607789452466000.a861f493-536d-4c92-a4c9-be3e9b3790a4", + "fullUrl": "Organization/1736458919792968897.ed7b289e-f356-4a4d-a157-132e8915597f", "resource": { "resourceType": "Organization", - "id": "1735607789452466000.a861f493-536d-4c92-a4c9-be3e9b3790a4", + "id": "1736458919792968897.ed7b289e-f356-4a4d-a157-132e8915597f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -5002,7 +5212,7 @@ }, { "url": "XON.10", - "valueString": "2nd OrgIdentifier" + "valueString": "OrgIdentifier" } ] } @@ -5038,7 +5248,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789451705000.4a934e83-2a80-47e9-bbff-d492029451ab" + "reference": "Location/1736458919791116279.90fa9cb7-2527-48d1-92a4-af7f4ef1e1fe" } } ], @@ -5050,41 +5260,17 @@ } ] }, - "value": "2nd OrgIdentifier" + "value": "OrgIdentifier" } ], - "name": "2nd Ordering Facility" - } - }, - { - "fullUrl": "RelatedPerson/1735607789466485000.2e42cc17-cf86-48fd-ba66-e408a017d2e0", - "resource": { - "resourceType": "RelatedPerson", - "id": "1735607789466485000.2e42cc17-cf86-48fd-ba66-e408a017d2e0", - "identifier": [ - { - "value": "maybe" - } - ] - } - }, - { - "fullUrl": "RelatedPerson/1735607789466882000.88992c12-14e1-49bc-9c2d-b912fac21955", - "resource": { - "resourceType": "RelatedPerson", - "id": "1735607789466882000.88992c12-14e1-49bc-9c2d-b912fac21955", - "identifier": [ - { - "value": "maybe not" - } - ] + "name": "Ordering Facility" } }, { - "fullUrl": "Organization/1735607789475161000.607492b8-293e-4676-9ba0-80ac477a81ea", + "fullUrl": "Organization/1736458919793411125.2eec63c5-3553-4884-9736-a9288e0283f1", "resource": { "resourceType": "Organization", - "id": "1735607789475161000.607492b8-293e-4676-9ba0-80ac477a81ea", + "id": "1736458919793411125.2eec63c5-3553-4884-9736-a9288e0283f1", "identifier": [ { "extension": [ @@ -5093,188 +5279,84 @@ "valueString": "HD.1" } ], - "value": "RSDT" - }, - { - "extension": [ - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString": "HD.2,HD.3" - } - ], - "type": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/v2-0301", - "code": "ISO" - } - ] - }, - "system": "urn:ietf:rfc:3986", - "value": "0.0.0.1.1138" + "value": "NPI" } ] } }, { - "fullUrl": "Organization/1735607789479937000.0ffe6365-3167-46b8-97cd-b89e3c3cc76c", + "fullUrl": "Practitioner/1736458919794295529.9305d0d9-cd42-4dab-81de-1220b3ac11c7", "resource": { - "resourceType": "Organization", - "id": "1735607789479937000.0ffe6365-3167-46b8-97cd-b89e3c3cc76c", + "resourceType": "Practitioner", + "id": "1736458919794295529.9305d0d9-cd42-4dab-81de-1220b3ac11c7", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", "extension": [ { - "url": "XON.3", - "valueString": "112233" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "PD1.4NameGiven" }, { - "url": "XON.10", - "valueString": "HRU" + "url": "XCN.4", + "valueString": "PD1.4NameInit" } ] } ], "identifier": [ { - "value": "HRU" - } - ], - "name": "HospitalsRUs", - "contact": [ - { - "telecom": [ - { - "extension": [ - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country", - "valueString": "1" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area", - "valueString": "720" - }, - { - "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local", - "valueString": "5553954" - }, - { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point", - "extension": [ - { - "url": "XTN.2", - "valueString": "WPN" - }, - { - "url": "XTN.3", - "valueString": "PH" - }, - { - "url": "XTN.7", - "valueString": "5553954" - }, - { - "url": "XTN.12", - "valueString": "+1 720 555 3954" - } - ] - } - ], - "system": "phone", - "value": "+1 720 555 3954", - "use": "work" - } - ], - "address": { - "extension": [ - { - "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract", - "valueCode": "12" - }, + "type": { + "coding": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address", "extension": [ { - "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line", - "extension": [ - { - "url": "SAD.1", - "valueString": "4861 20TH AVE" - } - ] - }, - { - "url": "XAD.2", - "valueString": "#B" - }, - { - "url": "XAD.7", - "valueCode": "H" - }, - { - "url": "XAD.8", - "valueString": "World" - }, - { - "url": "XAD.11", - "valueCode": "8" - }, - { - "url": "XAD.12", - "extension": [ - { - "url": "XAD.12.1", - "valueString": "2017" - }, - { - "url": "XAD.12.2", - "valueString": "2025" - } - ] - }, - { - "url": "XAD.13", - "valueString": "2020" - }, - { - "url": "XAD.14", - "valueString": "2021" + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true } - ] + ], + "code": "NPI" } - ], - "use": "home", - "line": [ - "4861 20TH AVE", - "#B" - ], - "city": "AURORA", - "district": "King", - "state": "IG", - "postalCode": "99999", - "country": "USA", - "period": { - "start": "2020", - "end": "2021" - } + ] + }, + "value": "1111111111", + "assigner": { + "reference": "Organization/1736458919793411125.2eec63c5-3553-4884-9736-a9288e0283f1" } } + ], + "name": [ + { + "family": "PD1.4NameFamily", + "given": [ + "PD1.4NameGiven", + "PD1.4NameInit" + ] + } ] } }, { - "fullUrl": "Provenance/1735607789515261000.f8ef0058-b6ac-4e30-ba2c-a20986fc8af5", + "fullUrl": "Provenance/1736458919841590087.872302f4-44fb-4569-98cd-b84d60958e7d", "resource": { "resourceType": "Provenance", - "id": "1735607789515261000.f8ef0058-b6ac-4e30-ba2c-a20986fc8af5", + "id": "1736458919841590087.872302f4-44fb-4569-98cd-b84d60958e7d", "target": [ { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" } ], "occurredDateTime": "2024-08-21T11:38:00Z", - "recorded": "2024-12-30T20:16:29Z", + "recorded": "2025-01-09T21:41:59Z", "activity": { "coding": [ { @@ -5294,17 +5376,17 @@ ] }, "who": { - "reference": "Organization/1735607789514960000.c418736a-224b-45b1-816b-a75809d8f337" + "reference": "Organization/1736458919840495874.739fdf21-5029-43f5-8b90-2c8a69fa9579" } } ] } }, { - "fullUrl": "Organization/1735607789514960000.c418736a-224b-45b1-816b-a75809d8f337", + "fullUrl": "Organization/1736458919840495874.739fdf21-5029-43f5-8b90-2c8a69fa9579", "resource": { "resourceType": "Organization", - "id": "1735607789514960000.c418736a-224b-45b1-816b-a75809d8f337", + "id": "1736458919840495874.739fdf21-5029-43f5-8b90-2c8a69fa9579", "identifier": [ { "extension": [ @@ -5337,10 +5419,10 @@ } }, { - "fullUrl": "RelatedPerson/1735607789526310000.dbdd8551-5077-4197-8a82-0b08a39be8e4", + "fullUrl": "RelatedPerson/1736458919878825084.62891af7-f746-4ea7-b825-5984b2b9b005", "resource": { "resourceType": "RelatedPerson", - "id": "1735607789526310000.dbdd8551-5077-4197-8a82-0b08a39be8e4", + "id": "1736458919878825084.62891af7-f746-4ea7-b825-5984b2b9b005", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -5352,13 +5434,13 @@ { "url": "NK1.13", "valueReference": { - "reference": "Organization/1735607789517744000.03a99988-2a47-4aae-bcc6-a75464854b83" + "reference": "Organization/1736458919848826568.f22f6bfd-a2bd-41ee-a66b-dd26aaf024d0" } }, { "url": "NK1.13", "valueReference": { - "reference": "Organization/1735607789518037000.8ab16480-1c9d-4e87-b345-db7778709cb4" + "reference": "Organization/1736458919851136538.0227bb6c-9e8c-41c4-8130-dfe30502fcdd" } }, { @@ -5431,7 +5513,7 @@ } ], "patient": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "relationship": [ { @@ -6432,10 +6514,10 @@ } }, { - "fullUrl": "Organization/1735607789517744000.03a99988-2a47-4aae-bcc6-a75464854b83", + "fullUrl": "Organization/1736458919848826568.f22f6bfd-a2bd-41ee-a66b-dd26aaf024d0", "resource": { "resourceType": "Organization", - "id": "1735607789517744000.03a99988-2a47-4aae-bcc6-a75464854b83", + "id": "1736458919848826568.f22f6bfd-a2bd-41ee-a66b-dd26aaf024d0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -6460,10 +6542,10 @@ } }, { - "fullUrl": "Organization/1735607789518037000.8ab16480-1c9d-4e87-b345-db7778709cb4", + "fullUrl": "Organization/1736458919851136538.0227bb6c-9e8c-41c4-8130-dfe30502fcdd", "resource": { "resourceType": "Organization", - "id": "1735607789518037000.8ab16480-1c9d-4e87-b345-db7778709cb4", + "id": "1736458919851136538.0227bb6c-9e8c-41c4-8130-dfe30502fcdd", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -6488,10 +6570,10 @@ } }, { - "fullUrl": "RelatedPerson/1735607789533113000.01a5da61-b2d6-49c3-84c5-b071ea85fc68", + "fullUrl": "RelatedPerson/1736458919901550306.30f55851-2c3c-4780-94ba-764378f7b37e", "resource": { "resourceType": "RelatedPerson", - "id": "1735607789533113000.01a5da61-b2d6-49c3-84c5-b071ea85fc68", + "id": "1736458919901550306.30f55851-2c3c-4780-94ba-764378f7b37e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -6503,7 +6585,7 @@ { "url": "NK1.13", "valueReference": { - "reference": "Organization/1735607789528210000.ccf71361-12da-4824-9a9a-fb3496b096d1" + "reference": "Organization/1736458919885527753.1852a5e0-f284-4172-ae76-2288c494854d" } }, { @@ -6556,7 +6638,7 @@ } ], "patient": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "relationship": [ { @@ -7172,10 +7254,10 @@ } }, { - "fullUrl": "Organization/1735607789528210000.ccf71361-12da-4824-9a9a-fb3496b096d1", + "fullUrl": "Organization/1736458919885527753.1852a5e0-f284-4172-ae76-2288c494854d", "resource": { "resourceType": "Organization", - "id": "1735607789528210000.ccf71361-12da-4824-9a9a-fb3496b096d1", + "id": "1736458919885527753.1852a5e0-f284-4172-ae76-2288c494854d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -7200,10 +7282,10 @@ } }, { - "fullUrl": "Encounter/1735607789565393000.2075dbd4-8b88-4110-b872-e6a445cdde7f", + "fullUrl": "Encounter/1736458919960060020.4056ddfe-13f9-4d4b-a37e-048caacbb4d0", "resource": { "resourceType": "Encounter", - "id": "1735607789565393000.2075dbd4-8b88-4110-b872-e6a445cdde7f", + "id": "1736458919960060020.4056ddfe-13f9-4d4b-a37e-048caacbb4d0", "meta": { "security": [ { @@ -7218,7 +7300,7 @@ "valueString": "Description" } ], - "div": "\u003cdiv xmlns\u003d\"http://www.w3.org/1999/xhtml\"\u003eDescription\u003c/div\u003e" + "div": "
Description
" }, "extension": [ { @@ -7542,13 +7624,13 @@ { "url": "PV2.23", "valueReference": { - "reference": "Organization/1735607789543720000.08a0470d-a41d-43f1-9fda-0e205c44dea0" + "reference": "Organization/1736458919925486249.37a3f414-df7b-4f6f-bbd5-de0860aed922" } }, { "url": "PV2.23", "valueReference": { - "reference": "Organization/1735607789545422000.223e73ed-7ea7-40de-b13c-ca4db4a38e41" + "reference": "Organization/1736458919927612213.9f50293a-f46a-4461-9a4a-d230428a6f1f" } }, { @@ -7679,11 +7761,11 @@ ] }, "subject": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "episodeOfCare": [ { - "reference": "EpisodeOfCare/1735607789565923000.72b02b00-3b17-4a4f-93cb-c649a1c96487" + "reference": "EpisodeOfCare/1736458919960723585.c295f557-b8e7-4837-9bc4-215639e42797" } ], "participant": [ @@ -7700,7 +7782,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789549216000.2258fbf0-4555-43c4-80b9-802113b54959" + "reference": "Practitioner/1736458919934380845.6df21616-9b72-44de-bc80-d44c6e257266" } }, { @@ -7716,7 +7798,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789550253000.1d1db3db-7201-4bb6-8213-59a1d4edd981" + "reference": "Practitioner/1736458919935927452.cd62f2ab-5508-4ae8-9865-b3fda0a7ef29" } }, { @@ -7732,7 +7814,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789550896000.700666bb-6f01-44be-bb36-8def2faea1a3" + "reference": "Practitioner/1736458919937167456.1a9f3b83-1cf1-42ea-88cf-4eb7b1008f58" } }, { @@ -7748,7 +7830,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789551727000.c13bfb48-3f3a-4f62-be52-43aa010dbb8a" + "reference": "Practitioner/1736458919938336427.c60baa5e-b771-4247-9cf2-dfaaf34065ce" } }, { @@ -7764,7 +7846,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789552421000.3b8fa292-b469-4171-b58e-dfb28b2cfa83" + "reference": "Practitioner/1736458919939373800.c6c79737-49ce-4b0b-8734-77571152bb92" } }, { @@ -7780,7 +7862,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789553063000.45ff9315-aa6b-4569-bba3-31550e5201ae" + "reference": "Practitioner/1736458919940264952.8b005932-d7c2-4377-a7fb-3c6d57f4ca52" } }, { @@ -7796,7 +7878,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789553667000.3d345330-3495-472b-bd24-2a41c88a0085" + "reference": "Practitioner/1736458919941605564.23c6ec81-973c-44f6-a1bd-4142c789f1cb" } }, { @@ -7812,7 +7894,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789554302000.c05d6f0e-c752-47eb-a490-1d7771336e8f" + "reference": "Practitioner/1736458919942862944.a82ac561-057b-4014-933b-0a10ad774162" } }, { @@ -7828,7 +7910,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789557025000.208f3367-5ff0-4259-8eb5-c571a4d41c86" + "reference": "Practitioner/1736458919947372465.6fed82ed-cbaa-4559-afd1-458b4419cf56" } }, { @@ -7844,7 +7926,7 @@ } ], "individual": { - "reference": "Practitioner/1735607789559587000.41a17b4b-d095-4247-b540-ef28c9fbccf5" + "reference": "Practitioner/1736458919950892993.80ea3265-5bcf-460c-98af-c60f1b81f0a5" } } ], @@ -7977,7 +8059,7 @@ } ], "destination": { - "reference": "Location/1735607789545966000.645a36f8-c25c-4da5-8306-5c604dd51f60" + "reference": "Location/1736458919928869112.447affd4-8ca4-4d72-9199-2dd6025a4887" }, "dischargeDisposition": { "coding": [ @@ -8007,7 +8089,7 @@ } ], "location": { - "reference": "Location/1735607789562451000.06a7267a-3ab3-4661-9297-4219312b72a7" + "reference": "Location/1736458919955611294.59e7b2fc-4d8d-4722-9c5e-9e68bed0bee1" }, "status": "active" }, @@ -8019,7 +8101,7 @@ } ], "location": { - "reference": "Location/1735607789563417000.329aec3f-e5d2-4c2f-a62d-d740c22f77af" + "reference": "Location/1736458919957110590.d4bfa857-0750-481d-916b-bae3c3946e62" }, "status": "completed" }, @@ -8035,7 +8117,7 @@ } ], "location": { - "reference": "Location/1735607789563728000.b82acbca-feca-49ec-af36-5898b6a56f21" + "reference": "Location/1736458919957617623.01068aca-b9a0-47a5-8a1d-2cd0b1ec4784" }, "status": "active" }, @@ -8047,7 +8129,7 @@ } ], "location": { - "reference": "Location/1735607789564031000.d02a9d2f-25fd-4631-a14f-7c27652e16e8" + "reference": "Location/1736458919958045340.21174502-311f-40c6-9a38-005e0e4999c6" }, "status": "planned" }, @@ -8063,7 +8145,7 @@ } ], "location": { - "reference": "Location/1735607789564325000.27604f89-b265-4648-bb40-4008fe93d4a6" + "reference": "Location/1736458919958453454.d4fe88f6-1a62-4ae8-9f9c-4a6656ac1836" }, "status": "completed" }, @@ -8079,7 +8161,7 @@ } ], "location": { - "reference": "Location/1735607789565275000.2856cdc2-b42f-4771-a32a-46d4d25e5cfd" + "reference": "Location/1736458919959894717.5803343c-dab9-4848-a8ab-d88ad2f5edae" }, "status": "planned" } @@ -8087,10 +8169,10 @@ } }, { - "fullUrl": "Location/1735607789543064000.cfdb2b56-3486-4488-ab4a-78ceb3fa48a9", + "fullUrl": "Location/1736458919923972105.5aa23d32-d245-40ff-a02d-44baf02e2864", "resource": { "resourceType": "Location", - "id": "1735607789543064000.cfdb2b56-3486-4488-ab4a-78ceb3fa48a9", + "id": "1736458919923972105.5aa23d32-d245-40ff-a02d-44baf02e2864", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -8114,10 +8196,10 @@ } }, { - "fullUrl": "Organization/1735607789543720000.08a0470d-a41d-43f1-9fda-0e205c44dea0", + "fullUrl": "Organization/1736458919925486249.37a3f414-df7b-4f6f-bbd5-de0860aed922", "resource": { "resourceType": "Organization", - "id": "1735607789543720000.08a0470d-a41d-43f1-9fda-0e205c44dea0", + "id": "1736458919925486249.37a3f414-df7b-4f6f-bbd5-de0860aed922", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -8217,7 +8299,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789543064000.cfdb2b56-3486-4488-ab4a-78ceb3fa48a9" + "reference": "Location/1736458919923972105.5aa23d32-d245-40ff-a02d-44baf02e2864" } } ], @@ -8236,10 +8318,10 @@ } }, { - "fullUrl": "Location/1735607789544686000.8e0c5be7-9162-4b60-8666-afa01f67a2a8", + "fullUrl": "Location/1736458919926211526.2543a99b-84e9-4645-9974-791438f16e23", "resource": { "resourceType": "Location", - "id": "1735607789544686000.8e0c5be7-9162-4b60-8666-afa01f67a2a8", + "id": "1736458919926211526.2543a99b-84e9-4645-9974-791438f16e23", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -8263,10 +8345,10 @@ } }, { - "fullUrl": "Organization/1735607789545422000.223e73ed-7ea7-40de-b13c-ca4db4a38e41", + "fullUrl": "Organization/1736458919927612213.9f50293a-f46a-4461-9a4a-d230428a6f1f", "resource": { "resourceType": "Organization", - "id": "1735607789545422000.223e73ed-7ea7-40de-b13c-ca4db4a38e41", + "id": "1736458919927612213.9f50293a-f46a-4461-9a4a-d230428a6f1f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", @@ -8366,7 +8448,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789544686000.8e0c5be7-9162-4b60-8666-afa01f67a2a8" + "reference": "Location/1736458919926211526.2543a99b-84e9-4645-9974-791438f16e23" } } ], @@ -8385,10 +8467,10 @@ } }, { - "fullUrl": "Location/1735607789545966000.645a36f8-c25c-4da5-8306-5c604dd51f60", + "fullUrl": "Location/1736458919928869112.447affd4-8ca4-4d72-9199-2dd6025a4887", "resource": { "resourceType": "Location", - "id": "1735607789545966000.645a36f8-c25c-4da5-8306-5c604dd51f60", + "id": "1736458919928869112.447affd4-8ca4-4d72-9199-2dd6025a4887", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date", @@ -8398,10 +8480,10 @@ } }, { - "fullUrl": "Practitioner/1735607789549216000.2258fbf0-4555-43c4-80b9-802113b54959", + "fullUrl": "Practitioner/1736458919934380845.6df21616-9b72-44de-bc80-d44c6e257266", "resource": { "resourceType": "Practitioner", - "id": "1735607789549216000.2258fbf0-4555-43c4-80b9-802113b54959", + "id": "1736458919934380845.6df21616-9b72-44de-bc80-d44c6e257266", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8494,10 +8576,10 @@ } }, { - "fullUrl": "Practitioner/1735607789550253000.1d1db3db-7201-4bb6-8213-59a1d4edd981", + "fullUrl": "Practitioner/1736458919935927452.cd62f2ab-5508-4ae8-9865-b3fda0a7ef29", "resource": { "resourceType": "Practitioner", - "id": "1735607789550253000.1d1db3db-7201-4bb6-8213-59a1d4edd981", + "id": "1736458919935927452.cd62f2ab-5508-4ae8-9865-b3fda0a7ef29", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8590,10 +8672,10 @@ } }, { - "fullUrl": "Practitioner/1735607789550896000.700666bb-6f01-44be-bb36-8def2faea1a3", + "fullUrl": "Practitioner/1736458919937167456.1a9f3b83-1cf1-42ea-88cf-4eb7b1008f58", "resource": { "resourceType": "Practitioner", - "id": "1735607789550896000.700666bb-6f01-44be-bb36-8def2faea1a3", + "id": "1736458919937167456.1a9f3b83-1cf1-42ea-88cf-4eb7b1008f58", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8613,10 +8695,10 @@ } }, { - "fullUrl": "Practitioner/1735607789551727000.c13bfb48-3f3a-4f62-be52-43aa010dbb8a", + "fullUrl": "Practitioner/1736458919938336427.c60baa5e-b771-4247-9cf2-dfaaf34065ce", "resource": { "resourceType": "Practitioner", - "id": "1735607789551727000.c13bfb48-3f3a-4f62-be52-43aa010dbb8a", + "id": "1736458919938336427.c60baa5e-b771-4247-9cf2-dfaaf34065ce", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8636,10 +8718,10 @@ } }, { - "fullUrl": "Practitioner/1735607789552421000.3b8fa292-b469-4171-b58e-dfb28b2cfa83", + "fullUrl": "Practitioner/1736458919939373800.c6c79737-49ce-4b0b-8734-77571152bb92", "resource": { "resourceType": "Practitioner", - "id": "1735607789552421000.3b8fa292-b469-4171-b58e-dfb28b2cfa83", + "id": "1736458919939373800.c6c79737-49ce-4b0b-8734-77571152bb92", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8659,10 +8741,10 @@ } }, { - "fullUrl": "Practitioner/1735607789553063000.45ff9315-aa6b-4569-bba3-31550e5201ae", + "fullUrl": "Practitioner/1736458919940264952.8b005932-d7c2-4377-a7fb-3c6d57f4ca52", "resource": { "resourceType": "Practitioner", - "id": "1735607789553063000.45ff9315-aa6b-4569-bba3-31550e5201ae", + "id": "1736458919940264952.8b005932-d7c2-4377-a7fb-3c6d57f4ca52", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8682,10 +8764,10 @@ } }, { - "fullUrl": "Practitioner/1735607789553667000.3d345330-3495-472b-bd24-2a41c88a0085", + "fullUrl": "Practitioner/1736458919941605564.23c6ec81-973c-44f6-a1bd-4142c789f1cb", "resource": { "resourceType": "Practitioner", - "id": "1735607789553667000.3d345330-3495-472b-bd24-2a41c88a0085", + "id": "1736458919941605564.23c6ec81-973c-44f6-a1bd-4142c789f1cb", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8705,10 +8787,10 @@ } }, { - "fullUrl": "Practitioner/1735607789554302000.c05d6f0e-c752-47eb-a490-1d7771336e8f", + "fullUrl": "Practitioner/1736458919942862944.a82ac561-057b-4014-933b-0a10ad774162", "resource": { "resourceType": "Practitioner", - "id": "1735607789554302000.c05d6f0e-c752-47eb-a490-1d7771336e8f", + "id": "1736458919942862944.a82ac561-057b-4014-933b-0a10ad774162", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -8728,10 +8810,10 @@ } }, { - "fullUrl": "Practitioner/1735607789557025000.208f3367-5ff0-4259-8eb5-c571a4d41c86", + "fullUrl": "Practitioner/1736458919947372465.6fed82ed-cbaa-4559-afd1-458b4419cf56", "resource": { "resourceType": "Practitioner", - "id": "1735607789557025000.208f3367-5ff0-4259-8eb5-c571a4d41c86", + "id": "1736458919947372465.6fed82ed-cbaa-4559-afd1-458b4419cf56", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -8939,10 +9021,10 @@ } }, { - "fullUrl": "Practitioner/1735607789559587000.41a17b4b-d095-4247-b540-ef28c9fbccf5", + "fullUrl": "Practitioner/1736458919950892993.80ea3265-5bcf-460c-98af-c60f1b81f0a5", "resource": { "resourceType": "Practitioner", - "id": "1735607789559587000.41a17b4b-d095-4247-b540-ef28c9fbccf5", + "id": "1736458919950892993.80ea3265-5bcf-460c-98af-c60f1b81f0a5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -9150,10 +9232,10 @@ } }, { - "fullUrl": "Organization/1735607789560120000.a7136a75-2c15-41be-9029-90a7dcd75c79", + "fullUrl": "Organization/1736458919951778968.ba1b04f0-dd04-49c2-8bde-7abe3dc4072e", "resource": { "resourceType": "Organization", - "id": "1735607789560120000.a7136a75-2c15-41be-9029-90a7dcd75c79", + "id": "1736458919951778968.ba1b04f0-dd04-49c2-8bde-7abe3dc4072e", "identifier": [ { "extension": [ @@ -9186,10 +9268,10 @@ } }, { - "fullUrl": "Location/1735607789561814000.13d2c568-e935-47dd-a6d6-180f28f08fe8", + "fullUrl": "Location/1736458919954385978.c1b50bfc-65f5-4a87-83a3-6d212aac23aa", "resource": { "resourceType": "Location", - "id": "1735607789561814000.13d2c568-e935-47dd-a6d6-180f28f08fe8", + "id": "1736458919954385978.c1b50bfc-65f5-4a87-83a3-6d212aac23aa", "identifier": [ { "extension": [ @@ -9234,10 +9316,10 @@ } }, { - "fullUrl": "Location/1735607789561916000.3e596a74-e98a-4071-be8e-a2ecdf7de385", + "fullUrl": "Location/1736458919954645160.b6f5e5c7-c41a-4cb8-b747-3c341812ec05", "resource": { "resourceType": "Location", - "id": "1735607789561916000.3e596a74-e98a-4071-be8e-a2ecdf7de385", + "id": "1736458919954645160.b6f5e5c7-c41a-4cb8-b747-3c341812ec05", "identifier": [ { "extension": [ @@ -9266,15 +9348,15 @@ ] }, "partOf": { - "reference": "Location/1735607789561814000.13d2c568-e935-47dd-a6d6-180f28f08fe8" + "reference": "Location/1736458919954385978.c1b50bfc-65f5-4a87-83a3-6d212aac23aa" } } }, { - "fullUrl": "Location/1735607789562015000.a9daba62-3d9d-4577-8567-a9192651b29c", + "fullUrl": "Location/1736458919954789077.ab48465c-0ea4-4522-b475-562aa74a81ad", "resource": { "resourceType": "Location", - "id": "1735607789562015000.a9daba62-3d9d-4577-8567-a9192651b29c", + "id": "1736458919954789077.ab48465c-0ea4-4522-b475-562aa74a81ad", "identifier": [ { "extension": [ @@ -9303,15 +9385,15 @@ ] }, "partOf": { - "reference": "Location/1735607789561916000.3e596a74-e98a-4071-be8e-a2ecdf7de385" + "reference": "Location/1736458919954645160.b6f5e5c7-c41a-4cb8-b747-3c341812ec05" } } }, { - "fullUrl": "Location/1735607789562119000.cbf0b8d6-16da-441b-a376-8c3c54ccd2f8", + "fullUrl": "Location/1736458919954945777.785e6ae0-ad63-436e-8b99-604e0b57f83f", "resource": { "resourceType": "Location", - "id": "1735607789562119000.cbf0b8d6-16da-441b-a376-8c3c54ccd2f8", + "id": "1736458919954945777.785e6ae0-ad63-436e-8b99-604e0b57f83f", "identifier": [ { "extension": [ @@ -9361,15 +9443,15 @@ ] }, "partOf": { - "reference": "Location/1735607789562015000.a9daba62-3d9d-4577-8567-a9192651b29c" + "reference": "Location/1736458919954789077.ab48465c-0ea4-4522-b475-562aa74a81ad" } } }, { - "fullUrl": "Location/1735607789562227000.a9cd3ae3-866d-4d80-888e-2dd4f4561a6f", + "fullUrl": "Location/1736458919955111723.245c094f-9405-4609-9334-b40dc4c2dc7e", "resource": { "resourceType": "Location", - "id": "1735607789562227000.a9cd3ae3-866d-4d80-888e-2dd4f4561a6f", + "id": "1736458919955111723.245c094f-9405-4609-9334-b40dc4c2dc7e", "identifier": [ { "extension": [ @@ -9412,15 +9494,15 @@ ] }, "partOf": { - "reference": "Location/1735607789562119000.cbf0b8d6-16da-441b-a376-8c3c54ccd2f8" + "reference": "Location/1736458919954945777.785e6ae0-ad63-436e-8b99-604e0b57f83f" } } }, { - "fullUrl": "Location/1735607789562451000.06a7267a-3ab3-4661-9297-4219312b72a7", + "fullUrl": "Location/1736458919955611294.59e7b2fc-4d8d-4722-9c5e-9e68bed0bee1", "resource": { "resourceType": "Location", - "id": "1735607789562451000.06a7267a-3ab3-4661-9297-4219312b72a7", + "id": "1736458919955611294.59e7b2fc-4d8d-4722-9c5e-9e68bed0bee1", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9472,7 +9554,7 @@ ], "value": "Comprehensive", "assigner": { - "reference": "Organization/1735607789560120000.a7136a75-2c15-41be-9029-90a7dcd75c79" + "reference": "Organization/1736458919951778968.ba1b04f0-dd04-49c2-8bde-7abe3dc4072e" } } ], @@ -9487,15 +9569,15 @@ ] }, "partOf": { - "reference": "Location/1735607789562227000.a9cd3ae3-866d-4d80-888e-2dd4f4561a6f" + "reference": "Location/1736458919955111723.245c094f-9405-4609-9334-b40dc4c2dc7e" } } }, { - "fullUrl": "Organization/1735607789562926000.46198eca-b653-4614-af82-8b2cc24b2045", + "fullUrl": "Organization/1736458919956224286.fafbd012-8257-4028-a3bb-dee6a8c68b86", "resource": { "resourceType": "Organization", - "id": "1735607789562926000.46198eca-b653-4614-af82-8b2cc24b2045", + "id": "1736458919956224286.fafbd012-8257-4028-a3bb-dee6a8c68b86", "identifier": [ { "extension": [ @@ -9528,10 +9610,10 @@ } }, { - "fullUrl": "Location/1735607789563417000.329aec3f-e5d2-4c2f-a62d-d740c22f77af", + "fullUrl": "Location/1736458919957110590.d4bfa857-0750-481d-916b-bae3c3946e62", "resource": { "resourceType": "Location", - "id": "1735607789563417000.329aec3f-e5d2-4c2f-a62d-d740c22f77af", + "id": "1736458919957110590.d4bfa857-0750-481d-916b-bae3c3946e62", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9591,7 +9673,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1735607789562926000.46198eca-b653-4614-af82-8b2cc24b2045" + "reference": "Organization/1736458919956224286.fafbd012-8257-4028-a3bb-dee6a8c68b86" } } ], @@ -9609,37 +9691,37 @@ } }, { - "fullUrl": "Location/1735607789563728000.b82acbca-feca-49ec-af36-5898b6a56f21", + "fullUrl": "Location/1736458919957617623.01068aca-b9a0-47a5-8a1d-2cd0b1ec4784", "resource": { "resourceType": "Location", - "id": "1735607789563728000.b82acbca-feca-49ec-af36-5898b6a56f21", + "id": "1736458919957617623.01068aca-b9a0-47a5-8a1d-2cd0b1ec4784", "description": "Its Temporary", "mode": "instance" } }, { - "fullUrl": "Location/1735607789564031000.d02a9d2f-25fd-4631-a14f-7c27652e16e8", + "fullUrl": "Location/1736458919958045340.21174502-311f-40c6-9a38-005e0e4999c6", "resource": { "resourceType": "Location", - "id": "1735607789564031000.d02a9d2f-25fd-4631-a14f-7c27652e16e8", + "id": "1736458919958045340.21174502-311f-40c6-9a38-005e0e4999c6", "description": "Pending Location", "mode": "instance" } }, { - "fullUrl": "Location/1735607789564325000.27604f89-b265-4648-bb40-4008fe93d4a6", + "fullUrl": "Location/1736458919958453454.d4fe88f6-1a62-4ae8-9f9c-4a6656ac1836", "resource": { "resourceType": "Location", - "id": "1735607789564325000.27604f89-b265-4648-bb40-4008fe93d4a6", + "id": "1736458919958453454.d4fe88f6-1a62-4ae8-9f9c-4a6656ac1836", "description": "Prior Location", "mode": "instance" } }, { - "fullUrl": "Organization/1735607789564762000.f9a0a1dd-dfec-4678-899b-89f5c0af9955", + "fullUrl": "Organization/1736458919959174216.067834e8-1d6a-4a96-a8e2-92568e4f0add", "resource": { "resourceType": "Organization", - "id": "1735607789564762000.f9a0a1dd-dfec-4678-899b-89f5c0af9955", + "id": "1736458919959174216.067834e8-1d6a-4a96-a8e2-92568e4f0add", "identifier": [ { "extension": [ @@ -9672,10 +9754,10 @@ } }, { - "fullUrl": "Location/1735607789565275000.2856cdc2-b42f-4771-a32a-46d4d25e5cfd", + "fullUrl": "Location/1736458919959894717.5803343c-dab9-4848-a8ab-d88ad2f5edae", "resource": { "resourceType": "Location", - "id": "1735607789565275000.2856cdc2-b42f-4771-a32a-46d4d25e5cfd", + "id": "1736458919959894717.5803343c-dab9-4848-a8ab-d88ad2f5edae", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type", @@ -9735,7 +9817,7 @@ ], "value": "Entity ID", "assigner": { - "reference": "Organization/1735607789564762000.f9a0a1dd-dfec-4678-899b-89f5c0af9955" + "reference": "Organization/1736458919959174216.067834e8-1d6a-4a96-a8e2-92568e4f0add" } } ], @@ -9753,10 +9835,10 @@ } }, { - "fullUrl": "EpisodeOfCare/1735607789565923000.72b02b00-3b17-4a4f-93cb-c649a1c96487", + "fullUrl": "EpisodeOfCare/1736458919960723585.c295f557-b8e7-4837-9bc4-215639e42797", "resource": { "resourceType": "EpisodeOfCare", - "id": "1735607789565923000.72b02b00-3b17-4a4f-93cb-c649a1c96487", + "id": "1736458919960723585.c295f557-b8e7-4837-9bc4-215639e42797", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", @@ -9775,10 +9857,10 @@ } }, { - "fullUrl": "Observation/1735607789866616000.4c9c49de-6679-4d13-aab6-08738b57b19b", + "fullUrl": "Observation/1736458920615775591.037031a7-222b-4ad2-9b9b-43ab53a20fe5", "resource": { "resourceType": "Observation", - "id": "1735607789866616000.4c9c49de-6679-4d13-aab6-08738b57b19b", + "id": "1736458920615775591.037031a7-222b-4ad2-9b9b-43ab53a20fe5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -9959,7 +10041,7 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1735607789865092000.b3da9051-a34c-4ce0-93a9-11bae43f2835" + "reference": "Device/1736458920611892162.22f13f22-2f8a-4dae-9fa8-1b94200f6d87" } }, { @@ -10030,10 +10112,10 @@ ] }, "subject": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "encounter": { - "reference": "Encounter/1735607789565393000.2075dbd4-8b88-4110-b872-e6a445cdde7f" + "reference": "Encounter/1736458919960060020.4056ddfe-13f9-4d4b-a37e-048caacbb4d0" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -10046,13 +10128,13 @@ }, "performer": [ { - "reference": "Organization/1735607789867204000.845c04fa-779b-4280-8ccd-d76ea2a0f90a" + "reference": "Organization/1736458920618524210.a558076c-df2e-47ac-8eb9-22b1a0e54b1a" }, { - "reference": "PractitionerRole/1735607789867416000.d58519c0-4e71-481c-b432-da5cb9d9c3c0" + "reference": "PractitionerRole/1736458920619658330.a303de18-2144-4283-93a5-04c547074295" }, { - "reference": "PractitionerRole/1735607789868200000.a5a6c343-ee54-41ed-b7f7-56c13b63d170" + "reference": "PractitionerRole/1736458920624637146.8a3795ad-bdda-42b3-be1b-8f3a04b1dee0" } ], "valueCodeableConcept": { @@ -10150,7 +10232,7 @@ } ], "authorReference": { - "reference": "Practitioner/1735607789871179000.ba90b7be-4e6d-4d97-82f5-240daa90ed6d" + "reference": "Practitioner/1736458920630365390.9aa95eb4-7a44-4b66-80bb-027b21320b67" }, "time": "2023-02-11", "_time": { @@ -10222,7 +10304,7 @@ } ], "authorReference": { - "reference": "Practitioner/1735607789876151000.d30d295f-a251-40f1-b90d-c271f3c82960" + "reference": "Practitioner/1736458920634440232.0779a694-52c3-492d-92b4-14f70012e45a" }, "time": "2023-02-11", "_time": { @@ -10269,7 +10351,7 @@ ] }, "device": { - "reference": "Device/1735607789877411000.3dfd7c60-4c8a-41bb-bc2e-c5151ab8f2ef" + "reference": "Device/1736458920637984435.f85669bb-8abe-429b-aeb7-3253f6f1c168" }, "referenceRange": [ { @@ -10279,10 +10361,10 @@ } }, { - "fullUrl": "Device/1735607789865092000.b3da9051-a34c-4ce0-93a9-11bae43f2835", + "fullUrl": "Device/1736458920611892162.22f13f22-2f8a-4dae-9fa8-1b94200f6d87", "resource": { "resourceType": "Device", - "id": "1735607789865092000.b3da9051-a34c-4ce0-93a9-11bae43f2835", + "id": "1736458920611892162.22f13f22-2f8a-4dae-9fa8-1b94200f6d87", "identifier": [ { "extension": [ @@ -10310,10 +10392,10 @@ } }, { - "fullUrl": "Organization/1735607789867204000.845c04fa-779b-4280-8ccd-d76ea2a0f90a", + "fullUrl": "Organization/1736458920618524210.a558076c-df2e-47ac-8eb9-22b1a0e54b1a", "resource": { "resourceType": "Organization", - "id": "1735607789867204000.845c04fa-779b-4280-8ccd-d76ea2a0f90a", + "id": "1736458920618524210.a558076c-df2e-47ac-8eb9-22b1a0e54b1a", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -10351,10 +10433,10 @@ } }, { - "fullUrl": "Practitioner/1735607789867967000.1ea70da0-1ed7-419c-b2b3-f00b02cfcd33", + "fullUrl": "Practitioner/1736458920623562674.76842c0f-e3b2-4fd3-913c-baa2d2ac3ccc", "resource": { "resourceType": "Practitioner", - "id": "1735607789867967000.1ea70da0-1ed7-419c-b2b3-f00b02cfcd33", + "id": "1736458920623562674.76842c0f-e3b2-4fd3-913c-baa2d2ac3ccc", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -10382,12 +10464,12 @@ } }, { - "fullUrl": "PractitionerRole/1735607789867416000.d58519c0-4e71-481c-b432-da5cb9d9c3c0", + "fullUrl": "PractitionerRole/1736458920619658330.a303de18-2144-4283-93a5-04c547074295", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789867416000.d58519c0-4e71-481c-b432-da5cb9d9c3c0", + "id": "1736458920619658330.a303de18-2144-4283-93a5-04c547074295", "practitioner": { - "reference": "Practitioner/1735607789867967000.1ea70da0-1ed7-419c-b2b3-f00b02cfcd33" + "reference": "Practitioner/1736458920623562674.76842c0f-e3b2-4fd3-913c-baa2d2ac3ccc" }, "code": [ { @@ -10402,10 +10484,10 @@ } }, { - "fullUrl": "Practitioner/1735607789868785000.72a1973e-eccc-442e-a95d-dd7d397577fb", + "fullUrl": "Practitioner/1736458920625858716.15a29e4b-24ec-4cb6-9cc3-440e068a22a4", "resource": { "resourceType": "Practitioner", - "id": "1735607789868785000.72a1973e-eccc-442e-a95d-dd7d397577fb", + "id": "1736458920625858716.15a29e4b-24ec-4cb6-9cc3-440e068a22a4", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -10433,10 +10515,10 @@ } }, { - "fullUrl": "Organization/1735607789869746000.298d19a2-8fbc-404c-917b-c617166d85eb", + "fullUrl": "Organization/1736458920627825413.4c7f76f7-59cf-4075-ae43-4436aafbccdb", "resource": { "resourceType": "Organization", - "id": "1735607789869746000.298d19a2-8fbc-404c-917b-c617166d85eb", + "id": "1736458920627825413.4c7f76f7-59cf-4075-ae43-4436aafbccdb", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -10510,15 +10592,15 @@ } }, { - "fullUrl": "PractitionerRole/1735607789868200000.a5a6c343-ee54-41ed-b7f7-56c13b63d170", + "fullUrl": "PractitionerRole/1736458920624637146.8a3795ad-bdda-42b3-be1b-8f3a04b1dee0", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789868200000.a5a6c343-ee54-41ed-b7f7-56c13b63d170", + "id": "1736458920624637146.8a3795ad-bdda-42b3-be1b-8f3a04b1dee0", "practitioner": { - "reference": "Practitioner/1735607789868785000.72a1973e-eccc-442e-a95d-dd7d397577fb" + "reference": "Practitioner/1736458920625858716.15a29e4b-24ec-4cb6-9cc3-440e068a22a4" }, "organization": { - "reference": "Organization/1735607789869746000.298d19a2-8fbc-404c-917b-c617166d85eb" + "reference": "Organization/1736458920627825413.4c7f76f7-59cf-4075-ae43-4436aafbccdb" }, "code": [ { @@ -10533,10 +10615,10 @@ } }, { - "fullUrl": "Practitioner/1735607789871179000.ba90b7be-4e6d-4d97-82f5-240daa90ed6d", + "fullUrl": "Practitioner/1736458920630365390.9aa95eb4-7a44-4b66-80bb-027b21320b67", "resource": { "resourceType": "Practitioner", - "id": "1735607789871179000.ba90b7be-4e6d-4d97-82f5-240daa90ed6d", + "id": "1736458920630365390.9aa95eb4-7a44-4b66-80bb-027b21320b67", "identifier": [ { "value": "Bob R.N.A." @@ -10545,10 +10627,10 @@ } }, { - "fullUrl": "Practitioner/1735607789876151000.d30d295f-a251-40f1-b90d-c271f3c82960", + "fullUrl": "Practitioner/1736458920634440232.0779a694-52c3-492d-92b4-14f70012e45a", "resource": { "resourceType": "Practitioner", - "id": "1735607789876151000.d30d295f-a251-40f1-b90d-c271f3c82960", + "id": "1736458920634440232.0779a694-52c3-492d-92b4-14f70012e45a", "identifier": [ { "value": "Bob R.N.A." @@ -10557,10 +10639,10 @@ } }, { - "fullUrl": "Device/1735607789877411000.3dfd7c60-4c8a-41bb-bc2e-c5151ab8f2ef", + "fullUrl": "Device/1736458920637984435.f85669bb-8abe-429b-aeb7-3253f6f1c168", "resource": { "resourceType": "Device", - "id": "1735607789877411000.3dfd7c60-4c8a-41bb-bc2e-c5151ab8f2ef", + "id": "1736458920637984435.f85669bb-8abe-429b-aeb7-3253f6f1c168", "identifier": [ { "extension": [ @@ -10588,10 +10670,10 @@ } }, { - "fullUrl": "Observation/1735607789881662000.e59d202f-4baa-4da2-aee1-f7ef9486d807", + "fullUrl": "Observation/1736458920645881489.c5b8d22b-fdee-47f0-a4f9-163e9ff68f73", "resource": { "resourceType": "Observation", - "id": "1735607789881662000.e59d202f-4baa-4da2-aee1-f7ef9486d807", + "id": "1736458920645881489.c5b8d22b-fdee-47f0-a4f9-163e9ff68f73", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id", @@ -10792,13 +10874,13 @@ { "url": "OBX.18", "valueReference": { - "reference": "Device/1735607789880006000.027c4610-d062-466b-8e1f-46dae1827d5c" + "reference": "Device/1736458920641995022.6eee578d-e45d-4216-8fc8-ffe05e61c7bc" } }, { "url": "OBX.18", "valueReference": { - "reference": "Device/1735607789880255000.335f9517-90d4-4725-96b3-540ae7f3075e" + "reference": "Device/1736458920642473014.441ee275-6892-4281-9e0e-dbd422351165" } }, { @@ -10891,10 +10973,10 @@ ] }, "subject": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "encounter": { - "reference": "Encounter/1735607789565393000.2075dbd4-8b88-4110-b872-e6a445cdde7f" + "reference": "Encounter/1736458919960060020.4056ddfe-13f9-4d4b-a37e-048caacbb4d0" }, "effectiveDateTime": "2023-01-01T00:00:00Z", "_effectiveDateTime": { @@ -10907,16 +10989,16 @@ }, "performer": [ { - "reference": "Organization/1735607789882237000.ded6b237-8e1e-4586-9cf4-d7ce75f969f9" + "reference": "Organization/1736458920647036708.bf67a5f9-1e20-40ab-b768-547df1104f8d" }, { - "reference": "PractitionerRole/1735607789882486000.3fa7c2df-7240-48f1-89f0-d1d5f70fb313" + "reference": "PractitionerRole/1736458920647688584.b2e24d93-ae1a-4c16-a147-ef6706a55dea" }, { - "reference": "PractitionerRole/1735607789883285000.2df30c38-52ec-461f-aea2-39c9311158b6" + "reference": "PractitionerRole/1736458920649414780.86bfb081-ba64-4c9a-bd6e-3fba2becf06d" }, { - "reference": "PractitionerRole/1735607789884046000.39617dc9-c62f-4a82-a669-d48a7589cfcc" + "reference": "PractitionerRole/1736458920651528927.5cf8028e-d6ab-4d60-be20-4cc542492f0d" } ], "valueCodeableConcept": { @@ -11028,7 +11110,7 @@ } ], "authorReference": { - "reference": "Practitioner/1735607789887216000.275894d7-7ce8-4cd6-b9e5-45737061fc20" + "reference": "Practitioner/1736458920658903541.02ec34da-c7ba-49b5-8ba9-31c0eb5b249f" }, "time": "2023-02-21", "_time": { @@ -11100,7 +11182,7 @@ } ], "authorReference": { - "reference": "Practitioner/1735607789888555000.ac2b7bf1-062a-475e-92ac-9e3da4a0326b" + "reference": "Practitioner/1736458920660630409.7949f4ad-b129-4e63-957f-0bf0c97cde16" }, "time": "2023-02-21", "_time": { @@ -11147,7 +11229,7 @@ ] }, "device": { - "reference": "Device/1735607789890265000.ea2f7072-b43a-4d0a-a12d-7274a3521d38" + "reference": "Device/1736458920662629433.05dc3a78-dc05-44b0-8b88-203f9c1c18c0" }, "referenceRange": [ { @@ -11157,10 +11239,10 @@ } }, { - "fullUrl": "Device/1735607789880006000.027c4610-d062-466b-8e1f-46dae1827d5c", + "fullUrl": "Device/1736458920641995022.6eee578d-e45d-4216-8fc8-ffe05e61c7bc", "resource": { "resourceType": "Device", - "id": "1735607789880006000.027c4610-d062-466b-8e1f-46dae1827d5c", + "id": "1736458920641995022.6eee578d-e45d-4216-8fc8-ffe05e61c7bc", "identifier": [ { "extension": [ @@ -11188,10 +11270,10 @@ } }, { - "fullUrl": "Device/1735607789880255000.335f9517-90d4-4725-96b3-540ae7f3075e", + "fullUrl": "Device/1736458920642473014.441ee275-6892-4281-9e0e-dbd422351165", "resource": { "resourceType": "Device", - "id": "1735607789880255000.335f9517-90d4-4725-96b3-540ae7f3075e", + "id": "1736458920642473014.441ee275-6892-4281-9e0e-dbd422351165", "identifier": [ { "extension": [ @@ -11219,10 +11301,10 @@ } }, { - "fullUrl": "Organization/1735607789882237000.ded6b237-8e1e-4586-9cf4-d7ce75f969f9", + "fullUrl": "Organization/1736458920647036708.bf67a5f9-1e20-40ab-b768-547df1104f8d", "resource": { "resourceType": "Organization", - "id": "1735607789882237000.ded6b237-8e1e-4586-9cf4-d7ce75f969f9", + "id": "1736458920647036708.bf67a5f9-1e20-40ab-b768-547df1104f8d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization", @@ -11260,10 +11342,10 @@ } }, { - "fullUrl": "Practitioner/1735607789883059000.cacc9c0a-0287-4c76-b7d6-257a9aa7827d", + "fullUrl": "Practitioner/1736458920648824451.55021dd1-8052-468b-9b8c-ababf512bb3b", "resource": { "resourceType": "Practitioner", - "id": "1735607789883059000.cacc9c0a-0287-4c76-b7d6-257a9aa7827d", + "id": "1736458920648824451.55021dd1-8052-468b-9b8c-ababf512bb3b", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11291,12 +11373,12 @@ } }, { - "fullUrl": "PractitionerRole/1735607789882486000.3fa7c2df-7240-48f1-89f0-d1d5f70fb313", + "fullUrl": "PractitionerRole/1736458920647688584.b2e24d93-ae1a-4c16-a147-ef6706a55dea", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789882486000.3fa7c2df-7240-48f1-89f0-d1d5f70fb313", + "id": "1736458920647688584.b2e24d93-ae1a-4c16-a147-ef6706a55dea", "practitioner": { - "reference": "Practitioner/1735607789883059000.cacc9c0a-0287-4c76-b7d6-257a9aa7827d" + "reference": "Practitioner/1736458920648824451.55021dd1-8052-468b-9b8c-ababf512bb3b" }, "code": [ { @@ -11311,10 +11393,10 @@ } }, { - "fullUrl": "Practitioner/1735607789883824000.bc25de7e-db35-4c1c-8eac-3992f999eb42", + "fullUrl": "Practitioner/1736458920650803478.badfe631-fa25-4b9b-abb6-d109d577be95", "resource": { "resourceType": "Practitioner", - "id": "1735607789883824000.bc25de7e-db35-4c1c-8eac-3992f999eb42", + "id": "1736458920650803478.badfe631-fa25-4b9b-abb6-d109d577be95", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11342,12 +11424,12 @@ } }, { - "fullUrl": "PractitionerRole/1735607789883285000.2df30c38-52ec-461f-aea2-39c9311158b6", + "fullUrl": "PractitionerRole/1736458920649414780.86bfb081-ba64-4c9a-bd6e-3fba2becf06d", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789883285000.2df30c38-52ec-461f-aea2-39c9311158b6", + "id": "1736458920649414780.86bfb081-ba64-4c9a-bd6e-3fba2becf06d", "practitioner": { - "reference": "Practitioner/1735607789883824000.bc25de7e-db35-4c1c-8eac-3992f999eb42" + "reference": "Practitioner/1736458920650803478.badfe631-fa25-4b9b-abb6-d109d577be95" }, "code": [ { @@ -11362,10 +11444,10 @@ } }, { - "fullUrl": "Practitioner/1735607789884568000.2e920fdb-1ca0-4414-8b26-c5e1f97b48c1", + "fullUrl": "Practitioner/1736458920652951199.036b872b-f9eb-4a02-8e92-6dec10dcf6d0", "resource": { "resourceType": "Practitioner", - "id": "1735607789884568000.2e920fdb-1ca0-4414-8b26-c5e1f97b48c1", + "id": "1736458920652951199.036b872b-f9eb-4a02-8e92-6dec10dcf6d0", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -11393,10 +11475,10 @@ } }, { - "fullUrl": "Organization/1735607789885738000.ded4959b-972e-4c21-9b74-479a5a1a4bfd", + "fullUrl": "Organization/1736458920656196971.e58fb987-95e5-4966-834b-ee46bd76f3e3", "resource": { "resourceType": "Organization", - "id": "1735607789885738000.ded4959b-972e-4c21-9b74-479a5a1a4bfd", + "id": "1736458920656196971.e58fb987-95e5-4966-834b-ee46bd76f3e3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", @@ -11470,15 +11552,15 @@ } }, { - "fullUrl": "PractitionerRole/1735607789884046000.39617dc9-c62f-4a82-a669-d48a7589cfcc", + "fullUrl": "PractitionerRole/1736458920651528927.5cf8028e-d6ab-4d60-be20-4cc542492f0d", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789884046000.39617dc9-c62f-4a82-a669-d48a7589cfcc", + "id": "1736458920651528927.5cf8028e-d6ab-4d60-be20-4cc542492f0d", "practitioner": { - "reference": "Practitioner/1735607789884568000.2e920fdb-1ca0-4414-8b26-c5e1f97b48c1" + "reference": "Practitioner/1736458920652951199.036b872b-f9eb-4a02-8e92-6dec10dcf6d0" }, "organization": { - "reference": "Organization/1735607789885738000.ded4959b-972e-4c21-9b74-479a5a1a4bfd" + "reference": "Organization/1736458920656196971.e58fb987-95e5-4966-834b-ee46bd76f3e3" }, "code": [ { @@ -11493,10 +11575,10 @@ } }, { - "fullUrl": "Practitioner/1735607789887216000.275894d7-7ce8-4cd6-b9e5-45737061fc20", + "fullUrl": "Practitioner/1736458920658903541.02ec34da-c7ba-49b5-8ba9-31c0eb5b249f", "resource": { "resourceType": "Practitioner", - "id": "1735607789887216000.275894d7-7ce8-4cd6-b9e5-45737061fc20", + "id": "1736458920658903541.02ec34da-c7ba-49b5-8ba9-31c0eb5b249f", "identifier": [ { "value": "Bob R.N.A." @@ -11505,10 +11587,10 @@ } }, { - "fullUrl": "Practitioner/1735607789888555000.ac2b7bf1-062a-475e-92ac-9e3da4a0326b", + "fullUrl": "Practitioner/1736458920660630409.7949f4ad-b129-4e63-957f-0bf0c97cde16", "resource": { "resourceType": "Practitioner", - "id": "1735607789888555000.ac2b7bf1-062a-475e-92ac-9e3da4a0326b", + "id": "1736458920660630409.7949f4ad-b129-4e63-957f-0bf0c97cde16", "identifier": [ { "value": "Bob R.N.A." @@ -11517,10 +11599,10 @@ } }, { - "fullUrl": "Device/1735607789890265000.ea2f7072-b43a-4d0a-a12d-7274a3521d38", + "fullUrl": "Device/1736458920662629433.05dc3a78-dc05-44b0-8b88-203f9c1c18c0", "resource": { "resourceType": "Device", - "id": "1735607789890265000.ea2f7072-b43a-4d0a-a12d-7274a3521d38", + "id": "1736458920662629433.05dc3a78-dc05-44b0-8b88-203f9c1c18c0", "identifier": [ { "extension": [ @@ -11548,10 +11630,10 @@ } }, { - "fullUrl": "Specimen/1735607789900989000.8ef9776c-38fd-4f71-9870-7bd717c42e5a", + "fullUrl": "Specimen/1736458920679227059.fe188836-63a0-4288-bf57-6eda8bf32bd5", "resource": { "resourceType": "Specimen", - "id": "1735607789900989000.8ef9776c-38fd-4f71-9870-7bd717c42e5a", + "id": "1736458920679227059.fe188836-63a0-4288-bf57-6eda8bf32bd5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -11582,7 +11664,7 @@ }, "collection": { "collector": { - "reference": "Practitioner/1735607789903609000.7af2a3df-b8ef-4355-8b12-7610c582a821" + "reference": "Practitioner/1736458920685578099.f9d62771-4cbc-4f85-bd9b-bb0b52588495" }, "collectedPeriod": { "end": "2024-02-20", @@ -11634,7 +11716,7 @@ } ], "code": "BOUIN", - "display": "Bouin\u0027s solution" + "display": "Bouin's solution" } ] } @@ -11718,10 +11800,10 @@ } }, { - "fullUrl": "Practitioner/1735607789903609000.7af2a3df-b8ef-4355-8b12-7610c582a821", + "fullUrl": "Practitioner/1736458920685578099.f9d62771-4cbc-4f85-bd9b-bb0b52588495", "resource": { "resourceType": "Practitioner", - "id": "1735607789903609000.7af2a3df-b8ef-4355-8b12-7610c582a821", + "id": "1736458920685578099.f9d62771-4cbc-4f85-bd9b-bb0b52588495", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -11870,10 +11952,10 @@ } }, { - "fullUrl": "Specimen/1735607789912796000.73e5831e-9e48-4205-b98a-f49a7a6c5871", + "fullUrl": "Specimen/1736458920702791950.82e09fdf-e892-4c29-b1fe-5fedccdab8db", "resource": { "resourceType": "Specimen", - "id": "1735607789912796000.73e5831e-9e48-4205-b98a-f49a7a6c5871", + "id": "1736458920702791950.82e09fdf-e892-4c29-b1fe-5fedccdab8db", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -12624,10 +12706,10 @@ } }, { - "fullUrl": "Specimen/1735607789917871000.25140080-b05e-4747-9149-aeff9ab51569", + "fullUrl": "Specimen/1736458920709529525.ddfe4b32-e8a0-4e31-927c-53a95ed106d8", "resource": { "resourceType": "Specimen", - "id": "1735607789917871000.25140080-b05e-4747-9149-aeff9ab51569", + "id": "1736458920709529525.ddfe4b32-e8a0-4e31-927c-53a95ed106d8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", @@ -13241,10 +13323,10 @@ } }, { - "fullUrl": "Coverage/1735607789932102000.e63069ad-017d-43c8-8d90-a730adac71ed", + "fullUrl": "Coverage/1736458920772699215.9e2606e0-09b7-468f-b15c-76d1176d6d29", "resource": { "resourceType": "Coverage", - "id": "1735607789932102000.e63069ad-017d-43c8-8d90-a730adac71ed", + "id": "1736458920772699215.9e2606e0-09b7-468f-b15c-76d1176d6d29", "extension": [ { "url": "http://hl7.org/fhir/R5/StructureDefinition/extension-subscriberId", @@ -13534,7 +13616,7 @@ { "url": "IN1.4", "valueReference": { - "reference": "Organization/1735607789923392000.ed1387c6-ffa3-44c9-b9c9-809827ca9f4a" + "reference": "Organization/1736458920751467306.88e46691-ef37-4dfb-8798-2fed42f3abaa" } }, { @@ -13580,7 +13662,7 @@ { "url": "IN1.30", "valueReference": { - "reference": "Practitioner/1735607789924880000.ba458e15-6784-4e40-a99c-3974fd5aec5a" + "reference": "Practitioner/1736458920754920908.43f1c808-34b3-4938-90c1-49e83de06c8f" } }, { @@ -14126,7 +14208,7 @@ { "url": "IN1.9", "valueReference": { - "reference": "Organization/1735607789930711000.01030f7b-da21-40a4-bbd9-b6efc924794f" + "reference": "Organization/1736458920769876333.ebbfc04f-ba21-4ae1-9209-307f9cf9e7e0" } }, { @@ -14156,7 +14238,7 @@ { "url": "IN1.11", "valueReference": { - "reference": "Organization/1735607789931245000.351c2217-28d0-46f9-a4c9-ec2b59c5a807" + "reference": "Organization/1736458920771023984.57e8ade6-a6f4-4cc4-92ae-b3fb14b891cc" } } ] @@ -14176,13 +14258,13 @@ ] }, "policyHolder": { - "reference": "Organization/1735607789932786000.631b2142-59a8-4e2d-bacd-c2b22f604630" + "reference": "Organization/1736458920774314644.bd94f784-594a-4bf5-9b7f-39eb07d7e31d" }, "subscriber": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "beneficiary": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "relationship": { "coding": [ @@ -14219,24 +14301,24 @@ }, "payor": [ { - "reference": "Organization/1735607789931942000.285e0a35-b743-4d9b-b46e-1ebc22ab716a" + "reference": "Organization/1736458920772394039.1a10046b-5638-4266-9376-700335f5ca49" } ] } }, { - "fullUrl": "Organization/1735607789923392000.ed1387c6-ffa3-44c9-b9c9-809827ca9f4a", + "fullUrl": "Organization/1736458920751467306.88e46691-ef37-4dfb-8798-2fed42f3abaa", "resource": { "resourceType": "Organization", - "id": "1735607789923392000.ed1387c6-ffa3-44c9-b9c9-809827ca9f4a", + "id": "1736458920751467306.88e46691-ef37-4dfb-8798-2fed42f3abaa", "name": "AETNA US HEALTHCARE" } }, { - "fullUrl": "Practitioner/1735607789924880000.ba458e15-6784-4e40-a99c-3974fd5aec5a", + "fullUrl": "Practitioner/1736458920754920908.43f1c808-34b3-4938-90c1-49e83de06c8f", "resource": { "resourceType": "Practitioner", - "id": "1735607789924880000.ba458e15-6784-4e40-a99c-3974fd5aec5a", + "id": "1736458920754920908.43f1c808-34b3-4938-90c1-49e83de06c8f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -14312,26 +14394,26 @@ } }, { - "fullUrl": "Organization/1735607789930711000.01030f7b-da21-40a4-bbd9-b6efc924794f", + "fullUrl": "Organization/1736458920769876333.ebbfc04f-ba21-4ae1-9209-307f9cf9e7e0", "resource": { "resourceType": "Organization", - "id": "1735607789930711000.01030f7b-da21-40a4-bbd9-b6efc924794f", + "id": "1736458920769876333.ebbfc04f-ba21-4ae1-9209-307f9cf9e7e0", "name": "AETNA SERVICES INC" } }, { - "fullUrl": "Organization/1735607789931245000.351c2217-28d0-46f9-a4c9-ec2b59c5a807", + "fullUrl": "Organization/1736458920771023984.57e8ade6-a6f4-4cc4-92ae-b3fb14b891cc", "resource": { "resourceType": "Organization", - "id": "1735607789931245000.351c2217-28d0-46f9-a4c9-ec2b59c5a807", + "id": "1736458920771023984.57e8ade6-a6f4-4cc4-92ae-b3fb14b891cc", "name": "AETNA US HEALTHCARE" } }, { - "fullUrl": "Organization/1735607789931942000.285e0a35-b743-4d9b-b46e-1ebc22ab716a", + "fullUrl": "Organization/1736458920772394039.1a10046b-5638-4266-9376-700335f5ca49", "resource": { "resourceType": "Organization", - "id": "1735607789931942000.285e0a35-b743-4d9b-b46e-1ebc22ab716a", + "id": "1736458920772394039.1a10046b-5638-4266-9376-700335f5ca49", "name": "AETNA US HEALTHCARE", "address": [ { @@ -14368,10 +14450,10 @@ } }, { - "fullUrl": "Organization/1735607789932786000.631b2142-59a8-4e2d-bacd-c2b22f604630", + "fullUrl": "Organization/1736458920774314644.bd94f784-594a-4bf5-9b7f-39eb07d7e31d", "resource": { "resourceType": "Organization", - "id": "1735607789932786000.631b2142-59a8-4e2d-bacd-c2b22f604630", + "id": "1736458920774314644.bd94f784-594a-4bf5-9b7f-39eb07d7e31d", "identifier": [ { "extension": [ @@ -14399,10 +14481,10 @@ } }, { - "fullUrl": "ServiceRequest/1735607789970368000.6967a2e6-ff5c-4045-b6e7-f45f41df3151", + "fullUrl": "ServiceRequest/1736458920902724501.0431bff9-27de-4e8c-988a-ecae9bd127c5", "resource": { "resourceType": "ServiceRequest", - "id": "1735607789970368000.6967a2e6-ff5c-4045-b6e7-f45f41df3151", + "id": "1736458920902724501.0431bff9-27de-4e8c-988a-ecae9bd127c5", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event", @@ -14447,25 +14529,25 @@ { "url": "ORC.19", "valueReference": { - "reference": "Practitioner/1735607789940914000.788686ba-c301-4be2-a3e6-63111ba393e9" + "reference": "Practitioner/1736458920799795141.fcf933fe-e346-4d10-af8d-cdbba647f04c" } }, { "url": "ORC.19", "valueReference": { - "reference": "Practitioner/1735607789941326000.a4ff8de9-2314-409f-832c-d01f125e078c" + "reference": "Practitioner/1736458920801461582.15e1dc1c-7313-4cf0-9b4a-e0e16ac15fa6" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1735607789941932000.facb898e-6772-44ae-9f42-e93f58a2a1ff" + "reference": "Organization/1736458920803592003.ec2d88f8-66d0-4a59-b737-f0376f3e185f" } }, { "url": "orc-21-ordering-facility-name", "valueReference": { - "reference": "Organization/1735607789942295000.9bbce4ca-edb2-4042-8aac-4dbd010e9913" + "reference": "Organization/1736458920805197936.fd6917c1-e680-4828-87ff-e1f10f51efad" } }, { @@ -14695,43 +14777,43 @@ { "url": "ORC.10", "valueReference": { - "reference": "Practitioner/1735607789944657000.8c808aa6-800f-4c99-b5eb-716e16797034" + "reference": "Practitioner/1736458920818181326.5320c4a2-c958-42f7-826b-00a17849b3bf" } }, { "url": "ORC.10", "valueReference": { - "reference": "Practitioner/1735607789945093000.e6359e5a-881f-4478-b061-253752bb5b8e" + "reference": "Practitioner/1736458920820196189.4929f73e-06dc-4c3e-a32a-156d5e325643" } }, { "url": "ORC.11", "valueReference": { - "reference": "Practitioner/1735607789945544000.f4f7ab82-bf2a-4b24-96e2-5d4b923e1a09" + "reference": "Practitioner/1736458920822117756.2dea680a-aa65-4c79-bf55-d9f6129ef3c3" } }, { "url": "ORC.11", "valueReference": { - "reference": "Practitioner/1735607789945954000.97aa7aad-3139-43eb-b06c-77fcec2d72a9" + "reference": "Practitioner/1736458920823872499.77abc199-02c2-4779-b702-1ec22ef5115d" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1735607789946382000.8f06e42c-c03d-417e-b118-362ceecbfe11" + "reference": "Practitioner/1736458920826512402.eebd8eb7-1647-4bda-b93e-68c62721862f" } }, { "url": "orc-12-ordering-provider", "valueReference": { - "reference": "Practitioner/1735607789946792000.d7722bde-2b53-4660-9be3-f4ae29b459b2" + "reference": "Practitioner/1736458920829033502.678b99c3-ae47-4571-a7f7-0f462525de7c" } }, { "url": "ORC.13", "valueReference": { - "reference": "Location/1735607789947532000.5a6f07d5-c0a3-4b6e-9664-8b20d94c211a" + "reference": "Location/1736458920834247502.182e2faf-406d-4ecd-949e-947bbecf0349" } }, { @@ -14867,7 +14949,7 @@ } ], "code": "BOUIN", - "display": "Bouin\u0027s solution" + "display": "Bouin's solution" } ] } @@ -14922,13 +15004,13 @@ { "url": "OBR.16", "valueReference": { - "reference": "Practitioner/1735607789950376000.24c620b2-301b-47a2-ad99-7ec33b972f10" + "reference": "Practitioner/1736458920844194703.d758016e-e2e2-4371-a056-b52db3d3e28d" } }, { "url": "OBR.16", "valueReference": { - "reference": "Practitioner/1735607789950837000.ae5ab2b7-eb27-45f4-8cfa-5fb6f7c6cd84" + "reference": "Practitioner/1736458920846638676.ea0f338d-39a6-4f7b-9d60-ed3324e78e7f" } }, { @@ -15174,13 +15256,13 @@ { "url": "OBR.28", "valueReference": { - "reference": "Practitioner/1735607789953413000.2d4f9d48-5337-4631-b922-f0338e58b626" + "reference": "Practitioner/1736458920855042037.198f88ba-75fc-4f63-9670-e811df1dc280" } }, { "url": "OBR.28", "valueReference": { - "reference": "Practitioner/1735607789953884000.d23e78fb-5fcd-4db0-9450-e5f2738816dd" + "reference": "Practitioner/1736458920856453359.1ac84f1a-2e6f-4196-ac73-66798dfc767c" } }, { @@ -15235,13 +15317,13 @@ { "url": "OBR.33", "valueReference": { - "reference": "PractitionerRole/1735607789961679000.e35ed0d5-81e7-4004-b5a2-9c4bb96283e8" + "reference": "PractitionerRole/1736458920879399261.fee69f95-844a-48cc-b0fc-221f3eb8f7e8" } }, { "url": "OBR.33", "valueReference": { - "reference": "PractitionerRole/1735607789964180000.ac3bf872-b343-49a6-bc7a-a1e4c67a78ff" + "reference": "PractitionerRole/1736458920887288026.9df8a2aa-8ac2-446f-a20a-a42fbab5e595" } }, { @@ -15473,13 +15555,13 @@ { "url": "OBR.10", "valueReference": { - "reference": "Practitioner/1735607789967604000.31387447-e0c5-48a0-8603-fa759730c7cf" + "reference": "Practitioner/1736458920895729169.f78f07f5-548f-4cd6-819e-51b95fafc774" } }, { "url": "OBR.10", "valueReference": { - "reference": "Practitioner/1735607789968682000.5f0d2d5a-ed71-47fe-933e-cdc43d3ddd60" + "reference": "Practitioner/1736458920898592980.1ff9c78f-c3e3-4b66-8414-56fe63840fa8" } }, { @@ -15810,7 +15892,7 @@ } ], "subject": { - "reference": "Patient/1735607789492432000.b59ae527-20b2-408e-b52e-6e7208838358" + "reference": "Patient/1736458919802683430.85963fc5-3bac-4e4f-a9ec-7987caa956a5" }, "occurrenceDateTime": "2022-02-02T10:22:00Z", "_occurrenceDateTime": { @@ -15876,7 +15958,7 @@ } } ], - "reference": "PractitionerRole/1735607789935168000.b157336a-2d07-4b3f-8f50-24586df66329" + "reference": "PractitionerRole/1736458920779217394.626dcd4b-f8b5-4e34-9534-96c9547f17b1" }, "locationCode": [ { @@ -15930,21 +16012,21 @@ ], "supportingInfo": [ { - "reference": "Observation/1735607789866616000.4c9c49de-6679-4d13-aab6-08738b57b19b" + "reference": "Observation/1736458920615775591.037031a7-222b-4ad2-9b9b-43ab53a20fe5" }, { - "reference": "Observation/1735607789881662000.e59d202f-4baa-4da2-aee1-f7ef9486d807" + "reference": "Observation/1736458920645881489.c5b8d22b-fdee-47f0-a4f9-163e9ff68f73" } ], "specimen": [ { - "reference": "Specimen/1735607789912796000.73e5831e-9e48-4205-b98a-f49a7a6c5871" + "reference": "Specimen/1736458920702791950.82e09fdf-e892-4c29-b1fe-5fedccdab8db" }, { - "reference": "Specimen/1735607789917871000.25140080-b05e-4747-9149-aeff9ab51569" + "reference": "Specimen/1736458920709529525.ddfe4b32-e8a0-4e31-927c-53a95ed106d8" }, { - "reference": "Specimen/1735607789900989000.8ef9776c-38fd-4f71-9870-7bd717c42e5a" + "reference": "Specimen/1736458920679227059.fe188836-63a0-4288-bf57-6eda8bf32bd5" } ], "note": [ @@ -16051,10 +16133,10 @@ } }, { - "fullUrl": "Practitioner/1735607789935997000.b95e720c-8a21-4ddb-87ff-fcfce988d970", + "fullUrl": "Practitioner/1736458920782022471.09bed657-1ab8-4b38-9185-fdfecfe0269e", "resource": { "resourceType": "Practitioner", - "id": "1735607789935997000.b95e720c-8a21-4ddb-87ff-fcfce988d970", + "id": "1736458920782022471.09bed657-1ab8-4b38-9185-fdfecfe0269e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16110,10 +16192,10 @@ } }, { - "fullUrl": "Location/1735607789936352000.170c2a48-b2b2-4d76-976c-b643c85ceabf", + "fullUrl": "Location/1736458920783616262.34a0109d-3066-42c6-9c83-e134d4eca915", "resource": { "resourceType": "Location", - "id": "1735607789936352000.170c2a48-b2b2-4d76-976c-b643c85ceabf", + "id": "1736458920783616262.34a0109d-3066-42c6-9c83-e134d4eca915", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -16137,10 +16219,10 @@ } }, { - "fullUrl": "Organization/1735607789937439000.d7fc8224-a15e-4256-9641-5dae54851b73", + "fullUrl": "Organization/1736458920787533765.37d79ae7-0e81-4075-8da4-5fd633e515dc", "resource": { "resourceType": "Organization", - "id": "1735607789937439000.d7fc8224-a15e-4256-9641-5dae54851b73", + "id": "1736458920787533765.37d79ae7-0e81-4075-8da4-5fd633e515dc", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -16179,7 +16261,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789936352000.170c2a48-b2b2-4d76-976c-b643c85ceabf" + "reference": "Location/1736458920783616262.34a0109d-3066-42c6-9c83-e134d4eca915" } } ], @@ -16263,23 +16345,23 @@ } }, { - "fullUrl": "PractitionerRole/1735607789935168000.b157336a-2d07-4b3f-8f50-24586df66329", + "fullUrl": "PractitionerRole/1736458920779217394.626dcd4b-f8b5-4e34-9534-96c9547f17b1", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789935168000.b157336a-2d07-4b3f-8f50-24586df66329", + "id": "1736458920779217394.626dcd4b-f8b5-4e34-9534-96c9547f17b1", "practitioner": { - "reference": "Practitioner/1735607789935997000.b95e720c-8a21-4ddb-87ff-fcfce988d970" + "reference": "Practitioner/1736458920782022471.09bed657-1ab8-4b38-9185-fdfecfe0269e" }, "organization": { - "reference": "Organization/1735607789937439000.d7fc8224-a15e-4256-9641-5dae54851b73" + "reference": "Organization/1736458920787533765.37d79ae7-0e81-4075-8da4-5fd633e515dc" } } }, { - "fullUrl": "Practitioner/1735607789940914000.788686ba-c301-4be2-a3e6-63111ba393e9", + "fullUrl": "Practitioner/1736458920799795141.fcf933fe-e346-4d10-af8d-cdbba647f04c", "resource": { "resourceType": "Practitioner", - "id": "1735607789940914000.788686ba-c301-4be2-a3e6-63111ba393e9", + "id": "1736458920799795141.fcf933fe-e346-4d10-af8d-cdbba647f04c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16306,10 +16388,10 @@ } }, { - "fullUrl": "Practitioner/1735607789941326000.a4ff8de9-2314-409f-832c-d01f125e078c", + "fullUrl": "Practitioner/1736458920801461582.15e1dc1c-7313-4cf0-9b4a-e0e16ac15fa6", "resource": { "resourceType": "Practitioner", - "id": "1735607789941326000.a4ff8de9-2314-409f-832c-d01f125e078c", + "id": "1736458920801461582.15e1dc1c-7313-4cf0-9b4a-e0e16ac15fa6", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16336,10 +16418,10 @@ } }, { - "fullUrl": "Location/1735607789941656000.8e436ef1-4559-4183-9f7a-c1c151f94b49", + "fullUrl": "Location/1736458920802678621.e7411f56-4ee9-4db4-849a-f645cf18a49e", "resource": { "resourceType": "Location", - "id": "1735607789941656000.8e436ef1-4559-4183-9f7a-c1c151f94b49", + "id": "1736458920802678621.e7411f56-4ee9-4db4-849a-f645cf18a49e", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", @@ -16363,10 +16445,10 @@ } }, { - "fullUrl": "Organization/1735607789941932000.facb898e-6772-44ae-9f42-e93f58a2a1ff", + "fullUrl": "Organization/1736458920803592003.ec2d88f8-66d0-4a59-b737-f0376f3e185f", "resource": { "resourceType": "Organization", - "id": "1735607789941932000.facb898e-6772-44ae-9f42-e93f58a2a1ff", + "id": "1736458920803592003.ec2d88f8-66d0-4a59-b737-f0376f3e185f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", @@ -16405,7 +16487,7 @@ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", "valueReference": { - "reference": "Location/1735607789941656000.8e436ef1-4559-4183-9f7a-c1c151f94b49" + "reference": "Location/1736458920802678621.e7411f56-4ee9-4db4-849a-f645cf18a49e" } } ], @@ -16424,10 +16506,10 @@ } }, { - "fullUrl": "Organization/1735607789942295000.9bbce4ca-edb2-4042-8aac-4dbd010e9913", + "fullUrl": "Organization/1736458920805197936.fd6917c1-e680-4828-87ff-e1f10f51efad", "resource": { "resourceType": "Organization", - "id": "1735607789942295000.9bbce4ca-edb2-4042-8aac-4dbd010e9913", + "id": "1736458920805197936.fd6917c1-e680-4828-87ff-e1f10f51efad", "identifier": [ { "extension": [ @@ -16455,10 +16537,10 @@ } }, { - "fullUrl": "Practitioner/1735607789944657000.8c808aa6-800f-4c99-b5eb-716e16797034", + "fullUrl": "Practitioner/1736458920818181326.5320c4a2-c958-42f7-826b-00a17849b3bf", "resource": { "resourceType": "Practitioner", - "id": "1735607789944657000.8c808aa6-800f-4c99-b5eb-716e16797034", + "id": "1736458920818181326.5320c4a2-c958-42f7-826b-00a17849b3bf", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16485,10 +16567,10 @@ } }, { - "fullUrl": "Practitioner/1735607789945093000.e6359e5a-881f-4478-b061-253752bb5b8e", + "fullUrl": "Practitioner/1736458920820196189.4929f73e-06dc-4c3e-a32a-156d5e325643", "resource": { "resourceType": "Practitioner", - "id": "1735607789945093000.e6359e5a-881f-4478-b061-253752bb5b8e", + "id": "1736458920820196189.4929f73e-06dc-4c3e-a32a-156d5e325643", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16515,10 +16597,10 @@ } }, { - "fullUrl": "Practitioner/1735607789945544000.f4f7ab82-bf2a-4b24-96e2-5d4b923e1a09", + "fullUrl": "Practitioner/1736458920822117756.2dea680a-aa65-4c79-bf55-d9f6129ef3c3", "resource": { "resourceType": "Practitioner", - "id": "1735607789945544000.f4f7ab82-bf2a-4b24-96e2-5d4b923e1a09", + "id": "1736458920822117756.2dea680a-aa65-4c79-bf55-d9f6129ef3c3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16545,10 +16627,10 @@ } }, { - "fullUrl": "Practitioner/1735607789945954000.97aa7aad-3139-43eb-b06c-77fcec2d72a9", + "fullUrl": "Practitioner/1736458920823872499.77abc199-02c2-4779-b702-1ec22ef5115d", "resource": { "resourceType": "Practitioner", - "id": "1735607789945954000.97aa7aad-3139-43eb-b06c-77fcec2d72a9", + "id": "1736458920823872499.77abc199-02c2-4779-b702-1ec22ef5115d", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16575,10 +16657,10 @@ } }, { - "fullUrl": "Practitioner/1735607789946382000.8f06e42c-c03d-417e-b118-362ceecbfe11", + "fullUrl": "Practitioner/1736458920826512402.eebd8eb7-1647-4bda-b93e-68c62721862f", "resource": { "resourceType": "Practitioner", - "id": "1735607789946382000.8f06e42c-c03d-417e-b118-362ceecbfe11", + "id": "1736458920826512402.eebd8eb7-1647-4bda-b93e-68c62721862f", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16605,10 +16687,10 @@ } }, { - "fullUrl": "Practitioner/1735607789946792000.d7722bde-2b53-4660-9be3-f4ae29b459b2", + "fullUrl": "Practitioner/1736458920829033502.678b99c3-ae47-4571-a7f7-0f462525de7c", "resource": { "resourceType": "Practitioner", - "id": "1735607789946792000.d7722bde-2b53-4660-9be3-f4ae29b459b2", + "id": "1736458920829033502.678b99c3-ae47-4571-a7f7-0f462525de7c", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", @@ -16635,10 +16717,10 @@ } }, { - "fullUrl": "Location/1735607789947336000.66062a3e-03e5-4a90-887f-edff984bd744", + "fullUrl": "Location/1736458920833086259.cc7e2e8e-6a01-44c6-a901-810c7efc2651", "resource": { "resourceType": "Location", - "id": "1735607789947336000.66062a3e-03e5-4a90-887f-edff984bd744", + "id": "1736458920833086259.cc7e2e8e-6a01-44c6-a901-810c7efc2651", "identifier": [ { "extension": [ @@ -16690,10 +16772,10 @@ } }, { - "fullUrl": "Location/1735607789947532000.5a6f07d5-c0a3-4b6e-9664-8b20d94c211a", + "fullUrl": "Location/1736458920834247502.182e2faf-406d-4ecd-949e-947bbecf0349", "resource": { "resourceType": "Location", - "id": "1735607789947532000.5a6f07d5-c0a3-4b6e-9664-8b20d94c211a", + "id": "1736458920834247502.182e2faf-406d-4ecd-949e-947bbecf0349", "identifier": [ { "extension": [ @@ -16744,15 +16826,15 @@ ] }, "partOf": { - "reference": "Location/1735607789947336000.66062a3e-03e5-4a90-887f-edff984bd744" + "reference": "Location/1736458920833086259.cc7e2e8e-6a01-44c6-a901-810c7efc2651" } } }, { - "fullUrl": "Practitioner/1735607789950376000.24c620b2-301b-47a2-ad99-7ec33b972f10", + "fullUrl": "Practitioner/1736458920844194703.d758016e-e2e2-4371-a056-b52db3d3e28d", "resource": { "resourceType": "Practitioner", - "id": "1735607789950376000.24c620b2-301b-47a2-ad99-7ec33b972f10", + "id": "1736458920844194703.d758016e-e2e2-4371-a056-b52db3d3e28d", "identifier": [ { "value": "1" @@ -16786,10 +16868,10 @@ } }, { - "fullUrl": "Practitioner/1735607789950837000.ae5ab2b7-eb27-45f4-8cfa-5fb6f7c6cd84", + "fullUrl": "Practitioner/1736458920846638676.ea0f338d-39a6-4f7b-9d60-ed3324e78e7f", "resource": { "resourceType": "Practitioner", - "id": "1735607789950837000.ae5ab2b7-eb27-45f4-8cfa-5fb6f7c6cd84", + "id": "1736458920846638676.ea0f338d-39a6-4f7b-9d60-ed3324e78e7f", "identifier": [ { "value": "2" @@ -16823,10 +16905,10 @@ } }, { - "fullUrl": "Practitioner/1735607789953413000.2d4f9d48-5337-4631-b922-f0338e58b626", + "fullUrl": "Practitioner/1736458920855042037.198f88ba-75fc-4f63-9670-e811df1dc280", "resource": { "resourceType": "Practitioner", - "id": "1735607789953413000.2d4f9d48-5337-4631-b922-f0338e58b626", + "id": "1736458920855042037.198f88ba-75fc-4f63-9670-e811df1dc280", "identifier": [ { "value": "1" @@ -16860,10 +16942,10 @@ } }, { - "fullUrl": "Practitioner/1735607789953884000.d23e78fb-5fcd-4db0-9450-e5f2738816dd", + "fullUrl": "Practitioner/1736458920856453359.1ac84f1a-2e6f-4196-ac73-66798dfc767c", "resource": { "resourceType": "Practitioner", - "id": "1735607789953884000.d23e78fb-5fcd-4db0-9450-e5f2738816dd", + "id": "1736458920856453359.1ac84f1a-2e6f-4196-ac73-66798dfc767c", "identifier": [ { "value": "2" @@ -16897,10 +16979,10 @@ } }, { - "fullUrl": "Practitioner/1735607789954747000.f208778e-9805-4628-8a68-556240543fa1", + "fullUrl": "Practitioner/1736458920858735687.6afd327b-f853-40af-8371-3130ec026a48", "resource": { "resourceType": "Practitioner", - "id": "1735607789954747000.f208778e-9805-4628-8a68-556240543fa1", + "id": "1736458920858735687.6afd327b-f853-40af-8371-3130ec026a48", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", @@ -16967,10 +17049,10 @@ } }, { - "fullUrl": "Location/1735607789955440000.13b61e2d-6a4f-4486-8aa9-90d59853c298", + "fullUrl": "Location/1736458920861314257.a337cbbf-9b66-4369-80b5-4a1c21d4a24f", "resource": { "resourceType": "Location", - "id": "1735607789955440000.13b61e2d-6a4f-4486-8aa9-90d59853c298", + "id": "1736458920861314257.a337cbbf-9b66-4369-80b5-4a1c21d4a24f", "identifier": [ { "extension": [ @@ -17017,10 +17099,10 @@ } }, { - "fullUrl": "Location/1735607789960554000.0f1550ab-ddeb-4988-8b10-f3288a6b2bf7", + "fullUrl": "Location/1736458920875804585.cd961560-b970-48ef-bd41-c14bf67eed40", "resource": { "resourceType": "Location", - "id": "1735607789960554000.0f1550ab-ddeb-4988-8b10-f3288a6b2bf7", + "id": "1736458920875804585.cd961560-b970-48ef-bd41-c14bf67eed40", "identifier": [ { "value": "Building 123" @@ -17039,10 +17121,10 @@ } }, { - "fullUrl": "Location/1735607789960892000.f628d814-9591-4af9-a998-08afe92b3119", + "fullUrl": "Location/1736458920876964375.142246df-0196-4759-8f4d-199067ad87f2", "resource": { "resourceType": "Location", - "id": "1735607789960892000.f628d814-9591-4af9-a998-08afe92b3119", + "id": "1736458920876964375.142246df-0196-4759-8f4d-199067ad87f2", "identifier": [ { "value": "Point of Care" @@ -17068,10 +17150,10 @@ } }, { - "fullUrl": "Location/1735607789961130000.f7eb1ab5-4966-404d-aca9-bd28707c3e4a", + "fullUrl": "Location/1736458920878043241.63484544-b538-4bff-a4e6-a58e9d313080", "resource": { "resourceType": "Location", - "id": "1735607789961130000.f7eb1ab5-4966-404d-aca9-bd28707c3e4a", + "id": "1736458920878043241.63484544-b538-4bff-a4e6-a58e9d313080", "identifier": [ { "value": "Floor A" @@ -17090,10 +17172,10 @@ } }, { - "fullUrl": "Location/1735607789961355000.3c95f21f-c5af-46ea-8065-8fe83b8789e0", + "fullUrl": "Location/1736458920878632378.5d92deea-2d01-4d39-a5e2-ccd675400c0e", "resource": { "resourceType": "Location", - "id": "1735607789961355000.3c95f21f-c5af-46ea-8065-8fe83b8789e0", + "id": "1736458920878632378.5d92deea-2d01-4d39-a5e2-ccd675400c0e", "identifier": [ { "value": "Room 101" @@ -17112,10 +17194,10 @@ } }, { - "fullUrl": "Location/1735607789961591000.e02bf992-710f-4686-874d-c373fdb4a4fb", + "fullUrl": "Location/1736458920879081399.68dda7a2-275c-4ba7-9e5f-f8797231c8b2", "resource": { "resourceType": "Location", - "id": "1735607789961591000.e02bf992-710f-4686-874d-c373fdb4a4fb", + "id": "1736458920879081399.68dda7a2-275c-4ba7-9e5f-f8797231c8b2", "identifier": [ { "value": "Bed A" @@ -17134,10 +17216,10 @@ } }, { - "fullUrl": "PractitionerRole/1735607789961679000.e35ed0d5-81e7-4004-b5a2-9c4bb96283e8", + "fullUrl": "PractitionerRole/1736458920879399261.fee69f95-844a-48cc-b0fc-221f3eb8f7e8", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789961679000.e35ed0d5-81e7-4004-b5a2-9c4bb96283e8", + "id": "1736458920879399261.fee69f95-844a-48cc-b0fc-221f3eb8f7e8", "period": { "start": "2023-04-01T10:25:31-04:00", "_start": { @@ -17159,35 +17241,35 @@ } }, "practitioner": { - "reference": "Practitioner/1735607789954747000.f208778e-9805-4628-8a68-556240543fa1" + "reference": "Practitioner/1736458920858735687.6afd327b-f853-40af-8371-3130ec026a48" }, "location": [ { - "reference": "Location/1735607789955440000.13b61e2d-6a4f-4486-8aa9-90d59853c298" + "reference": "Location/1736458920861314257.a337cbbf-9b66-4369-80b5-4a1c21d4a24f" }, { - "reference": "Location/1735607789960554000.0f1550ab-ddeb-4988-8b10-f3288a6b2bf7" + "reference": "Location/1736458920875804585.cd961560-b970-48ef-bd41-c14bf67eed40" }, { - "reference": "Location/1735607789960892000.f628d814-9591-4af9-a998-08afe92b3119" + "reference": "Location/1736458920876964375.142246df-0196-4759-8f4d-199067ad87f2" }, { - "reference": "Location/1735607789961130000.f7eb1ab5-4966-404d-aca9-bd28707c3e4a" + "reference": "Location/1736458920878043241.63484544-b538-4bff-a4e6-a58e9d313080" }, { - "reference": "Location/1735607789961355000.3c95f21f-c5af-46ea-8065-8fe83b8789e0" + "reference": "Location/1736458920878632378.5d92deea-2d01-4d39-a5e2-ccd675400c0e" }, { - "reference": "Location/1735607789961591000.e02bf992-710f-4686-874d-c373fdb4a4fb" + "reference": "Location/1736458920879081399.68dda7a2-275c-4ba7-9e5f-f8797231c8b2" } ] } }, { - "fullUrl": "Practitioner/1735607789962294000.a0d47789-28ae-44c1-926e-0b60b4c1855b", + "fullUrl": "Practitioner/1736458920880790564.15ff02ab-cd8a-4f8d-86d6-2dec23bd65c3", "resource": { "resourceType": "Practitioner", - "id": "1735607789962294000.a0d47789-28ae-44c1-926e-0b60b4c1855b", + "id": "1736458920880790564.15ff02ab-cd8a-4f8d-86d6-2dec23bd65c3", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner", @@ -17254,10 +17336,10 @@ } }, { - "fullUrl": "Location/1735607789962574000.859caab3-9590-40c8-bf11-c979a4a6e835", + "fullUrl": "Location/1736458920881800883.2ce47f16-39f2-4f3b-82b6-eccf3708ee2a", "resource": { "resourceType": "Location", - "id": "1735607789962574000.859caab3-9590-40c8-bf11-c979a4a6e835", + "id": "1736458920881800883.2ce47f16-39f2-4f3b-82b6-eccf3708ee2a", "identifier": [ { "extension": [ @@ -17304,10 +17386,10 @@ } }, { - "fullUrl": "Location/1735607789962859000.59d387e8-b256-481d-b0b4-f2dd295607f8", + "fullUrl": "Location/1736458920882758379.2525668a-6e9c-4b11-9795-64a408842853", "resource": { "resourceType": "Location", - "id": "1735607789962859000.59d387e8-b256-481d-b0b4-f2dd295607f8", + "id": "1736458920882758379.2525668a-6e9c-4b11-9795-64a408842853", "identifier": [ { "value": "Building 123" @@ -17326,10 +17408,10 @@ } }, { - "fullUrl": "Location/1735607789963257000.75f19a7e-8a02-4a2b-9b38-0b0ea11742cd", + "fullUrl": "Location/1736458920884288161.bd689200-66ea-4de5-989e-2acb3f55dbc7", "resource": { "resourceType": "Location", - "id": "1735607789963257000.75f19a7e-8a02-4a2b-9b38-0b0ea11742cd", + "id": "1736458920884288161.bd689200-66ea-4de5-989e-2acb3f55dbc7", "identifier": [ { "value": "Point of Care" @@ -17355,10 +17437,10 @@ } }, { - "fullUrl": "Location/1735607789963528000.dfafd1d2-c838-40b1-a3d6-75083a91abf2", + "fullUrl": "Location/1736458920885307062.a4eae5bc-e467-409e-87d5-c1901d88638a", "resource": { "resourceType": "Location", - "id": "1735607789963528000.dfafd1d2-c838-40b1-a3d6-75083a91abf2", + "id": "1736458920885307062.a4eae5bc-e467-409e-87d5-c1901d88638a", "identifier": [ { "value": "Floor A" @@ -17377,10 +17459,10 @@ } }, { - "fullUrl": "Location/1735607789963742000.33844b3d-f526-4022-8405-f7729d0d7333", + "fullUrl": "Location/1736458920886158546.0e01eed7-386a-4e53-b87a-716097985ea6", "resource": { "resourceType": "Location", - "id": "1735607789963742000.33844b3d-f526-4022-8405-f7729d0d7333", + "id": "1736458920886158546.0e01eed7-386a-4e53-b87a-716097985ea6", "identifier": [ { "value": "Room 101" @@ -17399,10 +17481,10 @@ } }, { - "fullUrl": "Location/1735607789963969000.8e9c29a3-e870-491a-b2c6-d7f779597012", + "fullUrl": "Location/1736458920886993121.e63ea88f-de86-4c67-b60a-2121872fcbe3", "resource": { "resourceType": "Location", - "id": "1735607789963969000.8e9c29a3-e870-491a-b2c6-d7f779597012", + "id": "1736458920886993121.e63ea88f-de86-4c67-b60a-2121872fcbe3", "identifier": [ { "value": "Bed A" @@ -17421,10 +17503,10 @@ } }, { - "fullUrl": "PractitionerRole/1735607789964180000.ac3bf872-b343-49a6-bc7a-a1e4c67a78ff", + "fullUrl": "PractitionerRole/1736458920887288026.9df8a2aa-8ac2-446f-a20a-a42fbab5e595", "resource": { "resourceType": "PractitionerRole", - "id": "1735607789964180000.ac3bf872-b343-49a6-bc7a-a1e4c67a78ff", + "id": "1736458920887288026.9df8a2aa-8ac2-446f-a20a-a42fbab5e595", "period": { "start": "2023-04-01T10:25:31-04:00", "_start": { @@ -17446,35 +17528,35 @@ } }, "practitioner": { - "reference": "Practitioner/1735607789962294000.a0d47789-28ae-44c1-926e-0b60b4c1855b" + "reference": "Practitioner/1736458920880790564.15ff02ab-cd8a-4f8d-86d6-2dec23bd65c3" }, "location": [ { - "reference": "Location/1735607789962574000.859caab3-9590-40c8-bf11-c979a4a6e835" + "reference": "Location/1736458920881800883.2ce47f16-39f2-4f3b-82b6-eccf3708ee2a" }, { - "reference": "Location/1735607789962859000.59d387e8-b256-481d-b0b4-f2dd295607f8" + "reference": "Location/1736458920882758379.2525668a-6e9c-4b11-9795-64a408842853" }, { - "reference": "Location/1735607789963257000.75f19a7e-8a02-4a2b-9b38-0b0ea11742cd" + "reference": "Location/1736458920884288161.bd689200-66ea-4de5-989e-2acb3f55dbc7" }, { - "reference": "Location/1735607789963528000.dfafd1d2-c838-40b1-a3d6-75083a91abf2" + "reference": "Location/1736458920885307062.a4eae5bc-e467-409e-87d5-c1901d88638a" }, { - "reference": "Location/1735607789963742000.33844b3d-f526-4022-8405-f7729d0d7333" + "reference": "Location/1736458920886158546.0e01eed7-386a-4e53-b87a-716097985ea6" }, { - "reference": "Location/1735607789963969000.8e9c29a3-e870-491a-b2c6-d7f779597012" + "reference": "Location/1736458920886993121.e63ea88f-de86-4c67-b60a-2121872fcbe3" } ] } }, { - "fullUrl": "Practitioner/1735607789967604000.31387447-e0c5-48a0-8603-fa759730c7cf", + "fullUrl": "Practitioner/1736458920895729169.f78f07f5-548f-4cd6-819e-51b95fafc774", "resource": { "resourceType": "Practitioner", - "id": "1735607789967604000.31387447-e0c5-48a0-8603-fa759730c7cf", + "id": "1736458920895729169.f78f07f5-548f-4cd6-819e-51b95fafc774", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", @@ -17623,10 +17705,10 @@ } }, { - "fullUrl": "Practitioner/1735607789968682000.5f0d2d5a-ed71-47fe-933e-cdc43d3ddd60", + "fullUrl": "Practitioner/1736458920898592980.1ff9c78f-c3e3-4b66-8414-56fe63840fa8", "resource": { "resourceType": "Practitioner", - "id": "1735607789968682000.5f0d2d5a-ed71-47fe-933e-cdc43d3ddd60", + "id": "1736458920898592980.1ff9c78f-c3e3-4b66-8414-56fe63840fa8", "extension": [ { "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 index 46246314f53..efa15b2e5d5 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7 @@ -1,7 +1,7 @@ MSH|^~\&|OrderingFacilityApplicationName^2.16.840.1.114222.XXX^ISO|OrderingFacilityName^2.16.840.1.114222.XXX^ISO|txdshslabNBS^2.16.840.1.114222.4.1.181960.2^ISO|txdshslab^2.16.840.1.114222.4.1.181960^ISO|20190720091229|msh8placeholder|OML^O21^OML_O21|0123|P^A|2.5.1|42|msh14placeholder|AL|AL|FR|UNICODE UTF-8|ENG^English^ISO^altE^altEnglish^altISO^131^313^originaltext^2ndalt^Second Alt|UNICODE UTF-16|PHLabReport-NoAck^PHIN^2.16.840.1.113883.9.11^ISO~PHLabReport2x^PHIN^2.16.840.1.113883.9.11^ISO|Sending Responsible Org^1357-9&SomeText&LN&2468-5&SomeAltText&LN&1&2&OriginalText^1111^9^BCV^The Authority&4.2.8.2&ISO^BC^Clinic A&1.8.440.1.1138.9.22&ISO^NameRepCode1^OrgIdentifier2|Receiving Responsible Org^1133-5&SomeOtherText&LN&1298-7&SomeOtherAltText&LN&1&2&TheOriginalText^5555^8^CCTV^An Authority&45.24.167.43&ISO^BCVan^Clinic B&10.10.40.10.11380.90.22&ISO^NameRepCode2^OrgIdentifier3|SendingNetworkAddress^1.23.987.1.114222.XXX^ISO|ReceivingNetworkAddress^9.87.123.1.114222.XXX^ISO SFT|CDC^A&Alias Name&HL70204^789^Check Digit3^C3^CDC OML SFT&2.1.9.1&ISO^MD^Hospital C&2.16.8121.1.113883.9.11&ISO^A^CDC CLIA|ELIMS V11|STARLIMS|Binary ID unknown|testsft5data|20230802180802-0400 PID|1||Patidlist^forty^123^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO^20210113^20211230^IX&Ninth&HL7123^X&Tenth&HL7123~PID123^^^SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^PI~test^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^PI^STARLINKED.CDC.Stag&2.16.840.1.114222.9.8.7.6.3.2&ISO||Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof~Mega&Mr&MrOwnMega&Mrs&MrsOwn^HL7^MI^V^DR^BCN^L^Naaame^C&Name Context&HL7444^Yes^G^19900503^20030503^Prof|Mind^FHIR^WI^^^^L~Mind2x^FHIR^WI^^^^L|1640|F^Female^HL70001||2106-3^White^HL70005~2131-1^Other Race^HL70005|123 Main St^Altxad^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024~1234 Main St^Address 2x^AnyTown^IG^95802^USA^H^^Thurston County^^^2020&2024||12345^PRS^CP^real@example.com^1^713^5553861^1^himom^^4^17145553862~12345^PRS^CP^notreal@example.com^1^714^5553861^1^himom^^4^17135553862|9865^EMR^SAT^alsoreal@exmaple.com^1^281^5553861|E^English^HL70296|P^Domestic Partnet^HL70002|AGN^Agnostic^HL70006|32|||maybe~maybe not|U^Uknown^HL70189~AU^Also Uknown^HL70189|Bayou|Y|11|USA^United States^HL70171~CAN^Canada^HL70171|NA^Not Applicable^HL70172|A^American^HL70212|2031|Y|N|AL^Alias^HL70445~UA^Unknown^HL70445|202408211138|RSDT^0.0.0.1.1138^ISO|D^Dog^HL70446|||RA^Racing^HL70429|N^None^HL70171~SN^Still None^HL70171|40~41 -PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier~Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400|20230501102531-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 +PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier~Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier|1111111111^PD1.4NameFamily^PD1.4NameGiven^PD1.4NameInit^^^^^NPI^^^^NPI|F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400|20230501102531-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 NTE|1|L|Just a little note on the patient~another little comment|||20210206|20210207|20210208|CC^Coded Patient note NTE|2|L|Accession level coment.|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note NK1|1|SURYAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context of the name&HL70448^2000&2030^G^20000501102531^2030501102531^Dr~SURYANS&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context of the name&HL70448^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H~4860 21ST AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954~^PRN^PH^example2@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3954|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2293~^WPN^PH^^1^666^4672293^^^^^+1 666 467 2293|F^Federal Agency^HL70131|20220501102531-0400|20230501102531-0400|||052479^^^^^^20160822|HospitalsRUs^^112233^^^^^^^HRU~Hospitals 2.0^^112233^^^^^^^H20||N^Not Applicable^HL70001|19860505||||E^English^HL70296|||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3954~^WPN^PH^^1^666^5553954^^^^^+1 666 555 3954|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021~4861 24TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021|052479^^^^^^^20210428~052470^^^^^^^20210429|||||||^VHN^SAT^^1^314^5553131^^^^^+1 314 555 3131|^AWN^FX^^1^281^5558181^^^^^+1 281 555 8181 diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.fhir index 6029112e55b..a2d73878ddb 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.fhir +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.fhir @@ -1,1400 +1,2063 @@ { - "resourceType" : "Bundle", - "id" : "1710883409045901000.0a9fa4af-2513-4656-87a3-4982043ee216", - "meta" : { - "lastUpdated" : "2024-03-19T15:23:29.056-06:00" + "resourceType": "Bundle", + "id": "1736358951656088648.b7c165c0-b732-4d06-84e7-4fb3bbcfa01c", + "meta": { + "lastUpdated": "2025-01-08T17:55:51.668+00:00" }, - "identifier" : { - "system" : "https://reportstream.cdc.gov/prime-router", - "value" : "12345" + "identifier": { + "system": "https://reportstream.cdc.gov/prime-router", + "value": "12345" }, - "type" : "message", - "timestamp" : "2023-05-01T08:25:31.000-06:00", - "entry" : [ { - "fullUrl" : "MessageHeader/827ccb0e-ea8a-306c-8c34-a16891f84e7b", - "resource" : { - "resourceType" : "MessageHeader", - "id" : "827ccb0e-ea8a-306c-8c34-a16891f84e7b", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", - "valueString" : "^~\\&#" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", - "valueString" : "UNICODE UTF-8" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", - "extension" : [ { - "url" : "MSH.7", - "valueString" : "20230501102531-0400" - } ] - } ], - "eventCoding" : { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0003", - "code" : "R01", - "display" : "ORU^R01^ORU_R01" - }, - "sender" : { - "reference" : "Organization/1710883409133355000.eb6e0e16-11c9-4b64-a51c-8c43e4774454" + "type": "message", + "timestamp": "2023-05-01T14:25:31.000+00:00", + "entry": [ + { + "fullUrl": "MessageHeader/1736358951916567731.f0195860-0bdc-4f89-b007-fc30741d8f94", + "resource": { + "resourceType": "MessageHeader", + "id": "1736358951916567731.f0195860-0bdc-4f89-b007-fc30741d8f94", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters", + "valueString": "^~\\&#" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/character-set", + "valueString": "UNICODE UTF-8" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header", + "extension": [ + { + "url": "MSH.7", + "valueString": "20230501102531-0400" + } + ] + } + ], + "eventCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v2-0003", + "code": "R01", + "display": "ORU^R01^ORU_R01" + }, + "sender": { + "reference": "Organization/1736358951905013610.902a09d5-2894-40dd-95c8-9a6691cd7ee9" + } } - } - }, { - "fullUrl" : "Organization/1710883409133355000.eb6e0e16-11c9-4b64-a51c-8c43e4774454", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409133355000.eb6e0e16-11c9-4b64-a51c-8c43e4774454", - "address" : [ { - "country" : "USA" - } ] - } - }, { - "fullUrl" : "Provenance/1710883409710462000.c7727838-4f44-429c-9335-c5e3f293ddab", - "resource" : { - "resourceType" : "Provenance", - "id" : "1710883409710462000.c7727838-4f44-429c-9335-c5e3f293ddab", - "target" : [ { - "reference" : "MessageHeader/827ccb0e-ea8a-306c-8c34-a16891f84e7b" - }, { - "reference" : "DiagnosticReport/1710883410209258000.106605c3-d100-4300-813b-48b7adaac54c" - } ], - "recorded" : "2023-05-01T10:25:31-04:00", - "activity" : { - "coding" : [ { - "display" : "ORU^R01^ORU_R01" - } ] + }, + { + "fullUrl": "Organization/1736358951905013610.902a09d5-2894-40dd-95c8-9a6691cd7ee9", + "resource": { + "resourceType": "Organization", + "id": "1736358951905013610.902a09d5-2894-40dd-95c8-9a6691cd7ee9", + "address": [ + { + "country": "USA" + } + ] } - } - }, { - "fullUrl" : "Provenance/1710883409722169000.becd8e80-c0cc-48b6-a24d-2706de5b0963", - "resource" : { - "resourceType" : "Provenance", - "id" : "1710883409722169000.becd8e80-c0cc-48b6-a24d-2706de5b0963", - "recorded" : "2024-03-19T15:23:29Z", - "policy" : [ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" ], - "activity" : { - "coding" : [ { - "code" : "v2-FHIR transformation" - } ] - }, - "agent" : [ { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type", - "code" : "assembler" - } ] - }, - "who" : { - "reference" : "Organization/1710883409721231000.d5566bb2-f7ba-4f45-86d3-2a8d20ef5a56" + }, + { + "fullUrl": "Provenance/1736358952071011885.8b4c03e3-23aa-4169-92aa-812ea3dcccaa", + "resource": { + "resourceType": "Provenance", + "id": "1736358952071011885.8b4c03e3-23aa-4169-92aa-812ea3dcccaa", + "target": [ + { + "reference": "MessageHeader/1736358951916567731.f0195860-0bdc-4f89-b007-fc30741d8f94" + }, + { + "reference": "DiagnosticReport/1736358952689539033.62e6c6d0-de0d-47bc-9ae4-8d855eb07890" + } + ], + "recorded": "2023-05-01T10:25:31-04:00", + "activity": { + "coding": [ + { + "display": "ORU^R01^ORU_R01" + } + ] } - } ] - } - }, { - "fullUrl" : "Organization/1710883409721231000.d5566bb2-f7ba-4f45-86d3-2a8d20ef5a56", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409721231000.d5566bb2-f7ba-4f45-86d3-2a8d20ef5a56", - "identifier" : [ { - "value" : "CDC PRIME - Atlanta" - }, { - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301" - } ] + } + }, + { + "fullUrl": "Provenance/1736358952087726118.ead2b8ad-b8da-4bb5-b653-9a7b64e44be3", + "resource": { + "resourceType": "Provenance", + "id": "1736358952087726118.ead2b8ad-b8da-4bb5-b653-9a7b64e44be3", + "recorded": "2025-01-08T17:55:52Z", + "policy": [ + "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle" + ], + "activity": { + "coding": [ + { + "code": "v2-FHIR transformation" + } + ] }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.114222.4.1.237821" - } ] - } - }, { - "fullUrl" : "Patient/1710883409796711000.40f2dcee-518c-43ea-8de8-558b1a9c6516", - "resource" : { - "resourceType" : "Patient", - "id" : "1710883409796711000.40f2dcee-518c-43ea-8de8-558b1a9c6516", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Full-time student" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "2.5.1", - "code" : "N", - "display" : "Not a student" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70231" - } ], - "version" : "4", - "code" : "N", - "display" : "Not a student" - } ], - "text" : "TEST" - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-disability", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "2.5.1", - "code" : "T", - "display" : "TEST" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "2.5.1", - "code" : "D", - "display" : "Debug" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70295" - } ], - "version" : "4", - "code" : "P", - "display" : "Prod" - } ], - "text" : "TEST" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient has a living will but it is not on file" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70315" - } ], - "version" : "4", - "code" : "I", - "display" : "No, patient does not have a living will but information was provided" - } ], - "text" : "TEST" - } - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "1st Ordering Facility" - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation", - "valueString" : "2nd Ordering Facility" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", - "extension" : [ { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "C", - "display" : "Small Children Dependent" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "4", - "code" : "M", - "display" : "Medical Supervision Required" - } ], - "text" : "TEST" + "agent": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type", + "code": "assembler" + } + ] + }, + "who": { + "reference": "Organization/1736358952086145916.c938fd70-b7f7-4732-8e24-310081774b89" + } } - }, { - "url" : "PD1.1", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "2.5.1", - "code" : "M", - "display" : "Medical Supervision Required" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70223" - } ], - "version" : "4", - "code" : "U", - "display" : "Unknown" - } ], - "text" : "TEST" + ] + } + }, + { + "fullUrl": "Organization/1736358952086145916.c938fd70-b7f7-4732-8e24-310081774b89", + "resource": { + "resourceType": "Organization", + "id": "1736358952086145916.c938fd70-b7f7-4732-8e24-310081774b89", + "identifier": [ + { + "value": "CDC PRIME - Atlanta" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.114222.4.1.237821" } - }, { - "url" : "PD1.2", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Alone" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70220" - } ], - "version" : "4", - "code" : "F", - "display" : "Family" - } ], - "text" : "TEST" + ] + } + }, + { + "fullUrl": "Patient/1736358952171225679.70fba0ff-ac4b-418d-b027-60af204e9d95", + "resource": { + "resourceType": "Patient", + "id": "1736358952171225679.70fba0ff-ac4b-418d-b027-60af204e9d95", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Full-time student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "2.5.1", + "code": "N", + "display": "Not a student" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70231" + } + ], + "version": "4", + "code": "N", + "display": "Not a student" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-disability", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "T", + "display": "TEST" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "2.5.1", + "code": "D", + "display": "Debug" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70295" + } + ], + "version": "4", + "code": "P", + "display": "Prod" + } + ], + "text": "TEST" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient has a living will but it is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70315" + } + ], + "version": "4", + "code": "I", + "display": "No, patient does not have a living will but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "1st Ordering Facility" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/patient-congregation", + "valueString": "2nd Ordering Facility" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic", + "extension": [ + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "C", + "display": "Small Children Dependent" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "M", + "display": "Medical Supervision Required" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.1", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "2.5.1", + "code": "M", + "display": "Medical Supervision Required" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70223" + } + ], + "version": "4", + "code": "U", + "display": "Unknown" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.2", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Alone" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70220" + } + ], + "version": "4", + "code": "F", + "display": "Family" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.16", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "A", + "display": "Active" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "2.5.1", + "code": "O", + "display": "Other" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70441" + } + ], + "version": "4", + "code": "I", + "display": "Inactive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.17", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.18", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.19", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSA", + "display": "Australian Army" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "2.5.1", + "code": "AUSN", + "display": "Australian Navy" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70140" + } + ], + "version": "4", + "code": "AUSFA", + "display": "Australian Air Force" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.20", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "E1... E9", + "display": "Enlisted" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "2.5.1", + "code": "W1 ... W4", + "display": "Warrent Officers" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70141" + } + ], + "version": "4", + "code": "O1 ... O9", + "display": "Officers" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.21", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "ACT", + "display": "Active duty" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "2.5.1", + "code": "RET", + "display": "Retired" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70142" + } + ], + "version": "4", + "code": "DEC", + "display": "Deceased" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.22", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.8", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Yes, patient is a documented donor, but documentation is not on file" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70316" + } + ], + "version": "4", + "code": "I", + "display": "No, patient is not a documented donor, but information was provided" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.9", + "valueString": "N" + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1736358952142470650.ccb6d41d-7544-41a4-b786-a80ff6cbd364" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "MR" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "MR" + } + ] + }, + "system": "NIST MPI", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NIST MPI" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.3.72.5.30.2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "18547545" + } + }, + { + "url": "PD1.10", + "valueIdentifier": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", + "valueReference": { + "reference": "Organization/1736358952144431626.5e7a1c9d-5402-49de-ac56-a42519025842" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", + "extension": [ + { + "url": "CX.5", + "valueString": "SS" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "PD1.10" + } + ], + "type": { + "coding": [ + { + "code": "SS" + } + ] + }, + "system": "SSN", + "_system": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "SSN" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.16.840.1.113883.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueString": "ISO" + } + ] + }, + "value": "111111111" + } + }, + { + "url": "PD1.11", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "F", + "display": "Family only" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "2.5.1", + "code": "U", + "display": "Unknown" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70215" + } + ], + "version": "4", + "code": "N", + "display": "No Publicity" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.12", + "valueString": "N" + }, + { + "url": "PD1.13", + "valueString": "20230501102531-0400" + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1736358952149299645.a83a5c52-9dcd-42d7-90c1-a10c7a1f9dba" + } + }, + { + "url": "PD1.14", + "valueReference": { + "reference": "Organization/1736358952151517945.21a783d4-3bcd-4373-95fb-02e5eae6dbf4" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", + "valueOid": "urn:oid:8.44.235.1.113883.3.3" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "DNR", + "display": "Do not resuscitate" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "secondary-alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "2.5.1", + "code": "N", + "display": "No directive" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "version": "4", + "code": "N", + "display": "No directive" + } + ], + "text": "TEST" + } + }, + { + "url": "PD1.15", + "valueCodeableConcept": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "HL70435" + } + ], + "code": "DNR", + "display": "Do not resuscitate" + } + ] + } + } + ] } - }, { - "url" : "PD1.16", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "2.5.1", - "code" : "A", - "display" : "Active" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "2.5.1", - "code" : "O", - "display" : "Other" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70441" - } ], - "version" : "4", - "code" : "I", - "display" : "Inactive" - } ], - "text" : "TEST" + ], + "generalPractitioner": [ + { + "reference": "Organization/1736358952164152679.4e493b07-5ae5-4231-bd62-d5f7f7741fc8" + }, + { + "reference": "Organization/1736358952165738008.f216127f-70e1-45e6-8964-c942162944aa" + }, + { + "reference": "Practitioner/1736358952169738910.fc9411dc-931a-43fe-bc03-c98d6051775f" + }, + { + "reference": "Practitioner/1736358952170981056.50c9e850-57b4-4ed5-b853-602a9ed47608" } - }, { - "url" : "PD1.17", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.18", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.19", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "2.5.1", - "code" : "AUSA", - "display" : "Australian Army" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "2.5.1", - "code" : "AUSN", - "display" : "Australian Navy" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70140" - } ], - "version" : "4", - "code" : "AUSFA", - "display" : "Australian Air Force" - } ], - "text" : "TEST" + ] + } + }, + { + "fullUrl": "Organization/1736358952142470650.ccb6d41d-7544-41a4-b786-a80ff6cbd364", + "resource": { + "resourceType": "Organization", + "id": "1736358952142470650.ccb6d41d-7544-41a4-b786-a80ff6cbd364", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "University H" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.0" } - }, { - "url" : "PD1.20", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "2.5.1", - "code" : "E1... E9", - "display" : "Enlisted" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "2.5.1", - "code" : "W1 ... W4", - "display" : "Warrent Officers" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70141" - } ], - "version" : "4", - "code" : "O1 ... O9", - "display" : "Officers" - } ], - "text" : "TEST" + ] + } + }, + { + "fullUrl": "Organization/1736358952144431626.5e7a1c9d-5402-49de-ac56-a42519025842", + "resource": { + "resourceType": "Organization", + "id": "1736358952144431626.5e7a1c9d-5402-49de-ac56-a42519025842", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "SSA" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.2,HD.3" + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0301", + "code": "ISO" + } + ] + }, + "system": "urn:ietf:rfc:3986", + "value": "2.16.840.1.113883.3.184" } - }, { - "url" : "PD1.21", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "2.5.1", - "code" : "ACT", - "display" : "Active duty" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "2.5.1", - "code" : "RET", - "display" : "Retired" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70142" - } ], - "version" : "4", - "code" : "DEC", - "display" : "Deceased" - } ], - "text" : "TEST" + ] + } + }, + { + "fullUrl": "Location/1736358952147814512.dd6bae70-a3a1-47d7-8cfc-1f09770b8909", + "resource": { + "resourceType": "Location", + "id": "1736358952147814512.dd6bae70-a3a1-47d7-8cfc-1f09770b8909", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - }, { - "url" : "PD1.22", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.8", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Yes, patient is a documented donor, but documentation is not on file" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70316" - } ], - "version" : "4", - "code" : "I", - "display" : "No, patient is not a documented donor, but information was provided" - } ], - "text" : "TEST" + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" } - }, { - "url" : "PD1.9", - "valueString" : "N" - }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1710883409778898000.0cd60631-039e-4651-b25e-be3c97657db8" + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1736358952149299645.a83a5c52-9dcd-42d7-90c1-a10c7a1f9dba", + "resource": { + "resourceType": "Organization", + "id": "1736358952149299645.a83a5c52-9dcd-42d7-90c1-a10c7a1f9dba", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "1st OrgIdentifier" } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "MR" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" - } ], - "type" : { - "coding" : [ { - "code" : "MR" - } ] - }, - "system" : "NIST MPI", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "NIST MPI" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.3.72.5.30.2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1736358952147814512.dd6bae70-a3a1-47d7-8cfc-1f09770b8909" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] }, - "value" : "18547545" + "value": "1st OrgIdentifier" + } + ], + "name": "1st Ordering Facility" + } + }, + { + "fullUrl": "Location/1736358952150265608.da3ab135-86f8-4bb8-acd4-15da11ac1194", + "resource": { + "resourceType": "Location", + "id": "1736358952150265608.da3ab135-86f8-4bb8-acd4-15da11ac1194", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - }, { - "url" : "PD1.10", - "valueIdentifier" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility", - "valueReference" : { - "reference" : "Organization/1710883409781592000.1e33014c-701c-4af1-8d28-5dc91415284c" + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1736358952151517945.21a783d4-3bcd-4373-95fb-02e5eae6dbf4", + "resource": { + "resourceType": "Organization", + "id": "1736358952151517945.21a783d4-3bcd-4373-95fb-02e5eae6dbf4", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "2nd OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1736358952150265608.da3ab135-86f8-4bb8-acd4-15da11ac1194" + } } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier", - "extension" : [ { - "url" : "CX.5", - "valueString" : "SS" - } ] - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "PD1.10" - } ], - "type" : { - "coding" : [ { - "code" : "SS" - } ] + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] }, - "system" : "SSN", - "_system" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "SSN" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.16.840.1.113883.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueString" : "ISO" - } ] + "value": "2nd OrgIdentifier" + } + ], + "name": "2nd Ordering Facility" + } + }, + { + "fullUrl": "Location/1736358952163064929.ab0ea3cf-a4a0-4465-a2fd-bdfa5605da9b", + "resource": { + "resourceType": "Location", + "id": "1736358952163064929.ab0ea3cf-a4a0-4465-a2fd-bdfa5605da9b", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" + } + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1736358952164152679.4e493b07-5ae5-4231-bd62-d5f7f7741fc8", + "resource": { + "resourceType": "Organization", + "id": "1736358952164152679.4e493b07-5ae5-4231-bd62-d5f7f7741fc8", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText" + } + ], + "text": "OriginalText" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier" + } + ] + } + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1736358952163064929.ab0ea3cf-a4a0-4465-a2fd-bdfa5605da9b" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] }, - "value" : "111111111" + "value": "OrgIdentifier" } - }, { - "url" : "PD1.11", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "2.5.1", - "code" : "F", - "display" : "Family only" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "2.5.1", - "code" : "U", - "display" : "Unknown" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70215" - } ], - "version" : "4", - "code" : "N", - "display" : "No Publicity" - } ], - "text" : "TEST" + ], + "name": "Ordering Facility" + } + }, + { + "fullUrl": "Location/1736358952164801277.e7d10d7b-0af7-46be-b2f3-b240a63025fa", + "resource": { + "resourceType": "Location", + "id": "1736358952164801277.e7d10d7b-0af7-46be-b2f3-b240a63025fa", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" } - }, { - "url" : "PD1.12", - "valueString" : "N" - }, { - "url" : "PD1.13", - "valueString" : "20230501102531-0400" - }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1710883409788424000.e01fcecb-2ddd-45c0-addc-473ed8af7845" + ], + "identifier": [ + { + "value": "2.16.840.1.113883.9.11" } - }, { - "url" : "PD1.14", - "valueReference" : { - "reference" : "Organization/1710883409792047000.4217c0aa-3c0c-485c-bc38-29027e6c6e06" + ], + "name": "Hospital A", + "physicalType": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/location-physical-type", + "code": "si" + } + ] + } + } + }, + { + "fullUrl": "Organization/1736358952165738008.f216127f-70e1-45e6-8964-c942162944aa", + "resource": { + "resourceType": "Organization", + "id": "1736358952165738008.f216127f-70e1-45e6-8964-c942162944aa", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", + "valueCoding": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueCodeableConcept": { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "XON.2" + } + ], + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "1", + "code": "1234-5", + "display": "TestText" + }, + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "alt-coding" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", + "valueString": "LN" + } + ], + "system": "http://loinc.org", + "version": "2", + "code": "1234-5", + "display": "TestAltText2" + } + ], + "text": "OriginalText2" + } + } + ], + "system": "LN", + "version": "1", + "code": "1234-5", + "display": "TestText" + } + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", + "valueString": "NameRepCode" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", + "extension": [ + { + "url": "XON.3", + "valueString": "123" + }, + { + "url": "XON.10", + "valueString": "OrgIdentifier" + } + ] } - }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid", - "valueOid" : "urn:oid:8.44.235.1.113883.3.3" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "DNR", - "display" : "Do not resuscitate" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "secondary-alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "2.5.1", - "code" : "N", - "display" : "No directive" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "version" : "4", - "code" : "N", - "display" : "No directive" - } ], - "text" : "TEST" + ], + "identifier": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", + "valueString": "Check Digit2" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "Assigning Authority" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", + "valueString": "2.1.4.1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", + "valueCode": "ISO" + } + ] + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", + "valueCode": "C1" + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", + "valueReference": { + "reference": "Location/1736358952164801277.e7d10d7b-0af7-46be-b2f3-b240a63025fa" + } + } + ], + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MD" + } + ] + }, + "value": "OrgIdentifier" } - }, { - "url" : "PD1.15", - "valueCodeableConcept" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "HL70435" - } ], - "code" : "DNR", - "display" : "Do not resuscitate" - } ] + ], + "name": "Ordering Facility2" + } + }, + { + "fullUrl": "Organization/1736358952166234750.7807e1ff-7076-4c7c-b0eb-3b01cc7948b9", + "resource": { + "resourceType": "Organization", + "id": "1736358952166234750.7807e1ff-7076-4c7c-b0eb-3b01cc7948b9", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "NPI" } - } ] - } ], - "generalPractitioner" : [ { - "reference" : "Organization/1710883409742681000.4c2d54fd-ccd7-415c-be2a-0ef419b787d6" - }, { - "reference" : "Organization/1710883409749713000.7e55a44b-d848-457a-8d25-52b81ce7ffe5" - } ] - } - }, { - "fullUrl" : "Location/1710883409739008000.7d05424b-d62d-4385-b1da-f224dba429bf", - "resource" : { - "resourceType" : "Location", - "id" : "1710883409739008000.7d05424b-d62d-4385-b1da-f224dba429bf", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + ] } - } - }, { - "fullUrl" : "Organization/1710883409742681000.4c2d54fd-ccd7-415c-be2a-0ef419b787d6", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409742681000.4c2d54fd-ccd7-415c-be2a-0ef419b787d6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" + }, + { + "fullUrl": "Practitioner/1736358952169738910.fc9411dc-931a-43fe-bc03-c98d6051775f", + "resource": { + "resourceType": "Practitioner", + "id": "1736358952169738910.fc9411dc-931a-43fe-bc03-c98d6051775f", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "PD1.4NameGiven1" + }, + { + "url": "XCN.4", + "valueString": "PD1.4NameInit1" + } + ] + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "1111111111", + "assigner": { + "reference": "Organization/1736358952166234750.7807e1ff-7076-4c7c-b0eb-3b01cc7948b9" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1710883409739008000.7d05424b-d62d-4385-b1da-f224dba429bf" } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "OrgIdentifier" - } ], - "name" : "Ordering Facility" - } - }, { - "fullUrl" : "Location/1710883409745200000.34c2ceeb-a474-4c7d-8936-0b2c9fcd956a", - "resource" : { - "resourceType" : "Location", - "id" : "1710883409745200000.34c2ceeb-a474-4c7d-8936-0b2c9fcd956a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + ], + "name": [ + { + "family": "PD1.4NameFamily1", + "given": [ + "PD1.4NameGiven1", + "PD1.4NameInit1" + ] + } + ] } - } - }, { - "fullUrl" : "Organization/1710883409749713000.7e55a44b-d848-457a-8d25-52b81ce7ffe5", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409749713000.7e55a44b-d848-457a-8d25-52b81ce7ffe5", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText2" - } ], - "text" : "OriginalText2" + }, + { + "fullUrl": "Organization/1736358952170088748.9c1812ae-e589-44f6-9b3b-fa6dc280bbb4", + "resource": { + "resourceType": "Organization", + "id": "1736358952170088748.9c1812ae-e589-44f6-9b3b-fa6dc280bbb4", + "identifier": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", + "valueString": "HD.1" + } + ], + "value": "NPI" + } + ] + } + }, + { + "fullUrl": "Practitioner/1736358952170981056.50c9e850-57b4-4ed5-b853-602a9ed47608", + "resource": { + "resourceType": "Practitioner", + "id": "1736358952170981056.50c9e850-57b4-4ed5-b853-602a9ed47608", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", + "valueString": "NPI" + } + ] + }, + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner", + "extension": [ + { + "url": "XCN.3", + "valueString": "PD1.4NameGiven2" + }, + { + "url": "XCN.4", + "valueString": "PD1.4NameInit2" + } + ] + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id", + "valueBoolean": true + } + ], + "code": "NPI" + } + ] + }, + "value": "2222222222", + "assigner": { + "reference": "Organization/1736358952170088748.9c1812ae-e589-44f6-9b3b-fa6dc280bbb4" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit2" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1710883409745200000.34c2ceeb-a474-4c7d-8936-0b2c9fcd956a" } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "OrgIdentifier" - } ], - "name" : "Ordering Facility2" - } - }, { - "fullUrl" : "Organization/1710883409778898000.0cd60631-039e-4651-b25e-be3c97657db8", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409778898000.0cd60631-039e-4651-b25e-be3c97657db8", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "University H" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.0" - } ] - } - }, { - "fullUrl" : "Organization/1710883409781592000.1e33014c-701c-4af1-8d28-5dc91415284c", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409781592000.1e33014c-701c-4af1-8d28-5dc91415284c", - "identifier" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.1" - } ], - "value" : "SSA" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "HD.2,HD.3" - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0301", - "code" : "ISO" - } ] - }, - "system" : "urn:ietf:rfc:3986", - "value" : "2.16.840.1.113883.3.184" - } ] - } - }, { - "fullUrl" : "Location/1710883409786390000.3dc26e87-7d9b-425d-b2b4-9dce9ed5706a", - "resource" : { - "resourceType" : "Location", - "id" : "1710883409786390000.3dc26e87-7d9b-425d-b2b4-9dce9ed5706a", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + ], + "name": [ + { + "family": "PD1.4NameFamily2", + "given": [ + "PD1.4NameGiven2", + "PD1.4NameInit2" + ] + } + ] } - } - }, { - "fullUrl" : "Organization/1710883409788424000.e01fcecb-2ddd-45c0-addc-473ed8af7845", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409788424000.e01fcecb-2ddd-45c0-addc-473ed8af7845", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" + }, + { + "fullUrl": "Provenance/1736358952179900296.a5b0c1ed-5a70-4165-994f-8397275cb363", + "resource": { + "resourceType": "Provenance", + "id": "1736358952179900296.a5b0c1ed-5a70-4165-994f-8397275cb363", + "target": [ + { + "reference": "Patient/1736358952171225679.70fba0ff-ac4b-418d-b027-60af204e9d95" + } + ], + "recorded": "2025-01-08T17:55:52Z", + "activity": { + "coding": [ + { + "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation", + "code": "UPDATE" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + ] } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "1st OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1710883409786390000.3dc26e87-7d9b-425d-b2b4-9dce9ed5706a" + } + }, + { + "fullUrl": "Specimen/1736358952181752451.be4b2aea-59d7-42a1-9b3a-82d0b24b7dbf", + "resource": { + "resourceType": "Specimen", + "id": "1736358952181752451.be4b2aea-59d7-42a1-9b3a-82d0b24b7dbf", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", + "valueString": "OBR" } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] - }, - "value" : "1st OrgIdentifier" - } ], - "name" : "1st Ordering Facility" - } - }, { - "fullUrl" : "Location/1710883409790252000.1da4fb62-dee0-4234-9e0c-58282b9077d6", - "resource" : { - "resourceType" : "Location", - "id" : "1710883409790252000.1da4fb62-dee0-4234-9e0c-58282b9077d6", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ], - "identifier" : [ { - "value" : "2.16.840.1.113883.9.11" - } ], - "name" : "Hospital A", - "physicalType" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type", - "code" : "si" - } ] + ] } - } - }, { - "fullUrl" : "Organization/1710883409792047000.4217c0aa-3c0c-485c-bc38-29027e6c6e06", - "resource" : { - "resourceType" : "Organization", - "id" : "1710883409792047000.4217c0aa-3c0c-485c-bc38-29027e6c6e06", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type", - "valueCoding" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueCodeableConcept" : { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field", - "valueString" : "XON.2" - } ], - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" - }, { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "alt-coding" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system", - "valueString" : "LN" - } ], - "system" : "http://loinc.org", - "version" : "2", - "code" : "1234-5", - "display" : "TestAltText" - } ], - "text" : "OriginalText" + }, + { + "fullUrl": "ServiceRequest/1736358952682459320.3bbc54ee-a645-45e4-9cf4-c5555b3459cc", + "resource": { + "resourceType": "ServiceRequest", + "id": "1736358952682459320.3bbc54ee-a645-45e4-9cf4-c5555b3459cc", + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", + "extension": [ + { + "url": "OBR.25", + "valueId": "F" + } + ] + } + ], + "status": "unknown", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "TEST" } - } ], - "system" : "LN", - "version" : "1", - "code" : "1234-5", - "display" : "TestText" + ] + }, + "subject": { + "reference": "Patient/1736358952171225679.70fba0ff-ac4b-418d-b027-60af204e9d95" } - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code", - "valueString" : "NameRepCode" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization", - "extension" : [ { - "url" : "XON.3", - "valueString" : "123" - }, { - "url" : "XON.10", - "valueString" : "2nd OrgIdentifier" - } ] - } ], - "identifier" : [ { - "extension" : [ { - "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit", - "valueString" : "Check Digit" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id", - "valueString" : "Assigning Authority" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id", - "valueString" : "2.1.4.1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type", - "valueCode" : "ISO" - } ] - }, { - "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit", - "valueCode" : "C1" - }, { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location", - "valueReference" : { - "reference" : "Location/1710883409790252000.1da4fb62-dee0-4234-9e0c-58282b9077d6" + } + }, + { + "fullUrl": "DiagnosticReport/1736358952689539033.62e6c6d0-de0d-47bc-9ae4-8d855eb07890", + "resource": { + "resourceType": "DiagnosticReport", + "id": "1736358952689539033.62e6c6d0-de0d-47bc-9ae4-8d855eb07890", + "basedOn": [ + { + "reference": "ServiceRequest/1736358952682459320.3bbc54ee-a645-45e4-9cf4-c5555b3459cc" } - } ], - "type" : { - "coding" : [ { - "system" : "http://terminology.hl7.org/CodeSystem/v2-0203", - "code" : "MD" - } ] + ], + "status": "final", + "code": { + "coding": [ + { + "extension": [ + { + "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", + "valueString": "coding" + } + ], + "code": "TEST" + } + ] }, - "value" : "2nd OrgIdentifier" - } ], - "name" : "2nd Ordering Facility" - } - }, { - "fullUrl" : "Provenance/1710883409817956000.5a715a58-e463-4f21-be0a-6aeedaeb2720", - "resource" : { - "resourceType" : "Provenance", - "id" : "1710883409817956000.5a715a58-e463-4f21-be0a-6aeedaeb2720", - "target" : [ { - "reference" : "Patient/1710883409796711000.40f2dcee-518c-43ea-8de8-558b1a9c6516" - } ], - "recorded" : "2024-03-19T15:23:29Z", - "activity" : { - "coding" : [ { - "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation", - "code" : "UPDATE" - } ] - } - } - }, { - "fullUrl" : "Specimen/1710883409820128000.8822d486-ff25-40bd-9731-47353fa398bd", - "resource" : { - "resourceType" : "Specimen", - "id" : "1710883409820128000.8822d486-ff25-40bd-9731-47353fa398bd", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment", - "valueString" : "OBR" - } ] - } - }, { - "fullUrl" : "ServiceRequest/1710883410203615000.b42d7a87-086a-487d-89d6-36c77f137edb", - "resource" : { - "resourceType" : "ServiceRequest", - "id" : "1710883410203615000.b42d7a87-086a-487d-89d6-36c77f137edb", - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request", - "extension" : [ { - "url" : "OBR.25", - "valueId" : "F" - } ] - } ], - "status" : "unknown", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "TEST" - } ] - }, - "subject" : { - "reference" : "Patient/1710883409796711000.40f2dcee-518c-43ea-8de8-558b1a9c6516" + "subject": { + "reference": "Patient/1736358952171225679.70fba0ff-ac4b-418d-b027-60af204e9d95" + }, + "specimen": [ + { + "reference": "Specimen/1736358952181752451.be4b2aea-59d7-42a1-9b3a-82d0b24b7dbf" + } + ] } } - }, { - "fullUrl" : "DiagnosticReport/1710883410209258000.106605c3-d100-4300-813b-48b7adaac54c", - "resource" : { - "resourceType" : "DiagnosticReport", - "id" : "1710883410209258000.106605c3-d100-4300-813b-48b7adaac54c", - "basedOn" : [ { - "reference" : "ServiceRequest/1710883410203615000.b42d7a87-086a-487d-89d6-36c77f137edb" - } ], - "status" : "final", - "code" : { - "coding" : [ { - "extension" : [ { - "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding", - "valueString" : "coding" - } ], - "code" : "TEST" - } ] - }, - "subject" : { - "reference" : "Patient/1710883409796711000.40f2dcee-518c-43ea-8de8-558b1a9c6516" - }, - "specimen" : [ { - "reference" : "Specimen/1710883409820128000.8822d486-ff25-40bd-9731-47353fa398bd" - } ] - } - } ] + ] } \ No newline at end of file diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.hl7 index 99406692a03..5a2364e6e7a 100644 --- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.hl7 +++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/pd1/pd1-to-patient-pd1-14-1-populated.hl7 @@ -1,4 +1,4 @@ MSH|^~\&#|||||20230501102531-0400||ORU^R01^ORU_R01|12345||2.5.1|||||USA|UNICODE UTF-8 PID|1 -PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier~Ordering Facility2^1234-5&TestText&LN&1234-5&TestAltText2&LN&1&2&OriginalText2^123^Check Digit2^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier||F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400|20230501102531-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 +PD1|C^Small Children Dependent^HL70223^M^Medical Supervision Required^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3~O^Other^HL70223^U^Unknown^HL70223^2.5.1^4^TEST^M^Medical Supervision Required^HL70223^2.5.1^8.44.235.1.113883.3.3|A^Alone^HL70220^F^Family^HL70220^2.5.1^4^TEST^F^Family^HL70220^2.5.1^8.44.235.1.113883.3.3|Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier~Ordering Facility2^1234-5&TestText&LN&1234-5&TestAltText2&LN&1&2&OriginalText2^123^Check Digit2^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^OrgIdentifier|1111111111^PD1.4NameFamily1^PD1.4NameGiven1^PD1.4NameInit1^^^^^NPI^^^^NPI~2222222222^PD1.4NameFamily2^PD1.4NameGiven2^PD1.4NameInit2^^^^^NPI^^^^NPI|F^Full-time student^HL70231^N^Not a student^HL70231^2.5.1^4^TEST^N^Not a student^HL70231^2.5.1^8.44.235.1.113883.3.3|T^TEST^HL70295^P^Prod^HL70295^2.5.1^4^TEST^D^Debug^HL70295^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient has a living will but it is not on file^HL70315^I^No, patient does not have a living will but information was provided^HL70315^2.5.1^4^TEST^U^Unknown^HL70315^2.5.1^8.44.235.1.113883.3.3|F^Yes, patient is a documented donor, but documentation is not on file^HL70316^I^No, patient is not a documented donor, but information was provided^HL70316^2.5.1^4^TEST^U^Unknown^HL70316^2.5.1^8.44.235.1.113883.3.3|N|18547545^^^NIST MPI&2.16.840.1.113883.3.72.5.30.2&ISO^MR^University H&2.16.840.1.113883.3.0&ISO~111111111^^^SSN&2.16.840.1.113883.4.1&ISO^SS^SSA&2.16.840.1.113883.3.184&ISO|F^Family only^HL70215^N^No Publicity^HL70215^2.5.1^4^TEST^U^Unknown^HL70215^2.5.1^8.44.235.1.113883.3.3|N|20230501102531-0400|1st Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^1st OrgIdentifier~2nd Ordering Facility^1234-5&TestText&LN&1234-5&TestAltText&LN&1&2&OriginalText^123^Check Digit^C1^Assigning Authority&2.1.4.1&ISO^MD^Hospital A&2.16.840.1.113883.9.11&ISO^NameRepCode^2nd OrgIdentifier|DNR^Do not resuscitate^HL70435^N^No directive^HL70435^2.5.1^4^TEST^N^No directive^HL70435^2.5.1^8.44.235.1.113883.3.3~DNR^Do not resuscitate^HL70435|A^Active^HL70441^I^Inactive^HL70441^2.5.1^4^TEST^O^Other^HL70441^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400|20230501102531-0400|AUSA^Australian Army^HL70140^AUSFA^Australian Air Force^HL70140^2.5.1^4^TEST^AUSN^Australian Navy^HL70140^2.5.1^8.44.235.1.113883.3.3|E1... E9^Enlisted^HL70141^O1 ... O9^Officers^HL70141^2.5.1^4^TEST^W1 ... W4^Warrent Officers^HL70141^2.5.1^8.44.235.1.113883.3.3|ACT^Active duty^HL70142^DEC^Deceased^HL70142^2.5.1^4^TEST^RET^Retired^HL70142^2.5.1^8.44.235.1.113883.3.3|20230501102531-0400 OBR|1|||TEST|||||||||||||||||||||F \ No newline at end of file