diff --git a/.github/ISSUE_TEMPLATE/platform-epic-template.md b/.github/ISSUE_TEMPLATE/platform-epic-template.md
index f6bd412152e..12c7548c4bb 100644
--- a/.github/ISSUE_TEMPLATE/platform-epic-template.md
+++ b/.github/ISSUE_TEMPLATE/platform-epic-template.md
@@ -8,22 +8,28 @@ assignees: ''
---
## Outcome/Objective
+
## Description
+
## Product Requirement(s)
+
## Use Case(s)
+
## Dependencies
+
## Acceptance criteria
+
## Technical Requirement(s)
\ No newline at end of file
+-->
diff --git a/.github/actions/build-vars/action.yml b/.github/actions/build-vars/action.yml
index 07a7fe0bf3e..35bf7e7914e 100644
--- a/.github/actions/build-vars/action.yml
+++ b/.github/actions/build-vars/action.yml
@@ -170,7 +170,7 @@ runs:
- 'frontend-react/**/!(*.md)'
- '.github/actions/build-vars/action.yml'
- '.github/actions/build-frontend/action.yml'
- - '.github/workflows/frontend_ci.yml'
+ - '.github/workflows/frontend_ci.yml'
terraform:
- 'operations/app/terraform/**/!(*.md)'
- '.github/workflows/validate_terraform.yml'
@@ -215,7 +215,7 @@ runs:
else
echo "has_router_change=${{ steps.filter.outputs.router }}" >> $GITHUB_OUTPUT
fi
-
+
- name: Determine if frontend changed
if: github.event_name != 'schedule'
id: frontend_change_result
@@ -234,7 +234,7 @@ runs:
echo "has_frontend_change=${{ steps.filter.outputs.frontend_react }}" >> $GITHUB_OUTPUT
fi
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
if: inputs.sp-creds != 'false'
with:
creds: ${{ inputs.sp-creds }}
diff --git a/.github/actions/vpn-azure/action.yml b/.github/actions/vpn-azure/action.yml
index faba23787a2..f52373efb58 100644
--- a/.github/actions/vpn-azure/action.yml
+++ b/.github/actions/vpn-azure/action.yml
@@ -63,7 +63,7 @@ runs:
fi
shell: bash
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
if: inputs.sp-creds
with:
creds: ${{ inputs.sp-creds }}
diff --git a/.github/workflows/alert_cert_expire.yml b/.github/workflows/alert_cert_expire.yml
index 430ee3353d4..304a8e37a75 100644
--- a/.github/workflows/alert_cert_expire.yml
+++ b/.github/workflows/alert_cert_expire.yml
@@ -5,6 +5,9 @@ on:
# The workflow runs every day at 8:07am
- cron: "7 13 * * *" #UTC-5
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
check-certificates:
runs-on: ubuntu-latest
@@ -23,7 +26,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Add Runner IP to Key Vault Firewall
run: |
@@ -48,7 +51,7 @@ jobs:
echo "LIST<<$EOF" >> $GITHUB_OUTPUT
cat certificates.json >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
-
+
- name: Slack Notification
if: ${{ steps.format_out.outputs.LIST != '' }}
uses: ./.github/actions/notifications
diff --git a/.github/workflows/alert_resource_costs.yml b/.github/workflows/alert_resource_costs.yml
index 0b16f6491b6..a085af0132e 100644
--- a/.github/workflows/alert_resource_costs.yml
+++ b/.github/workflows/alert_resource_costs.yml
@@ -7,6 +7,7 @@ on:
env:
ALERT_THRESHOLD: 60
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
jobs:
alert_costs:
@@ -23,7 +24,7 @@ jobs:
- name: Login into Azure
uses: ./.github/actions/vpn-azure
with:
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Run Az Cost CLI
id: az-cost
@@ -59,7 +60,7 @@ jobs:
message: |
Resource Group \`${{ matrix.rg }}\` is exceeding the cost threshold and is ${{ steps.env-age.outputs.age_in_days }} days old.
If still running and no longer needed, please [destroy](https://github.com/CDCgov/prime-reportstream/actions/workflows/destroy_demo_environment.yml).
-
+
* **Cost per day: 💲${{ steps.az-cost.outputs.result }}**
* **Provisioned by: \`${{ steps.last-pusher.outputs.username }}\`**
* **Last Change Date: \`${{ steps.last-pusher.outputs.last_change_date }}\`**
diff --git a/.github/workflows/alert_terraform_changes.yml b/.github/workflows/alert_terraform_changes.yml
index c7730e3a01a..0e0bb7392a8 100644
--- a/.github/workflows/alert_terraform_changes.yml
+++ b/.github/workflows/alert_terraform_changes.yml
@@ -4,6 +4,10 @@ on:
schedule:
# The workflow runs every day at 8:20am
- cron: "7 13 * * *" #UTC-5
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
alert_tf_changes:
name: Check Terraform plan for ${{ matrix.env }}
@@ -24,7 +28,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
- name: Collect Terraform stats
diff --git a/.github/workflows/build_hub.yml b/.github/workflows/build_hub.yml
index 4fda37397eb..5727ec498aa 100644
--- a/.github/workflows/build_hub.yml
+++ b/.github/workflows/build_hub.yml
@@ -21,6 +21,7 @@ env:
# These are for CI and not credentials of any system
DB_USER: prime
DB_PASSWORD: changeIT!
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
jobs:
pre_job:
@@ -64,7 +65,7 @@ jobs:
version: ${{ github.run_id }}
upload-build: false
run-integration-tests: true
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Generate New Schema Docs
working-directory: ./
diff --git a/.github/workflows/cleanup_acr_images.yml b/.github/workflows/cleanup_acr_images.yml
index abf1185097a..fe1bb66d412 100644
--- a/.github/workflows/cleanup_acr_images.yml
+++ b/.github/workflows/cleanup_acr_images.yml
@@ -4,6 +4,10 @@ on:
schedule:
- cron: "0 0 * * *" # Runs daily at midnight UTC
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
cleanup_images:
runs-on: ubuntu-latest
@@ -22,7 +26,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: List ${{ matrix.env }} repository images
run: |
@@ -35,7 +39,7 @@ jobs:
- name: Delete old images in ${{ matrix.env }} env
env:
- IMAGE_FILE: ${{ matrix.env }}-images.txt
+ IMAGE_FILE: ${{ matrix.env }}-images.txt
run: |
if [ -e "$IMAGE_FILE" ]; then
while IFS= read -r image_id; do
@@ -49,9 +53,9 @@ jobs:
else
echo "File not found: $IMAGE_FILE"
fi
-
- # Pushing a modified image using an existing tag untags the previously pushed image,
- # resulting in an orphaned (or "dangling") image.
+
+ # Pushing a modified image using an existing tag untags the previously pushed image,
+ # resulting in an orphaned (or "dangling") image.
# The previously pushed image's manifest--and its layer data--remains in the registry.
# They still need to be removed
@@ -65,7 +69,7 @@ jobs:
- name: Delete image manifest in ${{ matrix.env }} env
env:
- UNTAGED_FILE: ${{ matrix.env }}-untaged-images.txt
+ UNTAGED_FILE: ${{ matrix.env }}-untaged-images.txt
run: |
if [ -e "$UNTAGED_FILE" ]; then
while IFS= read -r manifest_id; do
diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml
index b2a44672fde..97f5cc3b0d6 100644
--- a/.github/workflows/deploy_terraform.yml
+++ b/.github/workflows/deploy_terraform.yml
@@ -8,6 +8,9 @@ on:
paths:
- '**.tf'
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: Set Build Environment
@@ -48,7 +51,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
- name: Collect Terraform stats
@@ -101,7 +104,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
- name: Use specific version of Terraform
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd
diff --git a/.github/workflows/deployment_rollback.yml b/.github/workflows/deployment_rollback.yml
index 1b35fdd641b..4fb20811984 100644
--- a/.github/workflows/deployment_rollback.yml
+++ b/.github/workflows/deployment_rollback.yml
@@ -11,6 +11,10 @@ on:
- staging
- test
type: choice
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
DeployToCandidateSlot:
runs-on: ubuntu-latest
@@ -45,7 +49,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Add runner IP to Function App firewall
run: |
diff --git a/.github/workflows/destroy_demo_environment.yml b/.github/workflows/destroy_demo_environment.yml
index a64a2e21f81..b74c11ae406 100644
--- a/.github/workflows/destroy_demo_environment.yml
+++ b/.github/workflows/destroy_demo_environment.yml
@@ -12,6 +12,10 @@ on:
- demo3
type: choice
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
destroy_demo_environment:
name: "Destroy Environment: ${{ github.event.inputs.env_name }}"
@@ -36,7 +40,7 @@ jobs:
uses: ./.github/actions/vpn-azure
with:
env-name: ${{ github.event.inputs.env_name }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
- name: Destroy demo environment
diff --git a/.github/workflows/export_cost_data.yml b/.github/workflows/export_cost_data.yml
index 05969238c83..434fbcf6c96 100644
--- a/.github/workflows/export_cost_data.yml
+++ b/.github/workflows/export_cost_data.yml
@@ -4,6 +4,10 @@ on:
schedule:
# The workflow runs every day at 3PM
- cron: "0 19 * * *" #UTC-5
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
export_cost_data:
name: Export Azure Cost Data to Storage
@@ -27,7 +31,7 @@ jobs:
uses: ./.github/actions/vpn-azure
with:
env-name: ${{ matrix.env }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: false
- name: Run Az Cost CLI
id: az-cost
@@ -76,7 +80,7 @@ jobs:
user: prime
database: prime_data_hub
output-file: result.txt
- query: |
+ query: |
CREATE TABLE IF NOT EXISTS Azure_Costs (
Date date,
Cost NUMERIC(13, 8),
diff --git a/.github/workflows/release_chatops_app.yml b/.github/workflows/release_chatops_app.yml
index 9edac887f3d..89543decad6 100644
--- a/.github/workflows/release_chatops_app.yml
+++ b/.github/workflows/release_chatops_app.yml
@@ -12,6 +12,9 @@ on:
paths:
- "operations/slack-boltjs-app"
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: Set Build Environment
@@ -40,9 +43,9 @@ jobs:
with:
submodules: true
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Set environment variables
shell: bash
diff --git a/.github/workflows/release_to_azure.yml b/.github/workflows/release_to_azure.yml
index aaa7ceaee7b..481834e4db4 100644
--- a/.github/workflows/release_to_azure.yml
+++ b/.github/workflows/release_to_azure.yml
@@ -15,6 +15,9 @@ defaults:
run:
working-directory: prime-router
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: "Set Build Environment"
@@ -33,7 +36,7 @@ jobs:
id: build_vars
uses: ./.github/actions/build-vars
with:
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
build_router_release:
name: "Release: Build Router"
@@ -102,7 +105,7 @@ jobs:
uses: ./.github/actions/vpn-azure
with:
env-name: ${{ needs.pre_job.outputs.env_name }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
- name: Provision demo environment
@@ -138,7 +141,7 @@ jobs:
uses: ./.github/actions/vpn-azure
with:
env-name: ${{ needs.pre_job.outputs.env_name }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Get function app checksum
env:
@@ -194,7 +197,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
dns-ip: ${{ needs.pre_job.outputs.dns_ip }}
- name: Deploy backend
@@ -233,7 +236,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
dns-ip: ${{ needs.pre_job.outputs.dns_ip }}
- name: Deploy frontend
diff --git a/.github/workflows/release_trial_frontend.yml b/.github/workflows/release_trial_frontend.yml
index 9c8df9192c7..10bddf055f9 100644
--- a/.github/workflows/release_trial_frontend.yml
+++ b/.github/workflows/release_trial_frontend.yml
@@ -12,6 +12,9 @@ defaults:
run:
working-directory: prime-router
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: "Set Build Environment"
@@ -76,7 +79,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Deploy frontend
uses: ./.github/actions/deploy-frontend
diff --git a/.github/workflows/restore_databases.yml b/.github/workflows/restore_databases.yml
index 628f82c377e..1d159a31d51 100644
--- a/.github/workflows/restore_databases.yml
+++ b/.github/workflows/restore_databases.yml
@@ -43,6 +43,9 @@ defaults:
run:
working-directory: prime-router
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: "Set Build Environment"
@@ -66,7 +69,7 @@ jobs:
shell: bash
run: |
echo "event_name: ${{ github.event_name }}"
- if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
+ if [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
echo "ENV_NAME=${{ github.event.inputs.backup_from }}" >> $GITHUB_ENV
echo "SINK_ENV_NAME=${{ github.event.inputs.restore_to }}" >> $GITHUB_ENV
echo "RESTORE_IGNORE_BACKUP_AGE=${{ github.event.inputs.restore_ignore_backup_age }}" >> $GITHUB_ENV
@@ -79,7 +82,7 @@ jobs:
echo "BACKUP_AGE_LIMIT_MINS=1440" >> $GITHUB_ENV
echo "DATABASES=[\"prime_data_hub_candidate\"]" >> $GITHUB_ENV
fi
-
+
- name: Set backup and restore variables
shell: bash
run: |
@@ -90,9 +93,9 @@ jobs:
echo "SINK_BACKUP_STORAGE=pdh${{ env.SINK_ENV_NAME }}terraform" >> $GITHUB_ENV
# Login to Azure
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
# Restores will fail if sink server is not pre-expanded
- name: Increase sink server size if necessary
@@ -139,9 +142,9 @@ jobs:
- name: Check out changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Get public ip
shell: bash
@@ -155,7 +158,7 @@ jobs:
--share-name dbbackups --query 'exists' -o tsv --only-show-errors)
if [ $backup_exists == "false" ]; then
lastModified="1970-01-01"
- else
+ else
lastModified=$(az storage directory show --name ${{ env.env_name }}_${{ matrix.db }} --share-name dbbackups \
--account-name ${{ env.sink_backup_storage }} --query 'properties.lastModified' --only-show-errors -o tsv)
fi
@@ -230,9 +233,9 @@ jobs:
- name: Check out changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Get public ip
shell: bash
@@ -293,15 +296,15 @@ jobs:
\echo
setting
table changes:
\echo
UPDATE
- setting
- SET
+ setting
+ SET
values = values || '{"transport": {"host": "10.0.1.100", "port": "22", "type": "SFTP", "filePath": "./staging", "credentialName": null}}'::jsonb
- WHERE
+ WHERE
type = 'RECEIVER'
AND values -> 'transport' ->> 'type' = 'SFTP';
\echo
- SELECT
- relname, n_tup_ins - n_tup_del as rowcount
+ SELECT
+ relname, n_tup_ins - n_tup_del as rowcount
FROM pg_stat_all_tables
WHERE schemaname NOT IN ('pg_catalog', 'information_schema') AND
schemaname !~ '^pg_toast'
diff --git a/.github/workflows/start_test_servers.yml b/.github/workflows/start_test_servers.yml
index 292ef517956..45fcb8279ed 100644
--- a/.github/workflows/start_test_servers.yml
+++ b/.github/workflows/start_test_servers.yml
@@ -2,12 +2,16 @@ name: Start apps in Test server
on:
workflow_dispatch:
- # push:
+ # push:
# branches:
# - feature/9537-schedulemaintenance_DemoandTest
schedule:
- cron: "0 5 * * MON" #UTC-5
- cron: '0 11 * * 1-5'
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
alert_stale_branches:
name: Start Test Subscription apps
@@ -15,11 +19,11 @@ jobs:
steps:
- name: Check Out Changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
-
+
# Login to Azure
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Start postgres
uses: ./.github/actions/Start-PostgresDB
@@ -27,7 +31,7 @@ jobs:
name: "pdhtest-pgsql-flex"
resource-group: prime-data-hub-test
subscription: OCIO-DMZ-C1
-
+
- name: Start function app
uses: ./.github/actions/Start-AzFunction
with:
diff --git a/.github/workflows/stop_test_servers.yml b/.github/workflows/stop_test_servers.yml
index 5f16822a7f9..ba8b476ad28 100644
--- a/.github/workflows/stop_test_servers.yml
+++ b/.github/workflows/stop_test_servers.yml
@@ -2,12 +2,15 @@ name: Stop Apps in Test server
on:
workflow_dispatch:
- # push:
+ # push:
# branches:
# - feature/9537-schedulemaintenance_DemoandTest
schedule:
- cron: "0 5 * * SAT" #UTC-5
- - cron: '0 2 * * 1-5'
+ - cron: '0 2 * * 1-5'
+
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
jobs:
alert_stale_branches:
@@ -16,7 +19,7 @@ jobs:
steps:
- name: Check Out Changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
-
+
- name: Connect to VPN and login to Azure
uses: ./.github/actions/vpn-azure
with:
@@ -25,12 +28,12 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
tf-auth: true
# Login to Azure
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Stop postgres
uses: ./.github/actions/Stop-PostgresDB
@@ -39,7 +42,7 @@ jobs:
resource-group: prime-data-hub-test
subscription: OCIO-DMZ-C1
pass: ${{ secrets.POSTGRESQL_Test_PWD }}
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Stop function app
uses: ./.github/actions/Stop-AzFunction
diff --git a/.github/workflows/sync-translation-schemas.yml b/.github/workflows/sync-translation-schemas.yml
index 45ea3cd7f0c..031ba19bbdc 100644
--- a/.github/workflows/sync-translation-schemas.yml
+++ b/.github/workflows/sync-translation-schemas.yml
@@ -11,6 +11,9 @@ on:
- HL7
required: true
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
sync-schemas:
runs-on: ubuntu-latest
@@ -21,7 +24,7 @@ jobs:
- name: Login into Azure
uses: ./.github/actions/vpn-azure
with:
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Build backend
uses: ./.github/actions/build-backend
diff --git a/.github/workflows/validate_resources.yml b/.github/workflows/validate_resources.yml
index d05b0b5ae09..01c961b0985 100644
--- a/.github/workflows/validate_resources.yml
+++ b/.github/workflows/validate_resources.yml
@@ -14,6 +14,9 @@ on:
schedule:
- cron: "36 3 * * *"
+env:
+ AZURE_CREDENTIALS: '{"clientId":"${{ secrets.AZURE_CLIENT_ID }}","clientSecret":"${{ secrets.AZURE_CLIENT_SECRET }}","subscriptionId":"${{ secrets.AZURE_SUBSCRIPTION_ID }}","tenantId":"${{ secrets.AZURE_TENANT_ID }}"}'
+
jobs:
pre_job:
name: Set Build Environment
@@ -57,7 +60,7 @@ jobs:
ca-cert: ${{ secrets.CA_CRT}}
user-crt: ${{ secrets.USER_CRT }}
user-key: ${{ secrets.USER_KEY }}
- sp-creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ sp-creds: ${{ env.AZURE_CREDENTIALS }}
- name: Restart DNS if failure
uses: ./.github/actions/retry
@@ -103,9 +106,9 @@ jobs:
- name: Check Out Changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Reduce database replica sizes
uses: ./.github/actions/retry
@@ -136,9 +139,9 @@ jobs:
- name: Check Out Changes
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- - uses: azure/login@a65d910e8af852a8061c627c456678983e180302
+ - uses: azure/login@v2
with:
- creds: ${{ secrets.SERVICE_PRINCIPAL_CREDS }}
+ creds: ${{ env.AZURE_CREDENTIALS }}
- name: Fetch VPN DNS IP
id: fetch_vpn_ip
diff --git a/auth/build.gradle.kts b/auth/build.gradle.kts
index 6331fb35e76..7984f5cc768 100644
--- a/auth/build.gradle.kts
+++ b/auth/build.gradle.kts
@@ -48,7 +48,7 @@ configurations.all {
dependencyManagement {
imports {
- mavenBom("com.azure.spring:spring-cloud-azure-dependencies:5.17.1")
+ mavenBom("com.azure.spring:spring-cloud-azure-dependencies:5.18.0")
mavenBom("org.springframework.cloud:spring-cloud-dependencies:2023.0.3")
}
}
diff --git a/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts b/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts
index 2f0673d9892..baa3808c4c4 100644
--- a/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts
+++ b/frontend-react/e2e/pages/authenticated/admin/receiver-status.ts
@@ -4,6 +4,9 @@ import type { RSOrganizationSettings } from "../../../../src/config/endpoints/se
import { RSReceiverStatus } from "../../../../src/hooks/api/UseReceiversConnectionStatus/UseReceiversConnectionStatus";
import {
createStatusTimePeriodData,
+ isConnectionResultMatch,
+ MATCHING_FILTER_CLASSNAME_MAP,
+ MatchingFilter,
SUCCESS_RATE_CLASSNAME_MAP,
SuccessRate,
} from "../../../../src/pages/admin/receiver-dashboard/utils";
@@ -403,9 +406,13 @@ export class AdminReceiverStatusPage extends BasePage {
}
async testReceiverStatusDisplay(isSmoke = false) {
+ const selectedSuccessRate = this.filterFormInputs.successType.value as SuccessRate;
const [startDate, endDate] = this.filterFormInputs.dateRange.value;
const statusRows = this.receiverStatusRowsLocator;
- await expect(statusRows).toHaveCount(new Set(this.receiverStatus?.map((r) => r.receiverId)).size);
+ const timePeriodData = this.timePeriodData.filter(
+ (d) => selectedSuccessRate === SuccessRate.UNDEFINED || d.successRateType === selectedSuccessRate,
+ );
+ await expect(statusRows).toHaveCount(timePeriodData.length);
const expectedDaysText = [
dateShortFormat(startDate),
@@ -415,7 +422,7 @@ export class AdminReceiverStatusPage extends BasePage {
for (const [
i,
{ days, successRate, organizationName, receiverName, successRateType },
- ] of this.timePeriodData.entries()) {
+ ] of timePeriodData.entries()) {
const { title, display, days: daysLoc } = statusRows.nthCustom(i);
const expectedTitleText = this.getExpectedReceiverStatusRowTitle(
@@ -438,9 +445,31 @@ export class AdminReceiverStatusPage extends BasePage {
const daySlices = daysLoc.nthCustom(i).timePeriods;
await expect(daySlices).toHaveCount(timePeriods.length);
- for (const [i, { successRateType }] of timePeriods.entries()) {
+ for (const [i, { successRateType, entries }] of timePeriods.entries()) {
const sliceEle = daySlices.nth(i);
- const expectedClass = new RegExp(SUCCESS_RATE_CLASSNAME_MAP[successRateType]);
+ // filtering status isn't recalculated automatically, so do it here
+ const isResultFilterMatch =
+ this.filterFormInputs.resultMessage.value === ""
+ ? undefined
+ : entries.some((e) =>
+ isConnectionResultMatch(
+ e.connectionCheckResult,
+ this.filterFormInputs.resultMessage.value,
+ ),
+ );
+ const classStr = [
+ SUCCESS_RATE_CLASSNAME_MAP[successRateType],
+ MATCHING_FILTER_CLASSNAME_MAP[
+ isResultFilterMatch == null
+ ? MatchingFilter.NO_FILTER
+ : isResultFilterMatch
+ ? MatchingFilter.FILTER_IS_MATCHED
+ : MatchingFilter.FILTER_NOT_MATCHED
+ ],
+ ]
+ .filter(Boolean)
+ .join(" ");
+ const expectedClass = new RegExp(classStr);
await expect(sliceEle).toBeVisible();
await expect(sliceEle).toHaveClass(expectedClass);
@@ -456,17 +485,15 @@ export class AdminReceiverStatusPage extends BasePage {
}
async testReceiverName() {
- const { organizationName, receiverName, successRate } =
- this.timePeriodData[1];
+ const { organizationName, receiverName, successRate } = this.timePeriodData[1];
const receiversStatusRows = this.receiverStatusRowsLocator;
const expectedReceiverStatusRow = receiversStatusRows.nthCustom(0);
- const expectedReceiverStatusRowTitle =
- this.getExpectedReceiverStatusRowTitle(
- organizationName,
- receiverName,
- successRate,
- );
+ const expectedReceiverStatusRowTitle = this.getExpectedReceiverStatusRowTitle(
+ organizationName,
+ receiverName,
+ successRate,
+ );
await expect(receiversStatusRows).toHaveCount(this.timePeriodData.length);
@@ -491,8 +518,8 @@ export class AdminReceiverStatusPage extends BasePage {
const dayI = 0;
const timePeriodI = 2;
const entryI = 0;
- const {days} = this.timePeriodData[receiverI];
- const {connectionCheckResult} = days[dayI].timePeriods[timePeriodI].entries[entryI];
+ const { days } = this.timePeriodData[receiverI];
+ const { connectionCheckResult } = days[dayI].timePeriods[timePeriodI].entries[entryI];
const receiversStatusRows = this.receiverStatusRowsLocator;
@@ -500,11 +527,11 @@ export class AdminReceiverStatusPage extends BasePage {
resultMessage: connectionCheckResult,
});
- for (const [i, {days}] of this.timePeriodData.entries()) {
+ for (const [i, { days }] of this.timePeriodData.entries()) {
const isRowExpected = i === receiverI;
const row = receiversStatusRows.nthCustom(i);
- for (const [i, {timePeriods}] of days.entries()) {
+ for (const [i, { timePeriods }] of days.entries()) {
const isDayExpected = isRowExpected && i === dayI;
const rowDay = row.days.nthCustom(i);
@@ -537,20 +564,18 @@ export class AdminReceiverStatusPage extends BasePage {
const link = row.title.getByRole("link", { name: organizationName, exact: true }).first();
const expectedUrl = this.getExpectedStatusOrganizationUrl(i);
await expect(link).toBeVisible();
- const p = this.page.route(
- `/api/settings/organizations/${organizationName}`,
- (route) =>
- route.fulfill({
- json: {
- description: "fake",
- filters: [],
- name: organizationName,
- jurisdiction: "fake",
- version: 0,
- createdAt: "",
- createdBy: "",
- } satisfies RSOrganizationSettings,
- }),
+ const p = this.page.route(`/api/settings/organizations/${organizationName}`, (route) =>
+ route.fulfill({
+ json: {
+ description: "fake",
+ filters: [],
+ name: organizationName,
+ jurisdiction: "fake",
+ version: 0,
+ createdAt: "",
+ createdBy: "",
+ } satisfies RSOrganizationSettings,
+ }),
);
await link.click();
await expect(this.page).toHaveURL(expectedUrl);
@@ -624,9 +649,7 @@ export class AdminReceiverStatusPage extends BasePage {
});
await expect(link).toBeVisible();
await link.click();
- await expect(this.page).toHaveURL(
- this.getExpectedStatusReceiverUrl(i),
- );
+ await expect(this.page).toHaveURL(this.getExpectedStatusReceiverUrl(i));
await this.page.goBack();
if (isSmoke && i === 0) {
diff --git a/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts b/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts
index 8cb59f03528..152996d902e 100644
--- a/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts
+++ b/frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts
@@ -1,4 +1,5 @@
import { addDays, endOfDay, startOfDay, subDays } from "date-fns";
+import { SuccessRate } from "../../../../src/pages/admin/receiver-dashboard/utils";
import { AdminReceiverStatusPage } from "../../../pages/authenticated/admin/receiver-status";
import { test as baseTest, expect, logins } from "../../../test";
@@ -36,74 +37,70 @@ const test = baseTest.extend({
},
});
-test.describe("Admin Receiver Status Page",
+test.describe(
+ "Admin Receiver Status Page",
{
// TODO: Investigate Admin Receiver Status Page › functions correctly › receiver statuses › time period modals
- // tag: "@smoke",
- }, () => {
+ tag: "@smoke",
+ },
+ () => {
test.use({ storageState: logins.admin.path });
test.describe("displays correctly", () => {
test.describe("header", () => {
- test(
- "has correct title + heading",
- async ({ adminReceiverStatusPage }) => {
- await adminReceiverStatusPage.testHeader();
- },
- );
+ test("has correct title + heading", async ({ adminReceiverStatusPage }) => {
+ await adminReceiverStatusPage.testHeader();
+ });
});
- test.describe(
- "filters",
- () => {
- test("date range", async ({ adminReceiverStatusPage }) => {
- const { button, label, modalOverlay, valueDisplay } =
- adminReceiverStatusPage.filterFormInputs.dateRange;
- await expect(label).toBeVisible();
- await expect(button).toBeVisible();
- await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText);
- await expect(modalOverlay).toBeHidden();
- });
+ test.describe("filters", () => {
+ test("date range", async ({ adminReceiverStatusPage }) => {
+ const { button, label, modalOverlay, valueDisplay } =
+ adminReceiverStatusPage.filterFormInputs.dateRange;
+ await expect(label).toBeVisible();
+ await expect(button).toBeVisible();
+ await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText);
+ await expect(modalOverlay).toBeHidden();
+ });
- test("receiver name", async ({ adminReceiverStatusPage }) => {
- const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
- adminReceiverStatusPage.filterFormInputs.receiverName;
- await expect(label).toBeVisible();
- await expect(input).toBeVisible();
- await expect(input).toHaveValue(expectedDefaultValue);
-
- await expect(tooltip).toBeHidden();
- await input.hover();
- await expect(tooltip).toBeVisible();
- await expect(tooltip).toHaveText(expectedTooltipText);
- });
+ test("receiver name", async ({ adminReceiverStatusPage }) => {
+ const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
+ adminReceiverStatusPage.filterFormInputs.receiverName;
+ await expect(label).toBeVisible();
+ await expect(input).toBeVisible();
+ await expect(input).toHaveValue(expectedDefaultValue);
+
+ await expect(tooltip).toBeHidden();
+ await input.hover();
+ await expect(tooltip).toBeVisible();
+ await expect(tooltip).toHaveText(expectedTooltipText);
+ });
- test("results message", async ({ adminReceiverStatusPage }) => {
- const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
- adminReceiverStatusPage.filterFormInputs.resultMessage;
- await expect(label).toBeVisible();
- await expect(input).toBeVisible();
- await expect(input).toHaveValue(expectedDefaultValue);
-
- await expect(tooltip).toBeHidden();
- await input.hover();
- await expect(tooltip).toBeVisible();
- await expect(tooltip).toHaveText(expectedTooltipText);
- });
+ test("results message", async ({ adminReceiverStatusPage }) => {
+ const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
+ adminReceiverStatusPage.filterFormInputs.resultMessage;
+ await expect(label).toBeVisible();
+ await expect(input).toBeVisible();
+ await expect(input).toHaveValue(expectedDefaultValue);
+
+ await expect(tooltip).toBeHidden();
+ await input.hover();
+ await expect(tooltip).toBeVisible();
+ await expect(tooltip).toHaveText(expectedTooltipText);
+ });
- test("success type", async ({ adminReceiverStatusPage }) => {
- const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
- adminReceiverStatusPage.filterFormInputs.successType;
- await expect(label).toBeVisible();
- await expect(input).toBeVisible();
- await expect(input).toHaveValue(expectedDefaultValue);
-
- await expect(tooltip).toBeHidden();
- await input.hover();
- await expect(tooltip).toBeVisible();
- await expect(tooltip).toHaveText(expectedTooltipText);
- });
- },
- );
+ test("success type", async ({ adminReceiverStatusPage }) => {
+ const { input, expectedTooltipText, label, tooltip, expectedDefaultValue } =
+ adminReceiverStatusPage.filterFormInputs.successType;
+ await expect(label).toBeVisible();
+ await expect(input).toBeVisible();
+ await expect(input).toHaveValue(expectedDefaultValue);
+
+ await expect(tooltip).toBeHidden();
+ await input.hover();
+ await expect(tooltip).toBeVisible();
+ await expect(tooltip).toHaveText(expectedTooltipText);
+ });
+ });
// Failures here indicate potential misalignment of playwright/browser timezone
test.describe("receiver statuses", () => {
@@ -114,85 +111,72 @@ test.describe("Admin Receiver Status Page",
});
test.describe("has footer", () => {
- test("has footer and explicit scroll to footer and scroll to top",
- async ({
- adminReceiverStatusPage,
- }) => {
- await adminReceiverStatusPage.testFooter();
- });
+ test("has footer and explicit scroll to footer and scroll to top", async ({
+ adminReceiverStatusPage,
+ }) => {
+ await adminReceiverStatusPage.testFooter();
+ });
});
});
test.describe("functions correctly", () => {
test.describe("filters", () => {
- test.describe(
- "date range",
- () => {
- test("works through calendar", async ({ adminReceiverStatusPage }) => {
- const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange;
- const now = new Date();
- const targetFrom = startOfDay(subDays(now, 3));
- const targetTo = addDays(endOfDay(now), 1);
-
- const reqUrl = await adminReceiverStatusPage.updateFilters({
- dateRange: {
- value: [targetFrom, targetTo],
- },
- });
- expect(reqUrl).toBeDefined();
-
- await expect(valueDisplay).toHaveText(
- adminReceiverStatusPage.expectedDateRangeLabelText,
- );
- expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({
- start_date: targetFrom.toISOString(),
- end_date: targetTo.toISOString(),
- });
+ test.describe("date range", () => {
+ test("works through calendar", async ({ adminReceiverStatusPage }) => {
+ const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange;
+ const now = new Date();
+ const targetFrom = startOfDay(subDays(now, 3));
+ const targetTo = addDays(endOfDay(now), 1);
+
+ const reqUrl = await adminReceiverStatusPage.updateFilters({
+ dateRange: {
+ value: [targetFrom, targetTo],
+ },
+ });
+ expect(reqUrl).toBeDefined();
+
+ await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText);
+ expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({
+ start_date: targetFrom.toISOString(),
+ end_date: targetTo.toISOString(),
+ });
+ });
+
+ test("works through textboxes", async ({ adminReceiverStatusPage }) => {
+ const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange;
+ await expect(adminReceiverStatusPage.receiverStatusRowsLocator).not.toHaveCount(0);
+ const now = new Date();
+ const targetFrom = startOfDay(subDays(now, 3));
+ const targetTo = addDays(endOfDay(now), 1);
+
+ const reqUrl = await adminReceiverStatusPage.updateFilters({
+ dateRange: {
+ value: [targetFrom, targetTo],
+ },
});
- test("works through textboxes", async ({ adminReceiverStatusPage }) => {
- const { valueDisplay } = adminReceiverStatusPage.filterFormInputs.dateRange;
- await expect(adminReceiverStatusPage.receiverStatusRowsLocator).not.toHaveCount(0);
- const now = new Date();
- const targetFrom = startOfDay(subDays(now, 3));
- const targetTo = addDays(endOfDay(now), 1);
-
- const reqUrl = await adminReceiverStatusPage.updateFilters({
- dateRange: {
- value: [targetFrom, targetTo],
- },
- });
-
- expect(reqUrl).toBeDefined();
-
- await expect(valueDisplay).toHaveText(
- adminReceiverStatusPage.expectedDateRangeLabelText,
- );
- expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({
- start_date: targetFrom.toISOString(),
- end_date: targetTo.toISOString(),
- });
+ expect(reqUrl).toBeDefined();
+
+ await expect(valueDisplay).toHaveText(adminReceiverStatusPage.expectedDateRangeLabelText);
+ expect(Object.fromEntries(reqUrl!.searchParams.entries())).toMatchObject({
+ start_date: targetFrom.toISOString(),
+ end_date: targetTo.toISOString(),
});
- },
- );
+ });
+ });
- // TODO: revisit after filters have been fixed per ticket #15737
- test.skip("receiver name", async ({adminReceiverStatusPage, isMockDisabled}) => {
- test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'receiver name' test");
- const {organizationName, receiverName, successRate} =
- adminReceiverStatusPage.timePeriodData[1];
+ test("receiver name", async ({ adminReceiverStatusPage }) => {
+ const { organizationName, receiverName, successRate } = adminReceiverStatusPage.timePeriodData[1];
const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator;
+ await expect(receiversStatusRows).toHaveCount(adminReceiverStatusPage.timePeriodData.length);
const defaultReceiversStatusRowsCount = await receiversStatusRows.count();
const expectedReceiverStatusRow = receiversStatusRows.nthCustom(0);
- const expectedReceiverStatusRowTitle =
- adminReceiverStatusPage.getExpectedReceiverStatusRowTitle(
- organizationName,
- receiverName,
- successRate,
- );
-
- expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length);
+ const expectedReceiverStatusRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle(
+ organizationName,
+ receiverName,
+ successRate,
+ );
await adminReceiverStatusPage.updateFilters({
receiverName,
@@ -208,82 +192,33 @@ test.describe("Admin Receiver Status Page",
expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length);
});
- test.skip("result message", async ({adminReceiverStatusPage, isMockDisabled}) => {
- test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'result message' test");
+ test("result message", async ({ adminReceiverStatusPage }) => {
// get first entry's result from all-fail receiver's first day -> third time period
const receiverI = 0;
const dayI = 0;
const timePeriodI = 2;
const entryI = 0;
- const {days} = adminReceiverStatusPage.timePeriodData[receiverI];
- const {connectionCheckResult} = days[dayI].timePeriods[timePeriodI].entries[entryI];
-
- const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator;
+ const { days } = adminReceiverStatusPage.timePeriodData[receiverI];
+ const { connectionCheckResult } = days[dayI].timePeriods[timePeriodI].entries[entryI];
await adminReceiverStatusPage.updateFilters({
resultMessage: connectionCheckResult,
});
- for (const [i, {days}] of adminReceiverStatusPage.timePeriodData.entries()) {
- const row = receiversStatusRows.nthCustom(i);
-
- for (const [i, {timePeriods}] of days.entries()) {
- const rowDay = row.days.nthCustom(i);
-
- for (const [i] of timePeriods.entries()) {
- const rowDayTimePeriod = rowDay.timePeriods.nth(i);
-
- await expect(rowDayTimePeriod).toHaveClass(/success-result-hidden/);
- }
- }
- }
+ await adminReceiverStatusPage.testReceiverStatusDisplay();
await adminReceiverStatusPage.resetFilters();
- // TODO: revisit after filters have been fixed per ticket #15737
- // await adminReceiverStatusPage.testReceiverStatusDisplay();
+ await adminReceiverStatusPage.testReceiverStatusDisplay();
});
- test.skip("success type", async ({ adminReceiverStatusPage, isMockDisabled }) => {
- test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'success type' test");
- const [failRow, ,] = adminReceiverStatusPage.timePeriodData;
- const failRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle(
- failRow.organizationName,
- failRow.receiverName,
- failRow.successRate,
- );
- // const mixedRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle(
- // mixedRow.organizationName,
- // mixedRow.receiverName,
- // mixedRow.successRate,
- // );
-
- const receiversStatusRows = adminReceiverStatusPage.receiverStatusRowsLocator;
- const defaultReceiversStatusRowsCount = await receiversStatusRows.count();
- const expectedRow = receiversStatusRows.nthCustom(0);
-
- expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length);
-
- await adminReceiverStatusPage.updateFilters({
- successType: "ALL_FAILURE",
- });
- let receiversStatusRowsCount = await receiversStatusRows.count();
-
- expect(receiversStatusRowsCount).toBeGreaterThanOrEqual(1);
- await expect(expectedRow.title).toHaveText(failRowTitle);
-
- await adminReceiverStatusPage.updateFilters({
- successType: "MIXED_SUCCESS",
- });
- receiversStatusRowsCount = await receiversStatusRows.count();
- expect(receiversStatusRowsCount).toBeGreaterThanOrEqual(1);
- // TODO: revisit after filters have been fixed per ticket #15737
- // await expect(expectedRow.title).toHaveText(mixedRowTitle);
+ test("success type", async ({ adminReceiverStatusPage }) => {
+ const successTypes = [SuccessRate.ALL_FAILURE, SuccessRate.MIXED_SUCCESS, SuccessRate.UNDEFINED];
- // await adminReceiverStatusPage.resetFilters();
- // receiversStatusRowsCount = await receiversStatusRows.count();
- //
- // expect(receiversStatusRowsCount).toBe(defaultReceiversStatusRowsCount);
+ for (const successType of successTypes) {
+ await adminReceiverStatusPage.updateFilterSuccessType(successType);
+ await adminReceiverStatusPage.testReceiverStatusDisplay();
+ }
});
});
@@ -320,7 +255,7 @@ test.describe("Admin Receiver Status Page",
});
});
- test.skip("time period modals", async ({ adminReceiverStatusPage }) => {
+ test("time period modals", async ({ adminReceiverStatusPage }) => {
const result = await adminReceiverStatusPage.testReceiverTimePeriodModals(true);
expect(result).toBe(true);
});
@@ -336,4 +271,5 @@ test.describe("Admin Receiver Status Page",
});
});
});
- });
+ },
+);
diff --git a/frontend-react/package.json b/frontend-react/package.json
index 70b824c3f22..56fd2bfc740 100644
--- a/frontend-react/package.json
+++ b/frontend-react/package.json
@@ -5,20 +5,20 @@
"type": "module",
"npmClient": "yarn",
"dependencies": {
- "@microsoft/applicationinsights-react-js": "^17.3.3",
- "@microsoft/applicationinsights-web": "^3.3.3",
+ "@microsoft/applicationinsights-react-js": "^17.3.4",
+ "@microsoft/applicationinsights-web": "^3.3.4",
"@okta/okta-react": "^6.9.0",
"@okta/okta-signin-widget": "^7.24.2",
"@rest-hooks/rest": "^3.0.3",
- "@tanstack/react-query": "^5.59.15",
- "@tanstack/react-query-devtools": "^5.59.15",
+ "@tanstack/react-query": "^5.62.2",
+ "@tanstack/react-query-devtools": "^5.62.2",
"@trussworks/react-uswds": "^9.1.0",
"@uswds/uswds": "3.7.1",
- "axios": "^1.7.7",
+ "axios": "^1.7.8",
"classnames": "^2.5.1",
- "date-fns": "^3.6.0",
+ "date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
- "dompurify": "^3.1.7",
+ "dompurify": "^3.2.2",
"export-to-csv-fix-source-map": "^0.2.1",
"focus-trap-react": "^10.3.0",
"history": "^5.3.0",
@@ -31,7 +31,7 @@
"react-idle-timer": "^5.7.2",
"react-loader-spinner": "^6.1.6",
"react-markdown": "^9.0.1",
- "react-query-kit": "^3.3.0",
+ "react-query-kit": "^3.3.1",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0",
"react-scroll-sync": "^0.11.2",
@@ -40,9 +40,9 @@
"rehype-slug": "^5.1.0",
"rest-hooks": "^6.1.7",
"sanitize-html": "^2.13.1",
- "tsx": "^4.19.1",
+ "tsx": "^4.19.2",
"use-deep-compare-effect": "^1.8.1",
- "uuid": "^10.0.0",
+ "uuid": "^11.0.3",
"web-vitals": "^3.4.0"
},
"scripts": {
@@ -113,31 +113,31 @@
"@eslint/js": "^9.13.0",
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
- "@playwright/test": "^1.48.1",
+ "@playwright/test": "^1.49.0",
"@rest-hooks/test": "^7.3.1",
- "@storybook/addon-a11y": "^8.3.6",
- "@storybook/addon-actions": "^8.3.6",
- "@storybook/addon-essentials": "^8.3.6",
- "@storybook/addon-interactions": "^8.3.6",
- "@storybook/addon-links": "^8.3.6",
- "@storybook/blocks": "^8.3.6",
- "@storybook/components": "^8.3.6",
- "@storybook/core-events": "^8.3.6",
+ "@storybook/addon-a11y": "^8.4.6",
+ "@storybook/addon-actions": "^8.4.6",
+ "@storybook/addon-essentials": "^8.4.6",
+ "@storybook/addon-interactions": "^8.4.6",
+ "@storybook/addon-links": "^8.4.6",
+ "@storybook/blocks": "^8.4.6",
+ "@storybook/components": "^8.4.6",
+ "@storybook/core-events": "^8.4.6",
"@storybook/mdx2-csf": "1.1.0",
- "@storybook/react": "^8.3.6",
- "@storybook/react-vite": "^8.3.6",
+ "@storybook/react": "^8.4.6",
+ "@storybook/react-vite": "^8.4.6",
"@storybook/testing-library": "^0.2.2",
- "@storybook/theming": "^8.3.6",
+ "@storybook/theming": "^8.4.6",
"@testing-library/dom": "^10.4.0",
- "@testing-library/jest-dom": "^6.6.2",
+ "@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
- "@types/dompurify": "^3.0.5",
+ "@types/dompurify": "^3.2.0",
"@types/dotenv-flow": "^3.3.3",
"@types/eslint__js": "^8.42.3",
"@types/github-slugger": "^1.3.0",
"@types/html-to-text": "^9.0.4",
- "@types/lodash": "^4.17.12",
+ "@types/lodash": "^4.17.13",
"@types/mdx": "^2.0.13",
"@types/node": "^20.12.5",
"@types/react": "18.3.11",
@@ -146,28 +146,28 @@
"@types/react-scroll-sync": "^0.9.0",
"@types/sanitize-html": "^2.13.0",
"@vitejs/plugin-react": "^4.3.3",
- "@vitest/coverage-istanbul": "^2.1.3",
- "@vitest/ui": "^2.1.3",
+ "@vitest/coverage-istanbul": "^2.1.8",
+ "@vitest/ui": "^2.1.8",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.2",
"browserslist-useragent-regexp": "^4.1.3",
- "chromatic": "^11.12.6",
+ "chromatic": "^11.20.0",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"eslint": "9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
- "eslint-plugin-jest-dom": "^5.4.0",
+ "eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
- "eslint-plugin-playwright": "^2.0.0",
+ "eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
- "eslint-plugin-storybook": "^0.10.1",
+ "eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-testing-library": "^6.4.0",
"eslint-plugin-vitest": "^0.5.4",
- "globals": "^15.11.0",
+ "globals": "^15.13.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
@@ -175,26 +175,26 @@
"msw": "^2.4.11",
"msw-storybook-addon": "^2.0.3",
"npm-run-all": "^4.1.5",
- "otpauth": "^9.3.4",
+ "otpauth": "^9.3.5",
"patch-package": "^8.0.0",
- "postcss": "^8.4.47",
+ "postcss": "^8.4.49",
"prettier": "^3.3.3",
"react-error-boundary": "^4.1.2",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-mdx-toc": "^0.3.1",
- "sass": "^1.80.3",
- "storybook": "^8.3.6",
+ "sass": "^1.81.0",
+ "storybook": "^8.4.6",
"storybook-addon-remix-react-router": "^3.0.1",
"ts-node": "^10.9.2",
- "tslib": "^2.8.0",
- "typescript": "^5.6.3",
- "typescript-eslint": "^8.12.2",
- "undici": "^6.20.1",
+ "tslib": "^2.8.1",
+ "typescript": "^5.7.2",
+ "typescript-eslint": "^8.16.0",
+ "undici": "~6.20.1",
"vite": "^5.4.10",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-svgr": "^4.2.0",
- "vitest": "^2.1.3"
+ "vitest": "^2.1.8"
},
"resolutions": {
"@types/react": "18.3.11",
diff --git a/frontend-react/src/components/Table/TableFilters.tsx b/frontend-react/src/components/Table/TableFilters.tsx
index 226d21ca952..e918228fad4 100644
--- a/frontend-react/src/components/Table/TableFilters.tsx
+++ b/frontend-react/src/components/Table/TableFilters.tsx
@@ -15,6 +15,7 @@ import {
RangeSettingsActionType,
} from "../../hooks/filters/UseDateRange/UseDateRange";
import { FilterManager } from "../../hooks/filters/UseFilterManager/UseFilterManager";
+import { PageSettingsActionType } from "../../hooks/filters/UsePages/UsePages";
import { FeatureName } from "../../utils/FeatureName";
import { appInsights } from "../../utils/TelemetryService/TelemetryService";
@@ -101,6 +102,13 @@ function TableFilters({
type: RangeSettingsActionType.RESET,
payload: { from, to },
});
+
+ // Reset results to first page upon applying filters
+ filterManager.updatePage({
+ type: PageSettingsActionType.SET_PAGE,
+ payload: { page: 1 },
+ });
+
cursorManager?.update({
type: CursorActionType.RESET,
payload: filterManager.sortSettings.order === "DESC" ? to : from,
diff --git a/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx b/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx
index 33e5bbba69e..9a132dd5b05 100644
--- a/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx
+++ b/frontend-react/src/pages/admin/receiver-dashboard/AdminReceiverDashboardPage/AdminReceiverDashboardPage.tsx
@@ -1,13 +1,4 @@
-import {
- GridContainer,
- Label,
- Modal,
- ModalRef,
- Select,
- SiteAlert,
- TextInput,
- Tooltip,
-} from "@trussworks/react-uswds";
+import { GridContainer, Label, Modal, ModalRef, Select, SiteAlert, TextInput, Tooltip } from "@trussworks/react-uswds";
import { endOfDay, startOfDay, subDays } from "date-fns";
import { useCallback, useMemo, useRef, useState } from "react";
@@ -32,22 +23,16 @@ function AdminReceiverDashboardPage() {
end: endOfDay(new Date()),
});
- const [startDate, setStartDate] = useState(
- defaultDatesRef.current.start,
- );
+ const [startDate, setStartDate] = useState(defaultDatesRef.current.start);
const [endDate, setEndDate] = useState(defaultDatesRef.current.end);
// this is the text input box filter
const [filterReceiver, setFilterReceiver] = useState("");
const [filterResultMessage, setFilterResultMessage] = useState("");
- const [filterSuccessState, setFilterSuccessState] = useState(
- SuccessRate.UNDEFINED,
- );
+ const [filterSuccessState, setFilterSuccessState] = useState(SuccessRate.UNDEFINED);
// used to show hide the modal
const modalShowInfoRef = useRef(null);
- const [timePeriodStatuses, setTimePeriodStatuses] = useState<
- RSReceiverStatusParsed[]
- >([]);
+ const [timePeriodStatuses, setTimePeriodStatuses] = useState([]);
const handleTimePeriodClick = useCallback(({ entries }: TimePeriodData) => {
setTimePeriodStatuses(entries);
@@ -70,28 +55,13 @@ function AdminReceiverDashboardPage() {
[endDate, filterResultMessage, results, startDate, timePeriodMinutes],
);
- if (data.length === 0) {
- return No Data
;
- }
-
- const filteredData = filterStatuses(
- data,
- filterReceiver,
- filterSuccessState,
- );
-
- if (filteredData.length === 0) {
- return No data matching filters
;
- }
+ const filteredData = filterStatuses(data, filterReceiver, filterSuccessState);
return (
Receiver status dashboard - Admin
-
+
CRON job results that check if receivers are working.
- Each slot is a 2hr time slice. Colored slots had a check
- run. Clicking on a slot shows details.
+ Each slot is a 2hr time slice. Colored slots had a check run. Clicking on a slot shows details.
{
"Times shown are in YOUR LOCAL timezone. Be aware that receivers and servers may be in different zones."
}
-
-
-
- 0 && (
+
+ )}
+
+
diff --git a/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx b/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx
index b2cbb786713..716d0a6cb13 100644
--- a/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx
+++ b/frontend-react/src/pages/admin/receiver-dashboard/ReceiversStatusesDisplay/ReceiversStatusesDisplay.tsx
@@ -113,26 +113,19 @@ export interface ReceiversStatusesDisplayProps {
* - perday-perslice-column has 4 color states as well
*
*/
-export function ReceiversStatusesDisplay({
- receiverStatuses,
- onTimePeriodClick,
-}: ReceiversStatusesDisplayProps) {
+export function ReceiversStatusesDisplay({ receiverStatuses, onTimePeriodClick }: ReceiversStatusesDisplayProps) {
return (
{receiverStatuses.map((d) => (
-
+
-
+
{d.organizationName}
@@ -148,60 +141,37 @@ export function ReceiversStatusesDisplay({
- {d.days.map(
- ({ day, dayString, timePeriods }) => {
- return (
-
-
- {dateShortFormat(day)}
-
-
- {timePeriods.map(
- (t) => {
- return (
-
- onTimePeriodClick?.(
- t,
- )
- }
- >
- {" "}
-
- );
- },
- )}
-
-
- );
- },
- )}
+ {d.days.map(({ day, dayString, timePeriods }) => {
+ return (
+
+
+ {dateShortFormat(day)}
+
+
+ {timePeriods.map((t) => {
+ return (
+ onTimePeriodClick?.(t)
+ }
+ >
+ {" "}
+
+ );
+ })}
+
+
+ );
+ })}
diff --git a/frontend-react/src/pages/admin/receiver-dashboard/utils.ts b/frontend-react/src/pages/admin/receiver-dashboard/utils.ts
index 4638f09fadc..3aee9572a76 100644
--- a/frontend-react/src/pages/admin/receiver-dashboard/utils.ts
+++ b/frontend-react/src/pages/admin/receiver-dashboard/utils.ts
@@ -32,11 +32,7 @@ export const MATCHING_FILTER_CLASSNAME_MAP = {
* build the dictionary with a special path+key
* @param dataIn
*/
-export const sortStatusData = <
- T extends RSReceiverStatus[] | RSReceiverStatusParsed[],
->(
- dataIn: T,
-): T => {
+export const sortStatusData = (dataIn: T): T => {
const data = structuredClone(dataIn);
const { orgNameMaxLength, receiverNameMaxLength } = data.reduce(
(prev, curr) => {
@@ -58,23 +54,17 @@ export const sortStatusData = <
);
// sorting by organizationName, then receiverName, then connectionCheckStartedAt
- data.sort(
- (
- d1: RSReceiverStatus | RSReceiverStatusParsed,
- d2: RSReceiverStatus | RSReceiverStatusParsed,
- ) => {
- // ideally the shape of this type will change so that all receivers, regardless if any status data was found, will get sorted
- const [sortStrA, sortStrB] = [d1, d2].map(
- (x) =>
- `${x.organizationName.padEnd(orgNameMaxLength, "-")}${x.receiverName.padEnd(receiverNameMaxLength, "-")}${new Date(x.connectionCheckStartedAt || Date.now()).toISOString()}`,
- );
+ data.sort((d1: RSReceiverStatus | RSReceiverStatusParsed, d2: RSReceiverStatus | RSReceiverStatusParsed) => {
+ // ideally the shape of this type will change so that all receivers, regardless if any status data was found, will get sorted
+ const [sortStrA, sortStrB] = [d1, d2].map(
+ (x) =>
+ `${x.organizationName.padEnd(orgNameMaxLength, "-")}${x.receiverName.padEnd(receiverNameMaxLength, "-")}${new Date(x.connectionCheckStartedAt || Date.now()).toISOString()}`,
+ );
- const result =
- sortStrA > sortStrB ? 1 : sortStrA < sortStrB ? -1 : 0;
+ const result = sortStrA > sortStrB ? 1 : sortStrA < sortStrB ? -1 : 0;
- return result;
- },
- );
+ return result;
+ });
return data;
};
@@ -103,33 +93,24 @@ export function createStatusTimePeriodData({
}): ReceiverStatusTimePeriod[] {
const inter = interval(startDate, endDate, { assertPositive: true });
const numTimePeriodsPerDay = (24 * 60) / timePeriodMinutes;
- if (numTimePeriodsPerDay % 1 !== 0)
- throw new Error("Invalid time period duration");
+ if (numTimePeriodsPerDay % 1 !== 0) throw new Error("Invalid time period duration");
- const timePeriodLabels = Array.from(Array(numTimePeriodsPerDay).keys()).map(
- (_, i) =>
- addMinutes(
- startDate,
- (i + 1) * timePeriodMinutes,
- ).toLocaleTimeString(),
+ const timePeriodLabels = Array.from(Array(numTimePeriodsPerDay).keys()).map((_, i) =>
+ addMinutes(startDate, (i + 1) * timePeriodMinutes).toLocaleTimeString(),
);
const sortedData = sortStatusData(data).map((d) => ({
...d,
connectionCheckCompletedAt: new Date(d.connectionCheckCompletedAt),
connectionCheckStartedAt: new Date(d.connectionCheckStartedAt),
}));
- const receiverIds = Array.from(
- new Set(sortedData.map((d) => d.receiverId)),
- );
+ const receiverIds = Array.from(new Set(sortedData.map((d) => d.receiverId)));
return receiverIds.map((id) => {
const entries = sortedData.filter((d) => d.receiverId === id);
const { organizationName, receiverName } = entries[0];
const days = eachDayOfInterval(inter).map((day) => {
const dayEntries = entries.filter(
- (e) =>
- e.connectionCheckCompletedAt.toLocaleDateString() ===
- day.toLocaleDateString(),
+ (e) => e.connectionCheckCompletedAt.toLocaleDateString() === day.toLocaleDateString(),
);
const dayString = day.toLocaleDateString();
const timePeriods = timePeriodLabels.map((time) => {
@@ -137,26 +118,18 @@ export function createStatusTimePeriodData({
const end = addMinutes(start, timePeriodMinutes);
const timePeriodEntries = dayEntries.filter((e) => {
- return (
- e.connectionCheckCompletedAt >= start &&
- e.connectionCheckCompletedAt < end
- );
+ return e.connectionCheckCompletedAt >= start && e.connectionCheckCompletedAt < end;
});
const agg = timePeriodEntries.reduce(
- (
- agg,
- { connectionCheckSuccessful, connectionCheckResult },
- ) => {
+ (agg, { connectionCheckSuccessful, connectionCheckResult }) => {
if (connectionCheckSuccessful) agg.success += 1;
else {
agg.fail += 1;
- if (
- connectionCheckResult
- .toLowerCase()
- .includes(filterResultMessage.toLowerCase())
- ) {
- agg.isResultFilterMatch = true;
- }
+ if (!agg.isResultFilterMatch)
+ agg.isResultFilterMatch = isConnectionResultMatch(
+ connectionCheckResult,
+ filterResultMessage,
+ );
}
return agg;
},
@@ -188,6 +161,7 @@ export function createStatusTimePeriodData({
successRateType,
matchingFilter,
entries: timePeriodEntries,
+ q: filterResultMessage,
};
});
return {
@@ -208,10 +182,7 @@ export function createStatusTimePeriodData({
},
{ success: 0, fail: 0 },
);
- const successRate =
- !!success || !!fail
- ? Math.round((100 * success) / (success + fail))
- : 0;
+ const successRate = !!success || !!fail ? Math.round((100 * success) / (success + fail)) : 0;
const successRateType =
!success && !fail
? SuccessRate.UNDEFINED
@@ -270,12 +241,14 @@ export function filterStatuses(
) {
return statuses.filter(({ receiverName, successRateType }) => {
const result =
- (!receiverNameLike ||
- receiverName.toLowerCase().includes(receiverNameLike)) &&
- (!successRateLike ||
- successRateLike === SuccessRate.UNDEFINED ||
- successRateType === successRateLike);
+ (!receiverNameLike || receiverName.toLowerCase().includes(receiverNameLike)) &&
+ (!successRateLike || successRateLike === SuccessRate.UNDEFINED || successRateType === successRateLike);
return result;
});
}
+
+export function isConnectionResultMatch(result: string, query: string) {
+ if (query === "") return true;
+ return result.toLowerCase().includes(query.toLowerCase());
+}
diff --git a/frontend-react/yarn.lock b/frontend-react/yarn.lock
index 5f5f23f5c2e..05b41cdfdbb 100644
--- a/frontend-react/yarn.lock
+++ b/frontend-react/yarn.lock
@@ -135,17 +135,17 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-string-parser@npm:^7.25.7":
- version: 7.25.7
- resolution: "@babel/helper-string-parser@npm:7.25.7"
- checksum: 0835fda5efe02cdcb5144a939b639acc017ba4aa1cc80524b44032ddb714080d3e40e8f0d3240832b7bd86f5513f0b63d4fe77d8fc52d8c8720ae674182c0753
+"@babel/helper-string-parser@npm:^7.25.9":
+ version: 7.25.9
+ resolution: "@babel/helper-string-parser@npm:7.25.9"
+ checksum: 6435ee0849e101681c1849868278b5aee82686ba2c1e27280e5e8aca6233af6810d39f8e4e693d2f2a44a3728a6ccfd66f72d71826a94105b86b731697cdfa99
languageName: node
linkType: hard
-"@babel/helper-validator-identifier@npm:^7.25.7":
- version: 7.25.7
- resolution: "@babel/helper-validator-identifier@npm:7.25.7"
- checksum: 062f55208deead4876eb474dc6fd55155c9eada8d0a505434de3b9aa06c34195562e0f3142b22a08793a38d740238efa2fe00ff42956cdcb8ac03f0b6c542247
+"@babel/helper-validator-identifier@npm:^7.25.7, @babel/helper-validator-identifier@npm:^7.25.9":
+ version: 7.25.9
+ resolution: "@babel/helper-validator-identifier@npm:7.25.9"
+ checksum: 5b85918cb1a92a7f3f508ea02699e8d2422fe17ea8e82acd445006c0ef7520fbf48e3dbcdaf7b0a1d571fc3a2715a29719e5226636cb6042e15fe6ed2a590944
languageName: node
linkType: hard
@@ -178,14 +178,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.25.8":
- version: 7.25.8
- resolution: "@babel/parser@npm:7.25.8"
+"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.25.7, @babel/parser@npm:^7.25.8":
+ version: 7.26.3
+ resolution: "@babel/parser@npm:7.26.3"
dependencies:
- "@babel/types": ^7.25.8
+ "@babel/types": ^7.26.3
bin:
parser: ./bin/babel-parser.js
- checksum: c33f6d26542f156927c5dbe131265c791177d271e582338e960f803903086ec5c152bf25deae5f4c061b7bee14dc0b5fd2882ccb5a21c16ee0738d24fcc0406e
+ checksum: e2bff2e9fa6540ee18fecc058bc74837eda2ddcecbe13454667314a93fc0ba26c1fb862c812d84f6d5f225c3bd8d191c3a42d4296e287a882c4e1f82ff2815ff
languageName: node
linkType: hard
@@ -255,21 +255,13 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.24.0, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.8":
- version: 7.25.8
- resolution: "@babel/types@npm:7.25.8"
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.9, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.4, @babel/types@npm:^7.25.7, @babel/types@npm:^7.25.8, @babel/types@npm:^7.26.3":
+ version: 7.26.3
+ resolution: "@babel/types@npm:7.26.3"
dependencies:
- "@babel/helper-string-parser": ^7.25.7
- "@babel/helper-validator-identifier": ^7.25.7
- to-fast-properties: ^2.0.0
- checksum: 93d84858e820dbfa0fc4882b3ba6a421544d224ee61455a58eed0af9fc3518b30dc2166b8ba48cdd2e91083c5885ed773c36acf46d177b7b1fad9c35b6eb7639
- languageName: node
- linkType: hard
-
-"@base2/pretty-print-object@npm:1.0.1":
- version: 1.0.1
- resolution: "@base2/pretty-print-object@npm:1.0.1"
- checksum: 1e8a5af578037a9d47d72f815983f9e4efb038e5f03e7635fc893194c5daa723215d71af33267893a9b618656c8eaea7be931b1c063c9b066a40994be0d23545
+ "@babel/helper-string-parser": ^7.25.9
+ "@babel/helper-validator-identifier": ^7.25.9
+ checksum: 195f428080dcaadbcecc9445df7f91063beeaa91b49ccd78f38a5af6b75a6a58391d0c6614edb1ea322e57889a1684a0aab8e667951f820196901dd341f931e9
languageName: node
linkType: hard
@@ -347,6 +339,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/aix-ppc64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/aix-ppc64@npm:0.24.0"
+ conditions: os=aix & cpu=ppc64
+ languageName: node
+ linkType: hard
+
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
@@ -361,6 +360,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/android-arm64@npm:0.24.0"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
@@ -375,6 +381,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-arm@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/android-arm@npm:0.24.0"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
@@ -389,6 +402,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/android-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/android-x64@npm:0.24.0"
+ conditions: os=android & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
@@ -403,6 +423,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/darwin-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/darwin-arm64@npm:0.24.0"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
@@ -417,6 +444,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/darwin-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/darwin-x64@npm:0.24.0"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/freebsd-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
@@ -431,6 +465,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/freebsd-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/freebsd-arm64@npm:0.24.0"
+ conditions: os=freebsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/freebsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-x64@npm:0.21.5"
@@ -445,6 +486,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/freebsd-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/freebsd-x64@npm:0.24.0"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm64@npm:0.21.5"
@@ -459,6 +507,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-arm64@npm:0.24.0"
+ conditions: os=linux & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm@npm:0.21.5"
@@ -473,6 +528,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-arm@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-arm@npm:0.24.0"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ia32@npm:0.21.5"
@@ -487,6 +549,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-ia32@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-ia32@npm:0.24.0"
+ conditions: os=linux & cpu=ia32
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-loong64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-loong64@npm:0.21.5"
@@ -501,6 +570,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-loong64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-loong64@npm:0.24.0"
+ conditions: os=linux & cpu=loong64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-mips64el@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-mips64el@npm:0.21.5"
@@ -515,6 +591,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-mips64el@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-mips64el@npm:0.24.0"
+ conditions: os=linux & cpu=mips64el
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ppc64@npm:0.21.5"
@@ -529,6 +612,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-ppc64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-ppc64@npm:0.24.0"
+ conditions: os=linux & cpu=ppc64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-riscv64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-riscv64@npm:0.21.5"
@@ -543,6 +633,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-riscv64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-riscv64@npm:0.24.0"
+ conditions: os=linux & cpu=riscv64
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-s390x@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-s390x@npm:0.21.5"
@@ -557,6 +654,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-s390x@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-s390x@npm:0.24.0"
+ conditions: os=linux & cpu=s390x
+ languageName: node
+ linkType: hard
+
"@esbuild/linux-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-x64@npm:0.21.5"
@@ -571,6 +675,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/linux-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/linux-x64@npm:0.24.0"
+ conditions: os=linux & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/netbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/netbsd-x64@npm:0.21.5"
@@ -585,6 +696,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/netbsd-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/netbsd-x64@npm:0.24.0"
+ conditions: os=netbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/openbsd-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/openbsd-arm64@npm:0.23.1"
@@ -592,6 +710,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/openbsd-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/openbsd-arm64@npm:0.24.0"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/openbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/openbsd-x64@npm:0.21.5"
@@ -606,6 +731,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/openbsd-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/openbsd-x64@npm:0.24.0"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/sunos-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/sunos-x64@npm:0.21.5"
@@ -620,6 +752,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/sunos-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/sunos-x64@npm:0.24.0"
+ conditions: os=sunos & cpu=x64
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-arm64@npm:0.21.5"
@@ -634,6 +773,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-arm64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/win32-arm64@npm:0.24.0"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-ia32@npm:0.21.5"
@@ -648,6 +794,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-ia32@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/win32-ia32@npm:0.24.0"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
"@esbuild/win32-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-x64@npm:0.21.5"
@@ -662,6 +815,13 @@ __metadata:
languageName: node
linkType: hard
+"@esbuild/win32-x64@npm:0.24.0":
+ version: 0.24.0
+ resolution: "@esbuild/win32-x64@npm:0.24.0"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
@@ -841,21 +1001,19 @@ __metadata:
languageName: node
linkType: hard
-"@joshwooding/vite-plugin-react-docgen-typescript@npm:0.3.0":
- version: 0.3.0
- resolution: "@joshwooding/vite-plugin-react-docgen-typescript@npm:0.3.0"
+"@joshwooding/vite-plugin-react-docgen-typescript@npm:0.4.2":
+ version: 0.4.2
+ resolution: "@joshwooding/vite-plugin-react-docgen-typescript@npm:0.4.2"
dependencies:
- glob: ^7.2.0
- glob-promise: ^4.2.0
magic-string: ^0.27.0
react-docgen-typescript: ^2.2.2
peerDependencies:
typescript: ">= 4.3.x"
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 3fe2dc68dcb43920cc08bc5cc2937953bed1080e9c453dc3f513156b9a862fe6af0cda94b70272a4844a27964070129f8d0d31056211b1486a8fd9f6e1c20559
+ checksum: 0841d93df4ed4230b9e96a38cab044b5dbc6acba567dcbaecb9aa035b22b67b6b234c90b13d963f5a8104a5a03e56932677e37f3278275fbaeedede7c2633cbb
languageName: node
linkType: hard
@@ -968,70 +1126,70 @@ __metadata:
languageName: node
linkType: hard
-"@microsoft/applicationinsights-analytics-js@npm:3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-analytics-js@npm:3.3.3"
+"@microsoft/applicationinsights-analytics-js@npm:3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-analytics-js@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: 78aaadbe6ae32ce04f1ce45588536c6f48af88b4c92e406f5948efb178ddaca696700d6c3c84a819e77004a7112c7ee0d15006b6303cc5bdbe9929a543038cfb
+ checksum: 37ee8eab5946fb2994e7a73e1dc90357dbeac7d03357a4cb570707ba1b34b0dc4f8fb0c4022e16f147616e0b293ba49c2eb7c09cf68bebda1af13f5d3a3bfaa5
languageName: node
linkType: hard
-"@microsoft/applicationinsights-cfgsync-js@npm:3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-cfgsync-js@npm:3.3.3"
+"@microsoft/applicationinsights-cfgsync-js@npm:3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-cfgsync-js@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: 21c9b82fcdb53d1b3c2d32cc29682187ee20108a23ff7b79faa5c10148a79e7ee2f655f84ad5b964283a1bf4080edba053d26fb3589402934e8d8359f9ff6840
+ checksum: 9ecf937908df68cbe50ff983f537c2c16d1659b6440400d8139f6262c971ca039adaf8c7c27a99c1d008028a9e4d774456ce0fd4e332cd8abd7b26edfbf65d62
languageName: node
linkType: hard
-"@microsoft/applicationinsights-channel-js@npm:3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-channel-js@npm:3.3.3"
+"@microsoft/applicationinsights-channel-js@npm:3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-channel-js@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: b42543261ff7f444bd945d4c5d9522626267c8e194f1b19da321bcc99e8227f271d91a399a3b342825bd497ee7aceae66f29fa2c04026e0f8823dd6ca1d9f1b8
+ checksum: df1c3415a48cb399bc1c2d31d3221479c164a1ece31b836feda7e1f619fd28b7b2f09718523f5480e16f7c637ab8752ed1d56c7859c1c16cef2d85871aebe26a
languageName: node
linkType: hard
-"@microsoft/applicationinsights-common@npm:3.3.3, @microsoft/applicationinsights-common@npm:^3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-common@npm:3.3.3"
+"@microsoft/applicationinsights-common@npm:3.3.4, @microsoft/applicationinsights-common@npm:^3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-common@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: a4be6a821bff448b17e1a855a61ede55aec31ae9a8c16bfc62fcee3cfdf072e59abf80890e7a7239472ece53f85630b55141cc13e60228c2da4ea3f862cddadb
+ checksum: 42af4d6a1165327e291c7ebaee5958ba430996a07a9bcd30531cae4e57c4d768750fcbf6c89a500ece8bc68a44800caecdefa84a25c951f6497021a3de0629b3
languageName: node
linkType: hard
-"@microsoft/applicationinsights-core-js@npm:3.3.3, @microsoft/applicationinsights-core-js@npm:^3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-core-js@npm:3.3.3"
+"@microsoft/applicationinsights-core-js@npm:3.3.4, @microsoft/applicationinsights-core-js@npm:^3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-core-js@npm:3.3.4"
dependencies:
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
@@ -1039,47 +1197,47 @@ __metadata:
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: 1fcbbfeb4e7e91fc9b4648af84606bd431cb985e1a49f3c8b200c51c1bd51d94eab82bdf75829ea2cd8774de2a8546c0ffa38e6bbd9407d1bf284d8c3706e368
+ checksum: c311b25d7004cde84a89aeceda6efb4b668dd5e25afac863607a2f9eed0bac1668534b9f7d8014314118069b1de78107b777828755d7bd071dcdfd0daf4ed258
languageName: node
linkType: hard
-"@microsoft/applicationinsights-dependencies-js@npm:3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-dependencies-js@npm:3.3.3"
+"@microsoft/applicationinsights-dependencies-js@npm:3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-dependencies-js@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: 5b48cd4c66d9454c0aee6e6805dcc22e2d86d663cb618c4f923e7aac3c9ee355e8acd82459559be45124abe4a620b3a592f51a5ee34f9fd8be6961451fc16f2d
+ checksum: 6ef58858d2960fd800f073f9569666083cddf43729201d01e32f7528a50342a2e7896579f2c4e564f1ff488176239d7703548941c34b869f0cca534e291d1a77
languageName: node
linkType: hard
-"@microsoft/applicationinsights-properties-js@npm:3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-properties-js@npm:3.3.3"
+"@microsoft/applicationinsights-properties-js@npm:3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-properties-js@npm:3.3.4"
dependencies:
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: eba05e2160a1b3aef89653185a593f33ac28b3142df5ecae7aa2d19d17c7a31ffd08af4bd498892dda6bed0b3e1ee5b79d87e216f60328673d4c4a7138f38e94
+ checksum: 25bb57c66c5714bfdb50db6adf87782d37bdf51c7656d34be45b9ccdce411f78672f3c26df45862c28d7a5bdbb6def3f385f3a5a20f134f4884d7d0edc4b8056
languageName: node
linkType: hard
-"@microsoft/applicationinsights-react-js@npm:^17.3.3":
- version: 17.3.3
- resolution: "@microsoft/applicationinsights-react-js@npm:17.3.3"
+"@microsoft/applicationinsights-react-js@npm:^17.3.4":
+ version: 17.3.4
+ resolution: "@microsoft/applicationinsights-react-js@npm:17.3.4"
dependencies:
- "@microsoft/applicationinsights-common": ^3.3.3
- "@microsoft/applicationinsights-core-js": ^3.3.3
+ "@microsoft/applicationinsights-common": ^3.3.4
+ "@microsoft/applicationinsights-core-js": ^3.3.4
"@microsoft/applicationinsights-shims": ^3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
@@ -1087,7 +1245,7 @@ __metadata:
history: ">= 4.10.1"
react: ">= 17.0.1"
tslib: "*"
- checksum: 0492982f32ee9eca90a93403c0e552721cc1040b3ec013b6b82d9f0ddc26b8b782d89780a9fb3c919cd28773b6e06804b154259bb6b96175f52d2a193c082056
+ checksum: 5f321eafb6a3cbf225b8c12322dfad00374c3f59056e97fb9b56ceaac361b5ce3a9a9e002de1bb557041b728b93e489cd15edd94cd299ce4519ebd139f8477b9
languageName: node
linkType: hard
@@ -1100,24 +1258,24 @@ __metadata:
languageName: node
linkType: hard
-"@microsoft/applicationinsights-web@npm:^3.3.3":
- version: 3.3.3
- resolution: "@microsoft/applicationinsights-web@npm:3.3.3"
- dependencies:
- "@microsoft/applicationinsights-analytics-js": 3.3.3
- "@microsoft/applicationinsights-cfgsync-js": 3.3.3
- "@microsoft/applicationinsights-channel-js": 3.3.3
- "@microsoft/applicationinsights-common": 3.3.3
- "@microsoft/applicationinsights-core-js": 3.3.3
- "@microsoft/applicationinsights-dependencies-js": 3.3.3
- "@microsoft/applicationinsights-properties-js": 3.3.3
+"@microsoft/applicationinsights-web@npm:^3.3.4":
+ version: 3.3.4
+ resolution: "@microsoft/applicationinsights-web@npm:3.3.4"
+ dependencies:
+ "@microsoft/applicationinsights-analytics-js": 3.3.4
+ "@microsoft/applicationinsights-cfgsync-js": 3.3.4
+ "@microsoft/applicationinsights-channel-js": 3.3.4
+ "@microsoft/applicationinsights-common": 3.3.4
+ "@microsoft/applicationinsights-core-js": 3.3.4
+ "@microsoft/applicationinsights-dependencies-js": 3.3.4
+ "@microsoft/applicationinsights-properties-js": 3.3.4
"@microsoft/applicationinsights-shims": 3.0.1
"@microsoft/dynamicproto-js": ^2.0.3
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-utils": ">= 0.11.3 < 2.x"
peerDependencies:
tslib: ">= 1.0.0"
- checksum: 47f84a7e30d89156e68d9966f6a6414416a020e6277c37de71aebc08057702a630e6a6cc146f233a8fadaf7707c9ae49c04e50ef6068a4dafbd8e775bf20bc56
+ checksum: 68b1f2388f3167a60316f2944a5275fa7fe0275d0fe14d48c2b4082439e823d7b855f12169d92e9ea9663b73356b47734a860d94e7ce8793006db59a2a7e56e2
languageName: node
linkType: hard
@@ -1476,14 +1634,14 @@ __metadata:
languageName: node
linkType: hard
-"@playwright/test@npm:^1.48.1":
- version: 1.48.1
- resolution: "@playwright/test@npm:1.48.1"
+"@playwright/test@npm:^1.49.0":
+ version: 1.49.0
+ resolution: "@playwright/test@npm:1.49.0"
dependencies:
- playwright: 1.48.1
+ playwright: 1.49.0
bin:
playwright: cli.js
- checksum: 3f3f32dadeea9da4b9f835ba41d6bfabbd4c8d322bbba059250cb7bbdf2ae8fd32d547f64cef0bda492dff32128b4d4d802422525995570ebb57e62605c0557f
+ checksum: f8477aa61d59fd22c6161c48221ab246340dc37bbe2804e1a7d1be8cbd0fd861747fcb7ca559f4bc7328226ff2c90ccb7efa588a7d7d7829f3e57902b28fe39a
languageName: node
linkType: hard
@@ -1736,21 +1894,21 @@ __metadata:
languageName: node
linkType: hard
-"@storybook/addon-a11y@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-a11y@npm:8.3.6"
+"@storybook/addon-a11y@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-a11y@npm:8.4.6"
dependencies:
- "@storybook/addon-highlight": 8.3.6
+ "@storybook/addon-highlight": 8.4.6
axe-core: ^4.2.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 3a6b79dd65afc1c5cea2f07e7b41bd743ac0a9821347cbc5d608152bf48d77033c564b6e27c409e98ff2a0c2739883a9346def7f7f2223bef8a9c40d8004f4cd
+ storybook: ^8.4.6
+ checksum: 11e35718ec11d575fe3c44e83967cf23d9824ed0fdd3b7574626fe48e8aded7fb0b5d32a37e463bcb8f835d0b1a4bf64fb90ae7481fd7144cb3370ad841811e8
languageName: node
linkType: hard
-"@storybook/addon-actions@npm:8.3.6, @storybook/addon-actions@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-actions@npm:8.3.6"
+"@storybook/addon-actions@npm:8.4.6, @storybook/addon-actions@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-actions@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
"@types/uuid": ^9.0.1
@@ -1758,275 +1916,245 @@ __metadata:
polished: ^4.2.2
uuid: ^9.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 3a663297494d39d846a50d0b372977843a0cfcbb77b622cd499a95274c404e17817d324f90dc8fa22a74040200276d124719de8a703b19a3e79b98e08ed6d403
+ storybook: ^8.4.6
+ checksum: 93a453321f14eddf7f58e4c235e6ebbee5a9b680453834cc5593ff59d7607d9e99c53d5fac9bf59f6072c3a6f64a5f53174078c9e6c9054b125dc4c25be43842
languageName: node
linkType: hard
-"@storybook/addon-backgrounds@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-backgrounds@npm:8.3.6"
+"@storybook/addon-backgrounds@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-backgrounds@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
memoizerific: ^1.11.3
ts-dedent: ^2.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 91a8154142dafb65f482035e373420027bc6f1664b3ae48aa459a69a466e8a69580f7398d9a70815a86b57d5ea624e9844dbe9c5fc03a9e104eff17fd11f3d14
+ storybook: ^8.4.6
+ checksum: acedc2b2b74dafc6cd236ec815f568b33f9cbf2eb714209f3ef8594df9bff29b72cf3d3aba3e778cb0cd962acaa7352657de353914353fbbd235d0ff37acfbd2
languageName: node
linkType: hard
-"@storybook/addon-controls@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-controls@npm:8.3.6"
+"@storybook/addon-controls@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-controls@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
dequal: ^2.0.2
- lodash: ^4.17.21
ts-dedent: ^2.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 29eb23a769ebdff8857d604399da6478d55b82ea689df0707828be16754897fedda2997043f1d92964137aab5e40576c994de12fe355432e2c3ea12e3c99006e
+ storybook: ^8.4.6
+ checksum: bd0804d54d7dbcf4a557738240aaf07c4cc1f022141c85f13d62a0029d8d363b1a7435330f0ee161cc3519e597a0bcfe4f7c16285447cca4eda23148d6a1cb4c
languageName: node
linkType: hard
-"@storybook/addon-docs@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-docs@npm:8.3.6"
+"@storybook/addon-docs@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-docs@npm:8.4.6"
dependencies:
"@mdx-js/react": ^3.0.0
- "@storybook/blocks": 8.3.6
- "@storybook/csf-plugin": 8.3.6
- "@storybook/global": ^5.0.0
- "@storybook/react-dom-shim": 8.3.6
- "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0
- fs-extra: ^11.1.0
+ "@storybook/blocks": 8.4.6
+ "@storybook/csf-plugin": 8.4.6
+ "@storybook/react-dom-shim": 8.4.6
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- rehype-external-links: ^3.0.0
- rehype-slug: ^6.0.0
ts-dedent: ^2.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 00bba806e67a83f8dcab67171f9318932ddf0d9b16da3b80923558458d85253b820982ef05419b0b1d8c7ba6bdea4b70308facc081df8102a8f989bdd470d0cd
+ storybook: ^8.4.6
+ checksum: 767bdbc9c83ac10129ec5863ccf2b658ad1807e1a22def2f734d4edde1791291d66186eca30a31ce57cf1863601a03dde075441ef60a9b0e66080a16ca9ed481
languageName: node
linkType: hard
-"@storybook/addon-essentials@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-essentials@npm:8.3.6"
+"@storybook/addon-essentials@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-essentials@npm:8.4.6"
dependencies:
- "@storybook/addon-actions": 8.3.6
- "@storybook/addon-backgrounds": 8.3.6
- "@storybook/addon-controls": 8.3.6
- "@storybook/addon-docs": 8.3.6
- "@storybook/addon-highlight": 8.3.6
- "@storybook/addon-measure": 8.3.6
- "@storybook/addon-outline": 8.3.6
- "@storybook/addon-toolbars": 8.3.6
- "@storybook/addon-viewport": 8.3.6
+ "@storybook/addon-actions": 8.4.6
+ "@storybook/addon-backgrounds": 8.4.6
+ "@storybook/addon-controls": 8.4.6
+ "@storybook/addon-docs": 8.4.6
+ "@storybook/addon-highlight": 8.4.6
+ "@storybook/addon-measure": 8.4.6
+ "@storybook/addon-outline": 8.4.6
+ "@storybook/addon-toolbars": 8.4.6
+ "@storybook/addon-viewport": 8.4.6
ts-dedent: ^2.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: 4b15ece66548adfefe41bcfed67aa60526253a47b36245fa63b523986e106f7399b6a1720f59a260ae89a7629b4ebefafca3a19853c5ccecd0b2f259f8dd0c3a
+ storybook: ^8.4.6
+ checksum: 72915e83a3cbae4c302d76721f1b3446455f7dbc49f76234e8b25f673cf69f448a1c3aeae121e800bec4aee35c55031ef1b430a0827e358c6dce4ee17375704a
languageName: node
linkType: hard
-"@storybook/addon-highlight@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-highlight@npm:8.3.6"
+"@storybook/addon-highlight@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-highlight@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: f8ca6d3d6693cba9e7e049c36c7b9ee4d8687dd305f3e87f11f1b8da2b077b6285a45c3ab7a2fe49d3ab273bd7b6b0e1161d12c9fcd0497107ed1985f7e815c6
+ storybook: ^8.4.6
+ checksum: 6549a3e859f3ed20a7defe73fa91eda0753d6412210a1c0fdcbc51c48f55a963064743224b56285b4c9d7d42a8fc195cbd5c052ac992c34fbcec798de9368e98
languageName: node
linkType: hard
-"@storybook/addon-interactions@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-interactions@npm:8.3.6"
+"@storybook/addon-interactions@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-interactions@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
- "@storybook/instrumenter": 8.3.6
- "@storybook/test": 8.3.6
+ "@storybook/instrumenter": 8.4.6
+ "@storybook/test": 8.4.6
polished: ^4.2.2
ts-dedent: ^2.2.0
peerDependencies:
- storybook: ^8.3.6
- checksum: ba8061346255b34d4a8131946350485e7a7d1d3c29796dac4b733385ab8e87bbf9ea01a61f557a50e9bbc7da5aec9d10a6c309ce288950f80550e87a369dde11
+ storybook: ^8.4.6
+ checksum: 7ab3e92943b4073c54546a4fb6e1760524f8af60b3acd18ddac57b164094984f3331b76b9b35ee5d05c820bcf34d6e254ad93346fbf352030641a7b599deff89
languageName: node
linkType: hard
-"@storybook/addon-links@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-links@npm:8.3.6"
+"@storybook/addon-links@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-links@npm:8.4.6"
dependencies:
"@storybook/csf": ^0.1.11
"@storybook/global": ^5.0.0
ts-dedent: ^2.0.0
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.6
+ storybook: ^8.4.6
peerDependenciesMeta:
react:
optional: true
- checksum: 1c6a1483098e5f1292824cb038d7a0efae78a8aee86e940092200b646501a6e4713a24e422fd3dd25781f17e08276dc5156cf3f4838b92a029fff2b4f3eb4e84
+ checksum: 4874a60332a14048ac47d4d46eadc9207622eefdc8ad0abff58a0e6ec997a4de3ab69bf91a3b00be1fc009d58f4ce50c53feceef48f34cab8d185aa4443e95a1
languageName: node
linkType: hard
-"@storybook/addon-measure@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-measure@npm:8.3.6"
+"@storybook/addon-measure@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-measure@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
tiny-invariant: ^1.3.1
peerDependencies:
- storybook: ^8.3.6
- checksum: 1c12baf9681a7b200594ce0bd1ac4a0645994a082fc6536fb24f61be2ae529796dda1dc65b9cfc5e4947ae9036405df62f56369d8ec696a0bd6bc0dcc8a7b7ab
+ storybook: ^8.4.6
+ checksum: 30a73659f2eafea2cfcd4727c6af159739e33d8de6e7aa9703311d4de1c752f512a0cdbea76079a6169f5bcbdd0519771284d18d050374e3e4721d12d780fe9b
languageName: node
linkType: hard
-"@storybook/addon-outline@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-outline@npm:8.3.6"
+"@storybook/addon-outline@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-outline@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
ts-dedent: ^2.0.0
peerDependencies:
- storybook: ^8.3.6
- checksum: eb3610cd1842c0234217745643aae4acb59af183202a885c3bb7e70a81864b49f15268e0f51bb15eef628068d93e9b76781e4cd7be42c3dbffc1c21d21cccfec
+ storybook: ^8.4.6
+ checksum: 82b864ecc476d1c8b2ff8ccb587868b7a81610f527706873fbe4846a31f865b5c8bc17c3f59991ba73b0c200ecd06b1a4d75c5903024f7763cd0a0d1efcba322
languageName: node
linkType: hard
-"@storybook/addon-toolbars@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-toolbars@npm:8.3.6"
+"@storybook/addon-toolbars@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-toolbars@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: 843730ab0111d869c5b913b5ad9aa0fce24e179b6f4c43f9da3fe046a929224943b3efa54652dac290baf2940916f08487f26828afa8ad3bc1523c1a039469a4
+ storybook: ^8.4.6
+ checksum: 7b5737c2d1eb62ab8ce3245b3791ab0000b745aab9094beca52a146af335c4caf9df9429d9f868184e3ff05ba8952a5f2d5bc82f7a863a67fec24f22abf90d4d
languageName: node
linkType: hard
-"@storybook/addon-viewport@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/addon-viewport@npm:8.3.6"
+"@storybook/addon-viewport@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/addon-viewport@npm:8.4.6"
dependencies:
memoizerific: ^1.11.3
peerDependencies:
- storybook: ^8.3.6
- checksum: b4cfe34ddcdab01432f9380dcb3d8f9073a26765349ac7e4f5801f83b3162e1db74c759acd914d3445721d39f72b03919a319f08f9ddfbaa623711ccaa139f23
+ storybook: ^8.4.6
+ checksum: ada45a76dc0311a7c8b8740ef6ca5f7f78201252d2157595a01c50f7de3773ebda4daf3a7ad0744687c8d6cbf730fc8c731b229029068ff6020eb09d9ed03e93
languageName: node
linkType: hard
-"@storybook/blocks@npm:8.3.6, @storybook/blocks@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/blocks@npm:8.3.6"
+"@storybook/blocks@npm:8.4.6, @storybook/blocks@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/blocks@npm:8.4.6"
dependencies:
"@storybook/csf": ^0.1.11
- "@storybook/global": ^5.0.0
- "@storybook/icons": ^1.2.10
- "@types/lodash": ^4.14.167
- color-convert: ^2.0.1
- dequal: ^2.0.2
- lodash: ^4.17.21
- markdown-to-jsx: ^7.4.5
- memoizerific: ^1.11.3
- polished: ^4.2.2
- react-colorful: ^5.1.2
- telejson: ^7.2.0
+ "@storybook/icons": ^1.2.12
ts-dedent: ^2.0.0
- util-deprecate: ^1.0.2
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.6
+ storybook: ^8.4.6
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
- checksum: 17b929a9b3ce585740dcd282a085ecdfc35f11393979f5eabbe8cdde9838eb6faa5e0738e20fc3e67f701092b626cbf53298ff68d5d5d370dca0a36a4a823e56
+ checksum: 355c242c2dbc0ae11816b1882673db4e2c2ffe354284a023717d29ef23a623f1b0ff945798018293c20092c7a2d89d302f8ac48e6156deb90f313a426a9d1c74
languageName: node
linkType: hard
-"@storybook/builder-vite@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/builder-vite@npm:8.3.6"
+"@storybook/builder-vite@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/builder-vite@npm:8.4.6"
dependencies:
- "@storybook/csf-plugin": 8.3.6
- "@types/find-cache-dir": ^3.2.1
+ "@storybook/csf-plugin": 8.4.6
browser-assert: ^1.2.1
- es-module-lexer: ^1.5.0
- express: ^4.19.2
- find-cache-dir: ^3.0.0
- fs-extra: ^11.1.0
- magic-string: ^0.30.0
ts-dedent: ^2.0.0
peerDependencies:
- "@preact/preset-vite": "*"
- storybook: ^8.3.6
- typescript: ">= 4.3.x"
- vite: ^4.0.0 || ^5.0.0
- vite-plugin-glimmerx: "*"
- peerDependenciesMeta:
- "@preact/preset-vite":
- optional: true
- typescript:
- optional: true
- vite-plugin-glimmerx:
- optional: true
- checksum: 3cca69f6e0188d238210d01c721a82d11f54acf3ae6e72d3eb050157a448420131e8957545027b184a13ce68a58fc3c78ea5290030357ecf15638c06bc3ea232
+ storybook: ^8.4.6
+ vite: ^4.0.0 || ^5.0.0 || ^6.0.0
+ checksum: 9c3e875dbb3564732445b26b8811a063fe9faa103fa6dfb120d5073b9286df03415e1405bf6f9b090c1e3e676d9a7fd1c61ffebeb5914fc566f9dd14242b5093
languageName: node
linkType: hard
-"@storybook/components@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/components@npm:8.3.6"
+"@storybook/components@npm:8.4.6, @storybook/components@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/components@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: 778a114ddba6bd71ce18a8659c4c8b9b4cbcfa5665a68e3bae9467c492a218c2d95ded0825cc920984a6017f12ce811f48517812eb0de2183623cd06be677d7a
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ checksum: 66b08f840017e279274a0be2d9cba9edaa50139d5d7cdd9f148ff815f693db0026531e3e15efc9706c9e32aeccb0a97717aca7b81a2119b79f5875a69f0b81a3
languageName: node
linkType: hard
-"@storybook/core-events@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/core-events@npm:8.3.6"
+"@storybook/core-events@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/core-events@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: bcf7a0f86cfaace4394eae8c7b747f5265e59304f5a4adc7fab266f09166e77896729d556319fcfcb5a6b6608ef1e6451f2c0a1e27832c7d870f0e298c40f6f5
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ checksum: 6c7908e1462e9eaf2457b539328309399c17ab791ad6c1ac5e58bcaca1ad9473ba03cf91d54bf53c3e8fa5ab667ebddd91e975f3af274e71748fd22c040abfb1
languageName: node
linkType: hard
-"@storybook/core@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/core@npm:8.3.6"
+"@storybook/core@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/core@npm:8.4.6"
dependencies:
"@storybook/csf": ^0.1.11
- "@types/express": ^4.17.21
better-opn: ^3.0.2
browser-assert: ^1.2.1
- esbuild: ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0
+ esbuild: ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0
esbuild-register: ^3.5.0
- express: ^4.19.2
jsdoc-type-pratt-parser: ^4.0.0
process: ^0.11.10
recast: ^0.23.5
semver: ^7.6.2
util: ^0.12.5
ws: ^8.2.3
- checksum: 06b07b544b14e9badde9f4348282d8b6103af366f7c631656f12a02beb9bc9e150c2859fcb9b72e9690c20f7c240ccc2ace0ccdc0a7cef13187161e3fc952ff3
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
+ checksum: c9c4b5aa1f49ee8e3b51c2e179cbafd6826415e6a788a0b11a04bf0dedbbb56b81dd187719086cdeb695fa31c46709dc6184027e2938eb5fc9ab41c4ed2b15d7
languageName: node
linkType: hard
-"@storybook/csf-plugin@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/csf-plugin@npm:8.3.6"
+"@storybook/csf-plugin@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/csf-plugin@npm:8.4.6"
dependencies:
unplugin: ^1.3.1
peerDependencies:
- storybook: ^8.3.6
- checksum: 08cd3f8563808889877484f112bca7bca496f3ea195e18660941f11644422282062135a40e0f5f732fee9b5d7a214baddf2a9e58eb10d5ff54bd30b61ee0923d
+ storybook: ^8.4.6
+ checksum: e09a2175bc3af950668a307626bcc68b51c88b8404e39f2a57942097ff638b5c997aafaaf694493dac611b11572863f8a9cb6246c0b117a07c0d650299fff620
languageName: node
linkType: hard
@@ -2046,7 +2174,7 @@ __metadata:
languageName: node
linkType: hard
-"@storybook/icons@npm:^1.2.10":
+"@storybook/icons@npm:^1.2.12":
version: 1.2.12
resolution: "@storybook/icons@npm:1.2.12"
peerDependencies:
@@ -2056,25 +2184,24 @@ __metadata:
languageName: node
linkType: hard
-"@storybook/instrumenter@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/instrumenter@npm:8.3.6"
+"@storybook/instrumenter@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/instrumenter@npm:8.4.6"
dependencies:
"@storybook/global": ^5.0.0
- "@vitest/utils": ^2.0.5
- util: ^0.12.4
+ "@vitest/utils": ^2.1.1
peerDependencies:
- storybook: ^8.3.6
- checksum: 4e6fe75ce1418a117ff765e3e134760a23c3fac234bf25ee52c40d2e69163efff78c271a1e7836909278d528a90a670fc45af2d8b5708f5a014a5875f2992ccf
+ storybook: ^8.4.6
+ checksum: faa8e6ec52a4e8ef0313601e477cc1a8097960774f5d98bc2e928539dc785eaf5c7e0659fe8013f0c18c09222de92fb68667e728219d73d3b39b3bafe3bb815c
languageName: node
linkType: hard
-"@storybook/manager-api@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/manager-api@npm:8.3.6"
+"@storybook/manager-api@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/manager-api@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: 94faf62726b948c2f8e52e15ac99f4ca2f5884a874fbecda6a81e58a03ff316d17ed36c8c146bd388bb58dad2a2bd09cd61c6d7fc1ff2cddfc774c2aed34e37c
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ checksum: f6deb13cc36852681a54a0a7ec4fed17dab7ae496f07b667e5550950186fd5569b53a21ea0a1416997cda202d47710684bc2da251cb3ea495f59160199e52076
languageName: node
linkType: hard
@@ -2085,34 +2212,34 @@ __metadata:
languageName: node
linkType: hard
-"@storybook/preview-api@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/preview-api@npm:8.3.6"
+"@storybook/preview-api@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/preview-api@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: 5a645dc19308b69020da2ee282860666c6f7ebe45525802cb4da3d4e496f410a30915e570ae4a07b23d429a5d7f0c7254d9f76e6bc236ff2a85b0cc0e56b0ad0
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ checksum: 9771ea6d3e3a6d48ca926293d6521caeec370f7c51527400ec9d184c9b41c580567f00661a568d66eb5d34b9a7e8703e3c2cc9b1cf91be6acb324d134c7c9f02
languageName: node
linkType: hard
-"@storybook/react-dom-shim@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/react-dom-shim@npm:8.3.6"
+"@storybook/react-dom-shim@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/react-dom-shim@npm:8.4.6"
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.6
- checksum: 4d65deef18aef9ad019b5b37fae511934232299418a3278c67ba396f2108e7150223c176eb42adb6ea91e35da8da6f4bbe57a96105c2201a7e6ae1bebad871e5
+ storybook: ^8.4.6
+ checksum: d64daafa29ec8e1cfc29fbfd75ade6ae3287c69d28022cd1d7966bc2cbd75911237cf53db68e5c8c787452e69f36f7ba1aba2f981732684343d16b79cb3c5d07
languageName: node
linkType: hard
-"@storybook/react-vite@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/react-vite@npm:8.3.6"
+"@storybook/react-vite@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/react-vite@npm:8.4.6"
dependencies:
- "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0
+ "@joshwooding/vite-plugin-react-docgen-typescript": 0.4.2
"@rollup/pluginutils": ^5.0.2
- "@storybook/builder-vite": 8.3.6
- "@storybook/react": 8.3.6
+ "@storybook/builder-vite": 8.4.6
+ "@storybook/react": 8.4.6
find-up: ^5.0.0
magic-string: ^0.30.0
react-docgen: ^7.0.0
@@ -2121,67 +2248,52 @@ __metadata:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.6
- vite: ^4.0.0 || ^5.0.0
- checksum: 7e2bd71e84640497595a9b8263527b2015bec29cff9743ace849e174957c3a6c4d62b216ff1f59bb31a8c11f2127042fff8a4d5ef3afb1857dba170941562b66
+ storybook: ^8.4.6
+ vite: ^4.0.0 || ^5.0.0 || ^6.0.0
+ checksum: df6d153f1ecbc5299470825e9217207a2833729144f633cfb1083bf5fed75394d7a06bd32c3b0a7bd0ed67ef429adbd5799560258ecd91213269f3f3c9b9d54b
languageName: node
linkType: hard
-"@storybook/react@npm:8.3.6, @storybook/react@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/react@npm:8.3.6"
+"@storybook/react@npm:8.4.6, @storybook/react@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/react@npm:8.4.6"
dependencies:
- "@storybook/components": ^8.3.6
+ "@storybook/components": 8.4.6
"@storybook/global": ^5.0.0
- "@storybook/manager-api": ^8.3.6
- "@storybook/preview-api": ^8.3.6
- "@storybook/react-dom-shim": 8.3.6
- "@storybook/theming": ^8.3.6
- "@types/escodegen": ^0.0.6
- "@types/estree": ^0.0.51
- "@types/node": ^22.0.0
- acorn: ^7.4.1
- acorn-jsx: ^5.3.1
- acorn-walk: ^7.2.0
- escodegen: ^2.1.0
- html-tags: ^3.1.0
- prop-types: ^15.7.2
- react-element-to-jsx-string: ^15.0.0
- semver: ^7.3.7
- ts-dedent: ^2.0.0
- type-fest: ~2.19
- util-deprecate: ^1.0.2
+ "@storybook/manager-api": 8.4.6
+ "@storybook/preview-api": 8.4.6
+ "@storybook/react-dom-shim": 8.4.6
+ "@storybook/theming": 8.4.6
peerDependencies:
- "@storybook/test": 8.3.6
+ "@storybook/test": 8.4.6
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.6
+ storybook: ^8.4.6
typescript: ">= 4.2.x"
peerDependenciesMeta:
"@storybook/test":
optional: true
typescript:
optional: true
- checksum: 4df2dfbab580cc09df9e4acf5eda0e0558671a42086795a432c3987a30006136372b126258ddff5e5c28e3fea5f8e4354f10bc129f3f326d90f5845df8346d98
+ checksum: 43f9cf0d35a1a87c0295305f6eb43be135de86d70b16ba197e474ac854b53b3232c369f392f4023587ec83ce2e9055b0c93e42fd3851e1652f6c5614bafc4827
languageName: node
linkType: hard
-"@storybook/test@npm:8.3.6":
- version: 8.3.6
- resolution: "@storybook/test@npm:8.3.6"
+"@storybook/test@npm:8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/test@npm:8.4.6"
dependencies:
"@storybook/csf": ^0.1.11
"@storybook/global": ^5.0.0
- "@storybook/instrumenter": 8.3.6
+ "@storybook/instrumenter": 8.4.6
"@testing-library/dom": 10.4.0
"@testing-library/jest-dom": 6.5.0
"@testing-library/user-event": 14.5.2
"@vitest/expect": 2.0.5
"@vitest/spy": 2.0.5
- util: ^0.12.4
peerDependencies:
- storybook: ^8.3.6
- checksum: 58900591f2e70deb47581d5784e6f529debac34a0d2264ecd50139f5cf003bedf907499844181a5a947d040dadff7a223efad7b8ed8cb99be07292ec05e67d15
+ storybook: ^8.4.6
+ checksum: 0d8f1c5cb2d15aa2a86e4beae596b8ce34a34ab09cb4470fcdb6cee7454f60f86166ad0c42a7b1889a29a144c11627a898cf3f838a1fde0c75818c59f7aa6b19
languageName: node
linkType: hard
@@ -2196,12 +2308,12 @@ __metadata:
languageName: node
linkType: hard
-"@storybook/theming@npm:^8.3.6":
- version: 8.3.6
- resolution: "@storybook/theming@npm:8.3.6"
+"@storybook/theming@npm:8.4.6, @storybook/theming@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "@storybook/theming@npm:8.4.6"
peerDependencies:
- storybook: ^8.3.6
- checksum: 7b40b35069225d37f71f43e35174717ba6ec8d273eef671a2d37d9745a300c5b3887fa145aee6fdbe4759b2140ddf25e8cbd569074ae1c7d44b0ccc99c1a3451
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
+ checksum: 364c7c8d66f523d5dec020157ae5dd86ac976b988f1c61cff61ae141ed906d4c8693f2361eb3b1709409c62f246537e68a3ad6c8d7c7d5c39d7df5bd1c39a815
languageName: node
linkType: hard
@@ -2332,40 +2444,40 @@ __metadata:
languageName: node
linkType: hard
-"@tanstack/query-core@npm:5.59.13":
- version: 5.59.13
- resolution: "@tanstack/query-core@npm:5.59.13"
- checksum: 2f43f53ecd0151c9f83f822f47a8c882cce234ece2fa4fc575ae1bf865094ff145f5efe7cb9c750541df143804941248aceaf85e7c5346a7897d896845996dff
+"@tanstack/query-core@npm:5.62.2":
+ version: 5.62.2
+ resolution: "@tanstack/query-core@npm:5.62.2"
+ checksum: 1d15f007214c65c15360eadfe6ccefb8a2d780b85383b8ce7083950d8648efc95784e36d304792f1b738178b9fb0531e0d062c7f63d69f4577c1f1b9f7c15af7
languageName: node
linkType: hard
-"@tanstack/query-devtools@npm:5.58.0":
- version: 5.58.0
- resolution: "@tanstack/query-devtools@npm:5.58.0"
- checksum: ba5a2b96a307abb02607a6e8a3378b680871d89b83916fde8b21ae29ca2282eaa3d98638780f08e1c85cdce94258ba88bb5535780fcad004ebd7de608be7dacc
+"@tanstack/query-devtools@npm:5.61.4":
+ version: 5.61.4
+ resolution: "@tanstack/query-devtools@npm:5.61.4"
+ checksum: b2138f9848e38353d21abf17a1ae7c65528ba6f095537988b5cbb365bb0a64176b7ff9ea5c0494d69b5d2799a4c495fc0fc877b5e1f369f178549655c2748be9
languageName: node
linkType: hard
-"@tanstack/react-query-devtools@npm:^5.59.15":
- version: 5.59.15
- resolution: "@tanstack/react-query-devtools@npm:5.59.15"
+"@tanstack/react-query-devtools@npm:^5.62.2":
+ version: 5.62.2
+ resolution: "@tanstack/react-query-devtools@npm:5.62.2"
dependencies:
- "@tanstack/query-devtools": 5.58.0
+ "@tanstack/query-devtools": 5.61.4
peerDependencies:
- "@tanstack/react-query": ^5.59.15
+ "@tanstack/react-query": ^5.62.2
react: ^18 || ^19
- checksum: 69169f87efc8bd845181f6dea63947e60980e561b6bfb60ce39a7d4b656d4124d0e976fd62d32fa3afd4ebe5af7c64d43ff34bc59b3b189c1d1b74169e73381d
+ checksum: 5a01a2ebff96d13572afc72f7f167c612d3417a17006759e4fc12b7f2bc428b58693ea7f467e286edcff7c5e454d937da9857b8cc99a7d02ad66b3eaab2d3b8d
languageName: node
linkType: hard
-"@tanstack/react-query@npm:^5.59.15":
- version: 5.59.15
- resolution: "@tanstack/react-query@npm:5.59.15"
+"@tanstack/react-query@npm:^5.62.2":
+ version: 5.62.2
+ resolution: "@tanstack/react-query@npm:5.62.2"
dependencies:
- "@tanstack/query-core": 5.59.13
+ "@tanstack/query-core": 5.62.2
peerDependencies:
react: ^18 || ^19
- checksum: 465aa2cdfc83fe3ebbb3dfe94ad39ac9e047e6808890b9dfd253d7aec31cdc46198af3c3a8dfa6a7212f941db7df1fe9a724540504cc2e3efa1cdffcb2d48164
+ checksum: 4735781dade3a55d0f2992b4f5c4c0e27d89788f2df37f57abeb45126aab54314638a040bae2bd39dda2aa4d27c96439b5df457890f1c0822ea74d290ffe2d9c
languageName: node
linkType: hard
@@ -2416,9 +2528,9 @@ __metadata:
languageName: node
linkType: hard
-"@testing-library/jest-dom@npm:^6.6.2":
- version: 6.6.2
- resolution: "@testing-library/jest-dom@npm:6.6.2"
+"@testing-library/jest-dom@npm:^6.6.3":
+ version: 6.6.3
+ resolution: "@testing-library/jest-dom@npm:6.6.3"
dependencies:
"@adobe/css-tools": ^4.4.0
aria-query: ^5.0.0
@@ -2427,7 +2539,7 @@ __metadata:
dom-accessibility-api: ^0.6.3
lodash: ^4.17.21
redent: ^3.0.0
- checksum: 23fc4de90035b7acaa13839adb8e31e5f5ad0306623f59be4907fe48050a5d148cd927ff6b6c13c49e392cc06bdd9f16e7d4766263dd7b42d5a342897e32bb6f
+ checksum: c1dc4260b05309a0084416639006cd105849acc5b102bef682a3b19bd6fce07ff6762085fc7f2599546c995a2fc66fdb1d70e50e22a634a0098524056cc9e511
languageName: node
linkType: hard
@@ -2596,25 +2708,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/body-parser@npm:*":
- version: 1.19.2
- resolution: "@types/body-parser@npm:1.19.2"
- dependencies:
- "@types/connect": "*"
- "@types/node": "*"
- checksum: e17840c7d747a549f00aebe72c89313d09fbc4b632b949b2470c5cb3b1cb73863901ae84d9335b567a79ec5efcfb8a28ff8e3f36bc8748a9686756b6d5681f40
- languageName: node
- linkType: hard
-
-"@types/connect@npm:*":
- version: 3.4.35
- resolution: "@types/connect@npm:3.4.35"
- dependencies:
- "@types/node": "*"
- checksum: fe81351470f2d3165e8b12ce33542eef89ea893e36dd62e8f7d72566dfb7e448376ae962f9f3ea888547ce8b55a40020ca0e01d637fab5d99567673084542641
- languageName: node
- linkType: hard
-
"@types/cookie@npm:^0.6.0":
version: 0.6.0
resolution: "@types/cookie@npm:0.6.0"
@@ -2638,12 +2731,12 @@ __metadata:
languageName: node
linkType: hard
-"@types/dompurify@npm:^3.0.5":
- version: 3.0.5
- resolution: "@types/dompurify@npm:3.0.5"
+"@types/dompurify@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "@types/dompurify@npm:3.2.0"
dependencies:
- "@types/trusted-types": "*"
- checksum: ffc34eca6a4536e1c8c16a47cce2623c5a118a9785492e71230052d92933ff096d14326ff449031e8dfaac509413222372d8f2b28786a13159de6241df716185
+ dompurify: "*"
+ checksum: 0194dd9024e76e856f3373e8b080c7a5ac9910543ac1ee85db45277efbbea820b2f27fe22c8a6f02bb51833e0a8540d732be0d11d156efd16cb0b97f88e41ebf
languageName: node
linkType: hard
@@ -2654,13 +2747,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/escodegen@npm:^0.0.6":
- version: 0.0.6
- resolution: "@types/escodegen@npm:0.0.6"
- checksum: 7b25aeedd48dbef68345224082c6bc774845cbfc1d9b2ce91a477130fe7ccabf33da126c1d6d55e5dfd838db429a7c80890628a167e5aa55b6a4620974da38d3
- languageName: node
- linkType: hard
-
"@types/eslint-scope@npm:^3.7.3":
version: 3.7.4
resolution: "@types/eslint-scope@npm:3.7.4"
@@ -2706,44 +2792,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/estree@npm:^0.0.51":
- version: 0.0.51
- resolution: "@types/estree@npm:0.0.51"
- checksum: e56a3bcf759fd9185e992e7fdb3c6a5f81e8ff120e871641607581fb3728d16c811702a7d40fa5f869b7f7b4437ab6a87eb8d98ffafeee51e85bbe955932a189
- languageName: node
- linkType: hard
-
-"@types/express-serve-static-core@npm:^4.17.33":
- version: 4.17.35
- resolution: "@types/express-serve-static-core@npm:4.17.35"
- dependencies:
- "@types/node": "*"
- "@types/qs": "*"
- "@types/range-parser": "*"
- "@types/send": "*"
- checksum: cc8995d10c6feda475ec1b3a0e69eb0f35f21ab6b49129ad5c6f279e0bc5de8175bc04ec51304cb79a43eec3ed2f5a1e01472eb6d5f827b8c35c6ca8ad24eb6e
- languageName: node
- linkType: hard
-
-"@types/express@npm:^4.17.21":
- version: 4.17.21
- resolution: "@types/express@npm:4.17.21"
- dependencies:
- "@types/body-parser": "*"
- "@types/express-serve-static-core": ^4.17.33
- "@types/qs": "*"
- "@types/serve-static": "*"
- checksum: fb238298630370a7392c7abdc80f495ae6c716723e114705d7e3fb67e3850b3859bbfd29391463a3fb8c0b32051847935933d99e719c0478710f8098ee7091c5
- languageName: node
- linkType: hard
-
-"@types/find-cache-dir@npm:^3.2.1":
- version: 3.2.1
- resolution: "@types/find-cache-dir@npm:3.2.1"
- checksum: bf5c4e96da40247cd9e6327f54dfccda961a0fb2d70e3c71bd05def94de4c2e6fb310fe8ecb0f04ecf5dbc52214e184b55a2337b0f87250d4ae1e2e7d58321e4
- languageName: node
- linkType: hard
-
"@types/github-slugger@npm:^1.3.0":
version: 1.3.0
resolution: "@types/github-slugger@npm:1.3.0"
@@ -2751,16 +2799,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/glob@npm:^7.1.3":
- version: 7.2.0
- resolution: "@types/glob@npm:7.2.0"
- dependencies:
- "@types/minimatch": "*"
- "@types/node": "*"
- checksum: 6ae717fedfdfdad25f3d5a568323926c64f52ef35897bcac8aca8e19bc50c0bd84630bbd063e5d52078b2137d8e7d3c26eabebd1a2f03ff350fff8a91e79fc19
- languageName: node
- linkType: hard
-
"@types/hast@npm:^2.0.0":
version: 2.3.5
resolution: "@types/hast@npm:2.3.5"
@@ -2825,10 +2863,10 @@ __metadata:
languageName: node
linkType: hard
-"@types/lodash@npm:^4.14.167, @types/lodash@npm:^4.17.12":
- version: 4.17.12
- resolution: "@types/lodash@npm:4.17.12"
- checksum: 7b564e4114f09ce5ae31a2e9493592baf20bb498507f3705c5d91cf838c2298b4f6a06f2d6c8dc608fcac63e210a2b7b13388c7a5e220e15688f813521030127
+"@types/lodash@npm:^4.17.13":
+ version: 4.17.13
+ resolution: "@types/lodash@npm:4.17.13"
+ checksum: d0bf8fbd950be71946e0076b30fd40d492293baea75f05931b6b5b906fd62583708c6229abdb95b30205ad24ce1ed2f48bc9d419364f682320edd03405cc0c7e
languageName: node
linkType: hard
@@ -2848,27 +2886,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/mime@npm:*":
- version: 3.0.1
- resolution: "@types/mime@npm:3.0.1"
- checksum: 4040fac73fd0cea2460e29b348c1a6173da747f3a87da0dbce80dd7a9355a3d0e51d6d9a401654f3e5550620e3718b5a899b2ec1debf18424e298a2c605346e7
- languageName: node
- linkType: hard
-
-"@types/mime@npm:^1":
- version: 1.3.2
- resolution: "@types/mime@npm:1.3.2"
- checksum: 0493368244cced1a69cb791b485a260a422e6fcc857782e1178d1e6f219f1b161793e9f87f5fae1b219af0f50bee24fcbe733a18b4be8fdd07a38a8fb91146fd
- languageName: node
- linkType: hard
-
-"@types/minimatch@npm:*":
- version: 5.1.2
- resolution: "@types/minimatch@npm:5.1.2"
- checksum: 0391a282860c7cb6fe262c12b99564732401bdaa5e395bee9ca323c312c1a0f45efbf34dce974682036e857db59a5c9b1da522f3d6055aeead7097264c8705a8
- languageName: node
- linkType: hard
-
"@types/ms@npm:*":
version: 0.7.31
resolution: "@types/ms@npm:0.7.31"
@@ -2885,7 +2902,7 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:*, @types/node@npm:^22.0.0":
+"@types/node@npm:*":
version: 22.7.8
resolution: "@types/node@npm:22.7.8"
dependencies:
@@ -2917,20 +2934,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/qs@npm:*":
- version: 6.9.7
- resolution: "@types/qs@npm:6.9.7"
- checksum: 7fd6f9c25053e9b5bb6bc9f9f76c1d89e6c04f7707a7ba0e44cc01f17ef5284adb82f230f542c2d5557d69407c9a40f0f3515e8319afd14e1e16b5543ac6cdba
- languageName: node
- linkType: hard
-
-"@types/range-parser@npm:*":
- version: 1.2.4
- resolution: "@types/range-parser@npm:1.2.4"
- checksum: b7c0dfd5080a989d6c8bb0b6750fc0933d9acabeb476da6fe71d8bdf1ab65e37c136169d84148034802f48378ab94e3c37bb4ef7656b2bec2cb9c0f8d4146a95
- languageName: node
- linkType: hard
-
"@types/react-dom@npm:^18.3.1":
version: 18.3.1
resolution: "@types/react-dom@npm:18.3.1"
@@ -3010,26 +3013,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/send@npm:*":
- version: 0.17.1
- resolution: "@types/send@npm:0.17.1"
- dependencies:
- "@types/mime": ^1
- "@types/node": "*"
- checksum: 10b620a5960058ef009afbc17686f680d6486277c62f640845381ec4baa0ea683fdd77c3afea4803daf5fcddd3fb2972c8aa32e078939f1d4e96f83195c89793
- languageName: node
- linkType: hard
-
-"@types/serve-static@npm:*":
- version: 1.15.1
- resolution: "@types/serve-static@npm:1.15.1"
- dependencies:
- "@types/mime": "*"
- "@types/node": "*"
- checksum: 2e078bdc1e458c7dfe69e9faa83cc69194b8896cce57cb745016580543c7ab5af07fdaa8ac1765eb79524208c81017546f66056f44d1204f812d72810613de36
- languageName: node
- linkType: hard
-
"@types/sizzle@npm:*":
version: 2.3.3
resolution: "@types/sizzle@npm:2.3.3"
@@ -3058,10 +3041,10 @@ __metadata:
languageName: node
linkType: hard
-"@types/trusted-types@npm:*":
- version: 2.0.2
- resolution: "@types/trusted-types@npm:2.0.2"
- checksum: 3371eef5f1c50e1c3c07a127c1207b262ba65b83dd167a1c460fc1b135a3fb0c97b9f508efebd383f239cc5dd5b7169093686a692a501fde9c3f7208657d9b0d
+"@types/trusted-types@npm:^2.0.7":
+ version: 2.0.7
+ resolution: "@types/trusted-types@npm:2.0.7"
+ checksum: 8e4202766a65877efcf5d5a41b7dd458480b36195e580a3b1085ad21e948bc417d55d6f8af1fd2a7ad008015d4117d5fdfe432731157da3c68678487174e4ba3
languageName: node
linkType: hard
@@ -3100,15 +3083,15 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/eslint-plugin@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/eslint-plugin@npm:8.12.2"
+"@typescript-eslint/eslint-plugin@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:8.16.0"
dependencies:
"@eslint-community/regexpp": ^4.10.0
- "@typescript-eslint/scope-manager": 8.12.2
- "@typescript-eslint/type-utils": 8.12.2
- "@typescript-eslint/utils": 8.12.2
- "@typescript-eslint/visitor-keys": 8.12.2
+ "@typescript-eslint/scope-manager": 8.16.0
+ "@typescript-eslint/type-utils": 8.16.0
+ "@typescript-eslint/utils": 8.16.0
+ "@typescript-eslint/visitor-keys": 8.16.0
graphemer: ^1.4.0
ignore: ^5.3.1
natural-compare: ^1.4.0
@@ -3119,25 +3102,25 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: a1707704d91cd525ece0cf5a978f17cb309bb8918d65ded349e18b0aa364f585555d018a365cb0ab9450f273912fc07fae5600f34294e637151b244ba4485bc2
+ checksum: dbb0127eca578a876654b820ea270ef4f2c374447d5c214a8677cc1ccf1ba1b87d9b021cb7586d7e33c4feb9b7b40de1b5ad109f385713cac4627d6ec29bd96b
languageName: node
linkType: hard
-"@typescript-eslint/parser@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/parser@npm:8.12.2"
+"@typescript-eslint/parser@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/parser@npm:8.16.0"
dependencies:
- "@typescript-eslint/scope-manager": 8.12.2
- "@typescript-eslint/types": 8.12.2
- "@typescript-eslint/typescript-estree": 8.12.2
- "@typescript-eslint/visitor-keys": 8.12.2
+ "@typescript-eslint/scope-manager": 8.16.0
+ "@typescript-eslint/types": 8.16.0
+ "@typescript-eslint/typescript-estree": 8.16.0
+ "@typescript-eslint/visitor-keys": 8.16.0
debug: ^4.3.4
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 201f3e4b6073547726e447455b630c04816b0611346c1b9522493c47596d906c8edaf37d43e0d0e121e2965b374d9547c351e1fa0e125bceb37063e0fa806065
+ checksum: 10a390b59556d8ace1fb9edeb51c77b86322dd7211fbfa61e993326d85f082b6b173bffcf7a506165cea03fd2ba053c83fcec41687538ed247452158529c4344
languageName: node
linkType: hard
@@ -3161,28 +3144,30 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/scope-manager@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/scope-manager@npm:8.12.2"
+"@typescript-eslint/scope-manager@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/scope-manager@npm:8.16.0"
dependencies:
- "@typescript-eslint/types": 8.12.2
- "@typescript-eslint/visitor-keys": 8.12.2
- checksum: dd960238f1cf0f24e6c16525f0cbdb6cf65bfc3cfe650f376ecda2583c378c2e3a7eb4c2d57e04e009626d009018226b722a670ca283086c2a6cc1931c2268d8
+ "@typescript-eslint/types": 8.16.0
+ "@typescript-eslint/visitor-keys": 8.16.0
+ checksum: 12427e2a95a8b0cb49259be1a8a9a23f734fd0dbabbc5cebf1ba56b48812e2ca7ba32b71ededf24efa1a9da07a13b20ced004e2eea6f4b8c07003438f664ce30
languageName: node
linkType: hard
-"@typescript-eslint/type-utils@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/type-utils@npm:8.12.2"
+"@typescript-eslint/type-utils@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/type-utils@npm:8.16.0"
dependencies:
- "@typescript-eslint/typescript-estree": 8.12.2
- "@typescript-eslint/utils": 8.12.2
+ "@typescript-eslint/typescript-estree": 8.16.0
+ "@typescript-eslint/utils": 8.16.0
debug: ^4.3.4
ts-api-utils: ^1.3.0
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: a8f540d84674c4919d6f038848add5b4d41ef39cdf572734a13b75f0f797b00d45903b179dc7c25f7ae7690f9dbaf115e5bda596d9e439b1a0a8d7f9d799260e
+ checksum: ea3654ff6ae6181911ad6784a7addab9be6b3ce221e6367480061bc8abe8b7ce9f23249f2257f1c5b205e3ea498d5050016596732c66d51ad599dd50aa2c9e16
languageName: node
linkType: hard
@@ -3200,10 +3185,10 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/types@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/types@npm:8.12.2"
- checksum: b0f7effdac842428b15d76710295a8b4f1fe1ff14e40fbb10c8f571c11fd517d75d76decbecf90412bc5eabce0cd4ac0acf53d6b0d8ba2bdde86ab3b627bdac2
+"@typescript-eslint/types@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/types@npm:8.16.0"
+ checksum: 1ed10343dc65c7fd493cfe789639f547f4c730e6e04472007fa92a00ff1fb77b31fc8016a350a10e553d38b12485f78c331d91c071dc08f69476076f5bbef5cd
languageName: node
linkType: hard
@@ -3244,12 +3229,12 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/typescript-estree@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/typescript-estree@npm:8.12.2"
+"@typescript-eslint/typescript-estree@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/typescript-estree@npm:8.16.0"
dependencies:
- "@typescript-eslint/types": 8.12.2
- "@typescript-eslint/visitor-keys": 8.12.2
+ "@typescript-eslint/types": 8.16.0
+ "@typescript-eslint/visitor-keys": 8.16.0
debug: ^4.3.4
fast-glob: ^3.3.2
is-glob: ^4.0.3
@@ -3259,21 +3244,24 @@ __metadata:
peerDependenciesMeta:
typescript:
optional: true
- checksum: 923d297ba891cbaf4f00618db2313123238657b179f56a5d42d02a4e6433c513f73a9dd9aa62cd2c5b9fb2c5912a59319eb0a14ef2403792e15757142722309a
+ checksum: 047ae08a7774e4be4307409970d7b8b27d46d10e302ed236199b1b7648242d2aa10b7d1dbeae1fed0f55f683c863f9d399e50108c215e35370fb6a3851bda427
languageName: node
linkType: hard
-"@typescript-eslint/utils@npm:8.12.2, @typescript-eslint/utils@npm:^8.8.1":
- version: 8.12.2
- resolution: "@typescript-eslint/utils@npm:8.12.2"
+"@typescript-eslint/utils@npm:8.16.0, @typescript-eslint/utils@npm:^8.8.1":
+ version: 8.16.0
+ resolution: "@typescript-eslint/utils@npm:8.16.0"
dependencies:
"@eslint-community/eslint-utils": ^4.4.0
- "@typescript-eslint/scope-manager": 8.12.2
- "@typescript-eslint/types": 8.12.2
- "@typescript-eslint/typescript-estree": 8.12.2
+ "@typescript-eslint/scope-manager": 8.16.0
+ "@typescript-eslint/types": 8.16.0
+ "@typescript-eslint/typescript-estree": 8.16.0
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- checksum: 7ae4ef40d0961642fc31644c47e05f751369b47f3d9f5ea4e6c6eaa09d534efc6a2ea89f12368eed7dc8b32a7378e533f84379f70f2acd85418815f63b249b18
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: 5e3c4b4d453bee6c38715f851d517ad3bbdb9335de5c2ef487e350eea97ae8b2e996046a1d8f3a93109e06a569d1e161b4ef8d33c530766931e4dbc43cb26ed7
languageName: node
linkType: hard
@@ -3329,13 +3317,13 @@ __metadata:
languageName: node
linkType: hard
-"@typescript-eslint/visitor-keys@npm:8.12.2":
- version: 8.12.2
- resolution: "@typescript-eslint/visitor-keys@npm:8.12.2"
+"@typescript-eslint/visitor-keys@npm:8.16.0":
+ version: 8.16.0
+ resolution: "@typescript-eslint/visitor-keys@npm:8.16.0"
dependencies:
- "@typescript-eslint/types": 8.12.2
- eslint-visitor-keys: ^3.4.3
- checksum: 97b919a0f0982e16a46ed568ae195906ec4aed7db358308d2311e9829ceb7f521e4a2017b3bdedad264ee61fdf08d3d12ada7d5622f13b20ac324118fe5b8447
+ "@typescript-eslint/types": 8.16.0
+ eslint-visitor-keys: ^4.2.0
+ checksum: e7444d3d57b4fcdebfa0d7effcdff9c928d77b6a6765da6980f0dbeb6438af707bd4c2c21e24e7ae1638f9c4a5697168f94027fff94ad663da57fa5f44f0983d
languageName: node
linkType: hard
@@ -3373,23 +3361,23 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/coverage-istanbul@npm:^2.1.3":
- version: 2.1.3
- resolution: "@vitest/coverage-istanbul@npm:2.1.3"
+"@vitest/coverage-istanbul@npm:^2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/coverage-istanbul@npm:2.1.8"
dependencies:
"@istanbuljs/schema": ^0.1.3
- debug: ^4.3.6
+ debug: ^4.3.7
istanbul-lib-coverage: ^3.2.2
istanbul-lib-instrument: ^6.0.3
istanbul-lib-report: ^3.0.1
istanbul-lib-source-maps: ^5.0.6
istanbul-reports: ^3.1.7
- magicast: ^0.3.4
+ magicast: ^0.3.5
test-exclude: ^7.0.1
tinyrainbow: ^1.2.0
peerDependencies:
- vitest: 2.1.3
- checksum: 797acb7700845137cb14d4e74c4c7f0675ece783d680c4a73966866529218c1f3ec217d82a5b88b685cf047eb650439b6d216d2c677dcfce7acefb3431d85b2c
+ vitest: 2.1.8
+ checksum: 037c36da814e27d477448a2ee30999412633f2c8e65a74925223596f20707a1bd86cb99a37c2b4e142f106dab42e5b5faab6bd01aa19dfcd3b71419753c4f60a
languageName: node
linkType: hard
@@ -3405,35 +3393,34 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/expect@npm:2.1.3":
- version: 2.1.3
- resolution: "@vitest/expect@npm:2.1.3"
+"@vitest/expect@npm:2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/expect@npm:2.1.8"
dependencies:
- "@vitest/spy": 2.1.3
- "@vitest/utils": 2.1.3
- chai: ^5.1.1
+ "@vitest/spy": 2.1.8
+ "@vitest/utils": 2.1.8
+ chai: ^5.1.2
tinyrainbow: ^1.2.0
- checksum: c0651cb19d50733169bbc0477ea84d063272200de73bcaf0b13436000c1c5b334589d9dbe2d4245619b3c283e9b477ae24f49117a40eb6eb83adc79f18fe2f63
+ checksum: 3e81e61dfb5222797ab5e6a70bee2d032fb382c9e7ddc4abe03114f0efbc4cc3b56fc2648e89ae26f5d9261554ea7c696b3a329c8ccea2c702cb87476e4a6842
languageName: node
linkType: hard
-"@vitest/mocker@npm:2.1.3":
- version: 2.1.3
- resolution: "@vitest/mocker@npm:2.1.3"
+"@vitest/mocker@npm:2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/mocker@npm:2.1.8"
dependencies:
- "@vitest/spy": 2.1.3
+ "@vitest/spy": 2.1.8
estree-walker: ^3.0.3
- magic-string: ^0.30.11
+ magic-string: ^0.30.12
peerDependencies:
- "@vitest/spy": 2.1.3
- msw: ^2.3.5
+ msw: ^2.4.9
vite: ^5.0.0
peerDependenciesMeta:
msw:
optional: true
vite:
optional: true
- checksum: acc8ef2b5ef391e6012198b109bf772d0a1d251c75aecb349f76e8312825513f66fb64fc9fb538398cd199553030c614b07f1305948806cc1c4785d082fd587a
+ checksum: 0022d76ff78043c0788380b4e530a03690f8a89a14d1d07c4c069c8fd828a4741d2777ebc486ca0f89b2fb8cf880a7880d6891dd7cfb8cf4339f040131a8bda2
languageName: node
linkType: hard
@@ -3446,33 +3433,33 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/pretty-format@npm:2.1.3, @vitest/pretty-format@npm:^2.1.3":
- version: 2.1.3
- resolution: "@vitest/pretty-format@npm:2.1.3"
+"@vitest/pretty-format@npm:2.1.8, @vitest/pretty-format@npm:^2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/pretty-format@npm:2.1.8"
dependencies:
tinyrainbow: ^1.2.0
- checksum: ff4aa144a49c0ee579bfae940745b70a0ca3c504f52c23f1e8f5c0642824785232f844040d31b48eea71b5a80519809810359a75d29186ab40341174c50a4a0d
+ checksum: 2214ca317a19220a5f308a4e77fe403fa091c2f006d1f5b1bd91e8fad6e167db2fdc7882e564da3518d5b2cd9dedb1e97067bb666a820519c54f1c26ac9b0c5a
languageName: node
linkType: hard
-"@vitest/runner@npm:2.1.3":
- version: 2.1.3
- resolution: "@vitest/runner@npm:2.1.3"
+"@vitest/runner@npm:2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/runner@npm:2.1.8"
dependencies:
- "@vitest/utils": 2.1.3
+ "@vitest/utils": 2.1.8
pathe: ^1.1.2
- checksum: 96cc7abdad85fc20834ee0a6ba9073e2d68d06c9d1407251bc614d1627e30f5e5a1ceb65d10024b163271bb4093d1181729f6f1d00db2c258c5a0794a00a9518
+ checksum: 50625597a01fbb55e7edf303b2ce6df7a46347bf05017ce7c4b4ce491ac6d85380aa5dd80127307f2621dc4b3b4081ef8ba1f3f825335f0af812a8e4e08d4aa2
languageName: node
linkType: hard
-"@vitest/snapshot@npm:2.1.3":
- version: 2.1.3
- resolution: "@vitest/snapshot@npm:2.1.3"
+"@vitest/snapshot@npm:2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/snapshot@npm:2.1.8"
dependencies:
- "@vitest/pretty-format": 2.1.3
- magic-string: ^0.30.11
+ "@vitest/pretty-format": 2.1.8
+ magic-string: ^0.30.12
pathe: ^1.1.2
- checksum: 94087e04f0d9bb5e11033ca11c6545b9b27b1f4b21d7cd56bd91ae2d6e06be5eed7f2e66d1544a0a866801180d4c5057c3ff5c0ce8c97abfeb979a76a150eb10
+ checksum: ff6a6033fe891c9b19fc33ef2518c29e8afca17c02c463b6b1f40e7e7d51867d5c0bb9b49f524b7c0889337a2c0cae7dcc864851a59a28d3a6e0488cecc45040
languageName: node
linkType: hard
@@ -3485,29 +3472,29 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/spy@npm:2.1.3":
- version: 2.1.3
- resolution: "@vitest/spy@npm:2.1.3"
+"@vitest/spy@npm:2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/spy@npm:2.1.8"
dependencies:
- tinyspy: ^3.0.0
- checksum: b04aad8e458087202b7a16d332365a142be055db8c4653d916ebb8d47eacf23c3edef23b3918490eed9f8cb69da240d72844c3570f38521fbe7e0647e01d0271
+ tinyspy: ^3.0.2
+ checksum: 0e497e7a7f3170f761c0dbdf983f13d09616b2bae7f640c216644f8d3d1f1a6b6e59aa1e6b75ca2a773355811f0ad6b9d7b6b14596d9b99378040917cada5d49
languageName: node
linkType: hard
-"@vitest/ui@npm:^2.1.3":
- version: 2.1.3
- resolution: "@vitest/ui@npm:2.1.3"
+"@vitest/ui@npm:^2.1.8":
+ version: 2.1.8
+ resolution: "@vitest/ui@npm:2.1.8"
dependencies:
- "@vitest/utils": 2.1.3
+ "@vitest/utils": 2.1.8
fflate: ^0.8.2
flatted: ^3.3.1
pathe: ^1.1.2
- sirv: ^2.0.4
- tinyglobby: ^0.2.6
+ sirv: ^3.0.0
+ tinyglobby: ^0.2.10
tinyrainbow: ^1.2.0
peerDependencies:
- vitest: 2.1.3
- checksum: 992639327210b70fce9f6ab6a0ea733afabf6da7ff0ebf12d3c2eaa81eccce456c9786801fa597779bf57197e4d52dfc01f5ac9f514fae9753bd41c3b3383522
+ vitest: 2.1.8
+ checksum: 0bd1f4d1d134dcdea4fc0dbd2d36fbcd40f4c76da2a3fae55d97f72bd0edf838e0898427dcbe7d318385c8ff33609a93c8e83b341d6bdb604d96d763afd97738
languageName: node
linkType: hard
@@ -3523,14 +3510,14 @@ __metadata:
languageName: node
linkType: hard
-"@vitest/utils@npm:2.1.3, @vitest/utils@npm:^2.0.5":
- version: 2.1.3
- resolution: "@vitest/utils@npm:2.1.3"
+"@vitest/utils@npm:2.1.8, @vitest/utils@npm:^2.1.1":
+ version: 2.1.8
+ resolution: "@vitest/utils@npm:2.1.8"
dependencies:
- "@vitest/pretty-format": 2.1.3
- loupe: ^3.1.1
+ "@vitest/pretty-format": 2.1.8
+ loupe: ^3.1.2
tinyrainbow: ^1.2.0
- checksum: 0c1e262600bc329fab43bb19d575326a6d38175c2bdc345bc5326b81cf34303f22a1b67a0197dc6a935c3019e2f21c4da52a49c609967bea9cb4790a44a347ce
+ checksum: 711e7998ba9785880ed416d08b478e2b881cd218d37c3d773b26477adaa6aab91758e01ac039f839175f446111118fb5aa041317b619eeeb05537e3912159eb7
languageName: node
linkType: hard
@@ -3555,17 +3542,7 @@ __metadata:
languageName: node
linkType: hard
-"accepts@npm:~1.3.8":
- version: 1.3.8
- resolution: "accepts@npm:1.3.8"
- dependencies:
- mime-types: ~2.1.34
- negotiator: 0.6.3
- checksum: 50c43d32e7b50285ebe84b613ee4a3aa426715a7d131b65b786e2ead0fd76b6b60091b9916d3478a75f11f162628a2139991b6c03ab3f1d9ab7c86075dc8eab4
- languageName: node
- linkType: hard
-
-"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.1, acorn-jsx@npm:^5.3.2":
+"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.2":
version: 5.3.2
resolution: "acorn-jsx@npm:5.3.2"
peerDependencies:
@@ -3574,13 +3551,6 @@ __metadata:
languageName: node
linkType: hard
-"acorn-walk@npm:^7.2.0":
- version: 7.2.0
- resolution: "acorn-walk@npm:7.2.0"
- checksum: 9252158a79b9d92f1bc0dd6acc0fcfb87a67339e84bcc301bb33d6078936d27e35d606b4d35626d2962cd43c256d6f27717e70cbe15c04fff999ab0b2260b21f
- languageName: node
- linkType: hard
-
"acorn-walk@npm:^8.1.1":
version: 8.3.2
resolution: "acorn-walk@npm:8.3.2"
@@ -3588,15 +3558,6 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^7.4.1":
- version: 7.4.1
- resolution: "acorn@npm:7.4.1"
- bin:
- acorn: bin/acorn
- checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407
- languageName: node
- linkType: hard
-
"acorn@npm:^8.0.0, acorn@npm:^8.14.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0":
version: 8.14.0
resolution: "acorn@npm:8.14.0"
@@ -3804,13 +3765,6 @@ __metadata:
languageName: node
linkType: hard
-"array-flatten@npm:1.1.1":
- version: 1.1.1
- resolution: "array-flatten@npm:1.1.1"
- checksum: a9925bf3512d9dce202112965de90c222cd59a4fbfce68a0951d25d965cf44642931f40aac72309c41f12df19afa010ecadceb07cfff9ccc1621e99d89ab5f3b
- languageName: node
- linkType: hard
-
"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
version: 3.1.8
resolution: "array-includes@npm:3.1.8"
@@ -4013,14 +3967,14 @@ __metadata:
languageName: node
linkType: hard
-"axios@npm:^1.7.7":
- version: 1.7.7
- resolution: "axios@npm:1.7.7"
+"axios@npm:^1.7.8":
+ version: 1.7.8
+ resolution: "axios@npm:1.7.8"
dependencies:
follow-redirects: ^1.15.6
form-data: ^4.0.0
proxy-from-env: ^1.1.0
- checksum: 882d4fe0ec694a07c7f5c1f68205eb6dc5a62aecdb632cc7a4a3d0985188ce3030e0b277e1a8260ac3f194d314ae342117660a151fabffdc5081ca0b5a8b47fe
+ checksum: 3d21652faf8e29fb36c47517d2872bb5e2285127a24f5c53ce23082c4eac7f5a88de84dd49d4a1a83068e5301dcfd9067b41e5fbd00b0d20ab7b0a843559273d
languageName: node
linkType: hard
@@ -4061,26 +4015,6 @@ __metadata:
languageName: node
linkType: hard
-"body-parser@npm:1.20.3":
- version: 1.20.3
- resolution: "body-parser@npm:1.20.3"
- dependencies:
- bytes: 3.1.2
- content-type: ~1.0.5
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- on-finished: 2.4.1
- qs: 6.13.0
- raw-body: 2.5.2
- type-is: ~1.6.18
- unpipe: 1.0.0
- checksum: 1a35c59a6be8d852b00946330141c4f142c6af0f970faa87f10ad74f1ee7118078056706a05ae3093c54dabca9cd3770fa62a170a85801da1a4324f04381167d
- languageName: node
- linkType: hard
-
"brace-expansion@npm:^1.1.7":
version: 1.1.11
resolution: "brace-expansion@npm:1.1.11"
@@ -4169,13 +4103,6 @@ __metadata:
languageName: node
linkType: hard
-"bytes@npm:3.1.2":
- version: 3.1.2
- resolution: "bytes@npm:3.1.2"
- checksum: e4bcd3948d289c5127591fbedf10c0b639ccbf00243504e4e127374a15c3bc8eed0d28d4aaab08ff6f1cf2abc0cce6ba3085ed32f4f90e82a5683ce0014e1b6e
- languageName: node
- linkType: hard
-
"cac@npm:^6.7.14":
version: 6.7.14
resolution: "cac@npm:6.7.14"
@@ -4251,16 +4178,16 @@ __metadata:
languageName: node
linkType: hard
-"chai@npm:^5.1.1":
- version: 5.1.1
- resolution: "chai@npm:5.1.1"
+"chai@npm:^5.1.1, chai@npm:^5.1.2":
+ version: 5.1.2
+ resolution: "chai@npm:5.1.2"
dependencies:
assertion-error: ^2.0.1
check-error: ^2.1.1
deep-eql: ^5.0.1
loupe: ^3.1.0
pathval: ^2.0.0
- checksum: 1e0a5e1b5febdfa8ceb97b9aff608286861ecb86533863119b2f39f07c08fb59f3c1791ab554947f009b9d71d509b9e4e734fb12133cb81f231c2c2ee7c1e738
+ checksum: f2341967ab5632612548d372c27b46219adad3af35021d8cba2ae3c262f588de2c60cb3f004e6ad40e363a9cad6d20d0de51f00e7e9ac31cce17fb05d4efa316
languageName: node
linkType: hard
@@ -4372,9 +4299,9 @@ __metadata:
languageName: node
linkType: hard
-"chromatic@npm:^11.12.6":
- version: 11.12.6
- resolution: "chromatic@npm:11.12.6"
+"chromatic@npm:^11.20.0":
+ version: 11.20.0
+ resolution: "chromatic@npm:11.20.0"
peerDependencies:
"@chromatic-com/cypress": ^0.*.* || ^1.0.0
"@chromatic-com/playwright": ^0.*.* || ^1.0.0
@@ -4387,7 +4314,7 @@ __metadata:
chroma: dist/bin.js
chromatic: dist/bin.js
chromatic-cli: dist/bin.js
- checksum: 020bf394c169719bffb59509388df3677384ec9c29219343778f202ac5f6ef3fc331c73efefdc3c70cda09f9e26e4d4f6e6567a18bff25b74eeea90b9b1e9dee
+ checksum: 71f4097731d6528f001527dc5dde6d4b6b5ee35b1a681e8bb38464183eedcc31c0375218a028a15f757bcdc29d256cf3e460457c977ea74e72986ed25cc56196
languageName: node
linkType: hard
@@ -4580,13 +4507,6 @@ __metadata:
languageName: node
linkType: hard
-"commondir@npm:^1.0.1":
- version: 1.0.1
- resolution: "commondir@npm:1.0.1"
- checksum: 59715f2fc456a73f68826285718503340b9f0dd89bfffc42749906c5cf3d4277ef11ef1cca0350d0e79204f00f1f6d83851ececc9095dc88512a697ac0b9bdcb
- languageName: node
- linkType: hard
-
"compare-versions@npm:^4.1.2":
version: 4.1.3
resolution: "compare-versions@npm:4.1.3"
@@ -4615,22 +4535,6 @@ __metadata:
languageName: node
linkType: hard
-"content-disposition@npm:0.5.4":
- version: 0.5.4
- resolution: "content-disposition@npm:0.5.4"
- dependencies:
- safe-buffer: 5.2.1
- checksum: afb9d545e296a5171d7574fcad634b2fdf698875f4006a9dd04a3e1333880c5c0c98d47b560d01216fb6505a54a2ba6a843ee3a02ec86d7e911e8315255f56c3
- languageName: node
- linkType: hard
-
-"content-type@npm:~1.0.4, content-type@npm:~1.0.5":
- version: 1.0.5
- resolution: "content-type@npm:1.0.5"
- checksum: 566271e0a251642254cde0f845f9dd4f9856e52d988f4eb0d0dcffbb7a1f8ec98de7a5215fc628f3bce30fe2fb6fd2bc064b562d721658c59b544e2d34ea2766
- languageName: node
- linkType: hard
-
"convert-source-map@npm:^2.0.0":
version: 2.0.0
resolution: "convert-source-map@npm:2.0.0"
@@ -4638,13 +4542,6 @@ __metadata:
languageName: node
linkType: hard
-"cookie-signature@npm:1.0.6":
- version: 1.0.6
- resolution: "cookie-signature@npm:1.0.6"
- checksum: f4e1b0a98a27a0e6e66fd7ea4e4e9d8e038f624058371bf4499cfcd8f3980be9a121486995202ba3fca74fbed93a407d6d54d43a43f96fd28d0bd7a06761591a
- languageName: node
- linkType: hard
-
"cookie@npm:>=0.7.0":
version: 1.0.1
resolution: "cookie@npm:1.0.1"
@@ -4823,23 +4720,14 @@ __metadata:
languageName: node
linkType: hard
-"date-fns@npm:^3.6.0":
- version: 3.6.0
- resolution: "date-fns@npm:3.6.0"
- checksum: 0daa1e9a436cf99f9f2ae9232b55e11f3dd46132bee10987164f3eebd29f245b2e066d7d7db40782627411ecf18551d8f4c9fcdf2226e48bb66545407d448ab7
- languageName: node
- linkType: hard
-
-"debug@npm:2.6.9":
- version: 2.6.9
- resolution: "debug@npm:2.6.9"
- dependencies:
- ms: 2.0.0
- checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6
+"date-fns@npm:^4.1.0":
+ version: 4.1.0
+ resolution: "date-fns@npm:4.1.0"
+ checksum: fb681b242cccabed45494468f64282a7d375ea970e0adbcc5dcc92dcb7aba49b2081c2c9739d41bf71ce89ed68dd73bebfe06ca35129490704775d091895710b
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.6, debug@npm:~4.3.6":
+"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.3.7, debug@npm:~4.3.6":
version: 4.3.7
resolution: "debug@npm:4.3.7"
dependencies:
@@ -4981,7 +4869,7 @@ __metadata:
languageName: node
linkType: hard
-"depd@npm:2.0.0, depd@npm:^2.0.0":
+"depd@npm:^2.0.0":
version: 2.0.0
resolution: "depd@npm:2.0.0"
checksum: abbe19c768c97ee2eed6282d8ce3031126662252c58d711f646921c9623f9052e3e1906443066beec1095832f534e57c523b7333f8e7e0d93051ab6baef5ab3a
@@ -4995,13 +4883,6 @@ __metadata:
languageName: node
linkType: hard
-"destroy@npm:1.2.0, destroy@npm:^1.2.0":
- version: 1.2.0
- resolution: "destroy@npm:1.2.0"
- checksum: 0acb300b7478a08b92d810ab229d5afe0d2f4399272045ab22affa0d99dbaf12637659411530a6fcd597a9bdac718fc94373a61a95b4651bbc7b83684a565e38
- languageName: node
- linkType: hard
-
"detect-libc@npm:^1.0.3":
version: 1.0.3
resolution: "detect-libc@npm:1.0.3"
@@ -5095,10 +4976,15 @@ __metadata:
languageName: node
linkType: hard
-"dompurify@npm:^3.1.7":
- version: 3.1.7
- resolution: "dompurify@npm:3.1.7"
- checksum: 0a9b811bbc94f3dba60cf6486962362b0f1a5b4ab789f5e1cbd4749b6ba1a1fad190a677a962dc8850ce28764424765fe425e9d6508e4e93ba648ef15d54bc24
+"dompurify@npm:*, dompurify@npm:^3.2.2":
+ version: 3.2.2
+ resolution: "dompurify@npm:3.2.2"
+ dependencies:
+ "@types/trusted-types": ^2.0.7
+ dependenciesMeta:
+ "@types/trusted-types":
+ optional: true
+ checksum: e4831baa447cc7ed4350ede29f7ec4d2614a59287b6916f3691d287dd4a1c45eb3ce9cb26058edf37b3f2648bbf0a3ca5fb3b74c2f78bdcf6ebb7716c2f14252
languageName: node
linkType: hard
@@ -5159,13 +5045,6 @@ __metadata:
languageName: node
linkType: hard
-"ee-first@npm:1.1.1":
- version: 1.1.1
- resolution: "ee-first@npm:1.1.1"
- checksum: 1b4cac778d64ce3b582a7e26b218afe07e207a0f9bfe13cc7395a6d307849cfe361e65033c3251e00c27dd060cab43014c2d6b2647676135e18b77d2d05b3f4f
- languageName: node
- linkType: hard
-
"electron-to-chromium@npm:^1.5.41":
version: 1.5.42
resolution: "electron-to-chromium@npm:1.5.42"
@@ -5201,20 +5080,6 @@ __metadata:
languageName: node
linkType: hard
-"encodeurl@npm:^2.0.0, encodeurl@npm:~2.0.0":
- version: 2.0.0
- resolution: "encodeurl@npm:2.0.0"
- checksum: abf5cd51b78082cf8af7be6785813c33b6df2068ce5191a40ca8b1afe6a86f9230af9a9ce694a5ce4665955e5c1120871826df9c128a642e09c58d592e2807fe
- languageName: node
- linkType: hard
-
-"encodeurl@npm:~1.0.2":
- version: 1.0.2
- resolution: "encodeurl@npm:1.0.2"
- checksum: e50e3d508cdd9c4565ba72d2012e65038e5d71bdc9198cb125beb6237b5b1ade6c0d343998da9e170fb2eae52c1bed37d4d6d98a46ea423a0cddbed5ac3f780c
- languageName: node
- linkType: hard
-
"encoding@npm:^0.1.13":
version: 0.1.13
resolution: "encoding@npm:0.1.13"
@@ -5380,10 +5245,10 @@ __metadata:
languageName: node
linkType: hard
-"es-module-lexer@npm:^1.5.0":
- version: 1.5.3
- resolution: "es-module-lexer@npm:1.5.3"
- checksum: 2e0a0936fb49ca072d438128f588d5b46974035f7a1362bdb26447868016243cfd1c5ec8f12e80d273749e8c603f5aba5a828d5c2d95c07f61fbe77ab4fce4af
+"es-module-lexer@npm:^1.5.4":
+ version: 1.5.4
+ resolution: "es-module-lexer@npm:1.5.4"
+ checksum: a0cf04fb92d052647ac7d818d1913b98d3d3d0f5b9d88f0eafb993436e4c3e2c958599db68839d57f2dfa281fdf0f60e18d448eb78fc292c33c0f25635b6854f
languageName: node
linkType: hard
@@ -5438,34 +5303,34 @@ __metadata:
languageName: node
linkType: hard
-"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0, esbuild@npm:~0.23.0":
- version: 0.23.1
- resolution: "esbuild@npm:0.23.1"
- dependencies:
- "@esbuild/aix-ppc64": 0.23.1
- "@esbuild/android-arm": 0.23.1
- "@esbuild/android-arm64": 0.23.1
- "@esbuild/android-x64": 0.23.1
- "@esbuild/darwin-arm64": 0.23.1
- "@esbuild/darwin-x64": 0.23.1
- "@esbuild/freebsd-arm64": 0.23.1
- "@esbuild/freebsd-x64": 0.23.1
- "@esbuild/linux-arm": 0.23.1
- "@esbuild/linux-arm64": 0.23.1
- "@esbuild/linux-ia32": 0.23.1
- "@esbuild/linux-loong64": 0.23.1
- "@esbuild/linux-mips64el": 0.23.1
- "@esbuild/linux-ppc64": 0.23.1
- "@esbuild/linux-riscv64": 0.23.1
- "@esbuild/linux-s390x": 0.23.1
- "@esbuild/linux-x64": 0.23.1
- "@esbuild/netbsd-x64": 0.23.1
- "@esbuild/openbsd-arm64": 0.23.1
- "@esbuild/openbsd-x64": 0.23.1
- "@esbuild/sunos-x64": 0.23.1
- "@esbuild/win32-arm64": 0.23.1
- "@esbuild/win32-ia32": 0.23.1
- "@esbuild/win32-x64": 0.23.1
+"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0":
+ version: 0.24.0
+ resolution: "esbuild@npm:0.24.0"
+ dependencies:
+ "@esbuild/aix-ppc64": 0.24.0
+ "@esbuild/android-arm": 0.24.0
+ "@esbuild/android-arm64": 0.24.0
+ "@esbuild/android-x64": 0.24.0
+ "@esbuild/darwin-arm64": 0.24.0
+ "@esbuild/darwin-x64": 0.24.0
+ "@esbuild/freebsd-arm64": 0.24.0
+ "@esbuild/freebsd-x64": 0.24.0
+ "@esbuild/linux-arm": 0.24.0
+ "@esbuild/linux-arm64": 0.24.0
+ "@esbuild/linux-ia32": 0.24.0
+ "@esbuild/linux-loong64": 0.24.0
+ "@esbuild/linux-mips64el": 0.24.0
+ "@esbuild/linux-ppc64": 0.24.0
+ "@esbuild/linux-riscv64": 0.24.0
+ "@esbuild/linux-s390x": 0.24.0
+ "@esbuild/linux-x64": 0.24.0
+ "@esbuild/netbsd-x64": 0.24.0
+ "@esbuild/openbsd-arm64": 0.24.0
+ "@esbuild/openbsd-x64": 0.24.0
+ "@esbuild/sunos-x64": 0.24.0
+ "@esbuild/win32-arm64": 0.24.0
+ "@esbuild/win32-ia32": 0.24.0
+ "@esbuild/win32-x64": 0.24.0
dependenciesMeta:
"@esbuild/aix-ppc64":
optional: true
@@ -5517,7 +5382,7 @@ __metadata:
optional: true
bin:
esbuild: bin/esbuild
- checksum: 0413c3b9257327fb598427688b7186ea335bf1693746fe5713cc93c95854d6388b8ed4ad643fddf5b5ace093f7dcd9038dd58e087bf2da1f04dfb4c5571660af
+ checksum: dd386d92a05c7eb03078480522cdd8b40c434777b5f08487c27971d30933ecaae3f08bd221958dd8f9c66214915cdc85f844283ca9bdbf8ee703d889ae526edd
languageName: node
linkType: hard
@@ -5601,6 +5466,89 @@ __metadata:
languageName: node
linkType: hard
+"esbuild@npm:~0.23.0":
+ version: 0.23.1
+ resolution: "esbuild@npm:0.23.1"
+ dependencies:
+ "@esbuild/aix-ppc64": 0.23.1
+ "@esbuild/android-arm": 0.23.1
+ "@esbuild/android-arm64": 0.23.1
+ "@esbuild/android-x64": 0.23.1
+ "@esbuild/darwin-arm64": 0.23.1
+ "@esbuild/darwin-x64": 0.23.1
+ "@esbuild/freebsd-arm64": 0.23.1
+ "@esbuild/freebsd-x64": 0.23.1
+ "@esbuild/linux-arm": 0.23.1
+ "@esbuild/linux-arm64": 0.23.1
+ "@esbuild/linux-ia32": 0.23.1
+ "@esbuild/linux-loong64": 0.23.1
+ "@esbuild/linux-mips64el": 0.23.1
+ "@esbuild/linux-ppc64": 0.23.1
+ "@esbuild/linux-riscv64": 0.23.1
+ "@esbuild/linux-s390x": 0.23.1
+ "@esbuild/linux-x64": 0.23.1
+ "@esbuild/netbsd-x64": 0.23.1
+ "@esbuild/openbsd-arm64": 0.23.1
+ "@esbuild/openbsd-x64": 0.23.1
+ "@esbuild/sunos-x64": 0.23.1
+ "@esbuild/win32-arm64": 0.23.1
+ "@esbuild/win32-ia32": 0.23.1
+ "@esbuild/win32-x64": 0.23.1
+ dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
+ "@esbuild/android-arm":
+ optional: true
+ "@esbuild/android-arm64":
+ optional: true
+ "@esbuild/android-x64":
+ optional: true
+ "@esbuild/darwin-arm64":
+ optional: true
+ "@esbuild/darwin-x64":
+ optional: true
+ "@esbuild/freebsd-arm64":
+ optional: true
+ "@esbuild/freebsd-x64":
+ optional: true
+ "@esbuild/linux-arm":
+ optional: true
+ "@esbuild/linux-arm64":
+ optional: true
+ "@esbuild/linux-ia32":
+ optional: true
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
+ optional: true
+ "@esbuild/linux-s390x":
+ optional: true
+ "@esbuild/linux-x64":
+ optional: true
+ "@esbuild/netbsd-x64":
+ optional: true
+ "@esbuild/openbsd-arm64":
+ optional: true
+ "@esbuild/openbsd-x64":
+ optional: true
+ "@esbuild/sunos-x64":
+ optional: true
+ "@esbuild/win32-arm64":
+ optional: true
+ "@esbuild/win32-ia32":
+ optional: true
+ "@esbuild/win32-x64":
+ optional: true
+ bin:
+ esbuild: bin/esbuild
+ checksum: 0413c3b9257327fb598427688b7186ea335bf1693746fe5713cc93c95854d6388b8ed4ad643fddf5b5ace093f7dcd9038dd58e087bf2da1f04dfb4c5571660af
+ languageName: node
+ linkType: hard
+
"escalade@npm:^3.1.1, escalade@npm:^3.2.0":
version: 3.2.0
resolution: "escalade@npm:3.2.0"
@@ -5608,13 +5556,6 @@ __metadata:
languageName: node
linkType: hard
-"escape-html@npm:^1.0.3, escape-html@npm:~1.0.3":
- version: 1.0.3
- resolution: "escape-html@npm:1.0.3"
- checksum: 6213ca9ae00d0ab8bccb6d8d4e0a98e76237b2410302cf7df70aaa6591d509a2a37ce8998008cbecae8fc8ffaadf3fb0229535e6a145f3ce0b211d060decbb24
- languageName: node
- linkType: hard
-
"escape-string-regexp@npm:^1.0.5":
version: 1.0.5
resolution: "escape-string-regexp@npm:1.0.5"
@@ -5636,24 +5577,6 @@ __metadata:
languageName: node
linkType: hard
-"escodegen@npm:^2.1.0":
- version: 2.1.0
- resolution: "escodegen@npm:2.1.0"
- dependencies:
- esprima: ^4.0.1
- estraverse: ^5.2.0
- esutils: ^2.0.2
- source-map: ~0.6.1
- dependenciesMeta:
- source-map:
- optional: true
- bin:
- escodegen: bin/escodegen.js
- esgenerate: bin/esgenerate.js
- checksum: 096696407e161305cd05aebb95134ad176708bc5cb13d0dcc89a5fcbb959b8ed757e7f2591a5f8036f8f4952d4a724de0df14cd419e29212729fa6df5ce16bf6
- languageName: node
- linkType: hard
-
"eslint-config-prettier@npm:^9.1.0":
version: 9.1.0
resolution: "eslint-config-prettier@npm:9.1.0"
@@ -5742,9 +5665,9 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-jest-dom@npm:^5.4.0":
- version: 5.4.0
- resolution: "eslint-plugin-jest-dom@npm:5.4.0"
+"eslint-plugin-jest-dom@npm:^5.5.0":
+ version: 5.5.0
+ resolution: "eslint-plugin-jest-dom@npm:5.5.0"
dependencies:
"@babel/runtime": ^7.16.3
requireindex: ^1.2.0
@@ -5754,7 +5677,7 @@ __metadata:
peerDependenciesMeta:
"@testing-library/dom":
optional: true
- checksum: 0e1d27ca040a7d7e698b7f1d4a480be4821ccad03f322360fb75723e558b4d00d86fdbf4aaf5f07f4bc259fd35a91fd14ea0f8ca788cc3e28db399c8ff653a6f
+ checksum: 4423ef06fae815d8278c0310b83dd7c97e44282a858fe259dca95affdb1ef53661c22eaa566f0202d391bf6fd07f57346aa26f3c2d36f34e7581394cf2e70221
languageName: node
linkType: hard
@@ -5783,14 +5706,14 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-playwright@npm:^2.0.0":
- version: 2.0.0
- resolution: "eslint-plugin-playwright@npm:2.0.0"
+"eslint-plugin-playwright@npm:^2.1.0":
+ version: 2.1.0
+ resolution: "eslint-plugin-playwright@npm:2.1.0"
dependencies:
globals: ^13.23.0
peerDependencies:
eslint: ">=8.40.0"
- checksum: 3621107bafe84801a09f664cb0744772ebfd0c235ad2cab7110b80122d1448088a08f6ad6727b5f2658a525bc0be0bde5b97e9a399de4edb5e90fd8600cef476
+ checksum: 0d4034219da22e0611124bd8377cd30b5cc9d561ff58b6c8f17e934d494578cdf9587f6db9c68f8755ade4629d28cdf63f7f48753eba8be369ef824fbf6f8f9e
languageName: node
linkType: hard
@@ -5840,16 +5763,16 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-storybook@npm:^0.10.1":
- version: 0.10.1
- resolution: "eslint-plugin-storybook@npm:0.10.1"
+"eslint-plugin-storybook@npm:^0.11.1":
+ version: 0.11.1
+ resolution: "eslint-plugin-storybook@npm:0.11.1"
dependencies:
"@storybook/csf": ^0.1.11
"@typescript-eslint/utils": ^8.8.1
ts-dedent: ^2.2.0
peerDependencies:
eslint: ">=6"
- checksum: 728442f4ef23d3734207d878a22a2636c1644b34b807d410da3c013a894acd34c8b38d85264097d08b99c59a55f4871d0277fce72b2145288601c9db69dee9ca
+ checksum: 8b8eb30b598f3c44c2bbf921e318215338f1159c1fba2d2f6cd5bc0b2ec14515655cf1760b5e11355baddabc2ac8446d4dc18ee6df6d2252555b126ff649a421
languageName: node
linkType: hard
@@ -5976,7 +5899,7 @@ __metadata:
languageName: node
linkType: hard
-"esprima@npm:^4.0.1, esprima@npm:~4.0.0":
+"esprima@npm:~4.0.0":
version: 4.0.1
resolution: "esprima@npm:4.0.1"
bin:
@@ -6116,13 +6039,6 @@ __metadata:
languageName: node
linkType: hard
-"etag@npm:^1.8.1, etag@npm:~1.8.1":
- version: 1.8.1
- resolution: "etag@npm:1.8.1"
- checksum: 571aeb3dbe0f2bbd4e4fadbdb44f325fc75335cd5f6f6b6a091e6a06a9f25ed5392f0863c5442acb0646787446e816f13cbfc6edce5b07658541dff573cab1ff
- languageName: node
- linkType: hard
-
"eventemitter3@npm:^4.0.4":
version: 4.0.7
resolution: "eventemitter3@npm:4.0.7"
@@ -6154,6 +6070,13 @@ __metadata:
languageName: node
linkType: hard
+"expect-type@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "expect-type@npm:1.1.0"
+ checksum: 65d25ec10bca32bcf650dcfe734532acc4b7a73677c656f299a7cbed273b5c4d6a3dab11af76f452645d54a95c4ef39fc73772f2c8eb6684ba35672958d6f3b3
+ languageName: node
+ linkType: hard
+
"exponential-backoff@npm:^3.1.1":
version: 3.1.1
resolution: "exponential-backoff@npm:3.1.1"
@@ -6168,45 +6091,6 @@ __metadata:
languageName: node
linkType: hard
-"express@npm:^4.19.2":
- version: 4.20.0
- resolution: "express@npm:4.20.0"
- dependencies:
- accepts: ~1.3.8
- array-flatten: 1.1.1
- body-parser: 1.20.3
- content-disposition: 0.5.4
- content-type: ~1.0.4
- cookie: 0.6.0
- cookie-signature: 1.0.6
- debug: 2.6.9
- depd: 2.0.0
- encodeurl: ~2.0.0
- escape-html: ~1.0.3
- etag: ~1.8.1
- finalhandler: 1.2.0
- fresh: 0.5.2
- http-errors: 2.0.0
- merge-descriptors: 1.0.3
- methods: ~1.1.2
- on-finished: 2.4.1
- parseurl: ~1.3.3
- path-to-regexp: 0.1.10
- proxy-addr: ~2.0.7
- qs: 6.11.0
- range-parser: ~1.2.1
- safe-buffer: 5.2.1
- send: 0.19.0
- serve-static: 1.16.0
- setprototypeof: 1.2.0
- statuses: 2.0.1
- type-is: ~1.6.18
- utils-merge: 1.0.1
- vary: ~1.1.2
- checksum: faa11bffa16be97b26d9f38187e569378c01cad0b92fbd02094fb4e35a224dc5177cc9cc6849141702da80d2d8cbe857c60a7e622e8106695405dc27e38fb3ee
- languageName: node
- linkType: hard
-
"extend@npm:^3.0.0":
version: 3.0.2
resolution: "extend@npm:3.0.2"
@@ -6273,7 +6157,7 @@ __metadata:
languageName: node
linkType: hard
-"fdir@npm:^6.4.0":
+"fdir@npm:^6.4.2":
version: 6.4.2
resolution: "fdir@npm:6.4.2"
peerDependencies:
@@ -6314,44 +6198,8 @@ __metadata:
version: 7.1.1
resolution: "fill-range@npm:7.1.1"
dependencies:
- to-regex-range: ^5.0.1
- checksum: b4abfbca3839a3d55e4ae5ec62e131e2e356bf4859ce8480c64c4876100f4df292a63e5bb1618e1d7460282ca2b305653064f01654474aa35c68000980f17798
- languageName: node
- linkType: hard
-
-"finalhandler@npm:1.2.0":
- version: 1.2.0
- resolution: "finalhandler@npm:1.2.0"
- dependencies:
- debug: 2.6.9
- encodeurl: ~1.0.2
- escape-html: ~1.0.3
- on-finished: 2.4.1
- parseurl: ~1.3.3
- statuses: 2.0.1
- unpipe: ~1.0.0
- checksum: 92effbfd32e22a7dff2994acedbd9bcc3aa646a3e919ea6a53238090e87097f8ef07cced90aa2cc421abdf993aefbdd5b00104d55c7c5479a8d00ed105b45716
- languageName: node
- linkType: hard
-
-"find-cache-dir@npm:^3.0.0":
- version: 3.3.2
- resolution: "find-cache-dir@npm:3.3.2"
- dependencies:
- commondir: ^1.0.1
- make-dir: ^3.0.2
- pkg-dir: ^4.1.0
- checksum: 1e61c2e64f5c0b1c535bd85939ae73b0e5773142713273818cc0b393ee3555fb0fd44e1a5b161b8b6c3e03e98c2fcc9c227d784850a13a90a8ab576869576817
- languageName: node
- linkType: hard
-
-"find-up@npm:^4.0.0":
- version: 4.1.0
- resolution: "find-up@npm:4.1.0"
- dependencies:
- locate-path: ^5.0.0
- path-exists: ^4.0.0
- checksum: 4c172680e8f8c1f78839486e14a43ef82e9decd0e74145f40707cc42e7420506d5ec92d9a11c22bd2c48fb0c384ea05dd30e10dd152fefeec6f2f75282a8b844
+ to-regex-range: ^5.0.1
+ checksum: b4abfbca3839a3d55e4ae5ec62e131e2e356bf4859ce8480c64c4876100f4df292a63e5bb1618e1d7460282ca2b305653064f01654474aa35c68000980f17798
languageName: node
linkType: hard
@@ -6471,13 +6319,6 @@ __metadata:
languageName: node
linkType: hard
-"forwarded@npm:0.2.0":
- version: 0.2.0
- resolution: "forwarded@npm:0.2.0"
- checksum: fd27e2394d8887ebd16a66ffc889dc983fbbd797d5d3f01087c020283c0f019a7d05ee85669383d8e0d216b116d720fc0cef2f6e9b7eb9f4c90c6e0bc7fd28e6
- languageName: node
- linkType: hard
-
"fraction.js@npm:^4.3.7":
version: 4.3.7
resolution: "fraction.js@npm:4.3.7"
@@ -6485,13 +6326,6 @@ __metadata:
languageName: node
linkType: hard
-"fresh@npm:0.5.2, fresh@npm:^0.5.2":
- version: 0.5.2
- resolution: "fresh@npm:0.5.2"
- checksum: 13ea8b08f91e669a64e3ba3a20eb79d7ca5379a81f1ff7f4310d54e2320645503cc0c78daedc93dfb6191287295f6479544a649c64d8e41a1c0fb0c221552346
- languageName: node
- linkType: hard
-
"fs-extra@npm:^11.1.0":
version: 11.1.1
resolution: "fs-extra@npm:11.1.1"
@@ -6641,13 +6475,6 @@ __metadata:
languageName: node
linkType: hard
-"get-func-name@npm:^2.0.1":
- version: 2.0.2
- resolution: "get-func-name@npm:2.0.2"
- checksum: 3f62f4c23647de9d46e6f76d2b3eafe58933a9b3830c60669e4180d6c601ce1b4aa310ba8366143f55e52b139f992087a9f0647274e8745621fa2af7e0acf13b
- languageName: node
- linkType: hard
-
"get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4":
version: 1.2.4
resolution: "get-intrinsic@npm:1.2.4"
@@ -6713,17 +6540,6 @@ __metadata:
languageName: node
linkType: hard
-"glob-promise@npm:^4.2.0":
- version: 4.2.2
- resolution: "glob-promise@npm:4.2.2"
- dependencies:
- "@types/glob": ^7.1.3
- peerDependencies:
- glob: ^7.1.6
- checksum: c1a3d95f7c8393e4151d4899ec4e42bb2e8237160f840ad1eccbe9247407da8b6c13e28f463022e011708bc40862db87b9b77236d35afa3feb8aa86d518f2dfe
- languageName: node
- linkType: hard
-
"glob@npm:^10.2.2, glob@npm:^10.4.1":
version: 10.4.5
resolution: "glob@npm:10.4.5"
@@ -6740,7 +6556,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.2.0":
+"glob@npm:^7.1.3, glob@npm:^7.1.4":
version: 9.3.5
resolution: "glob@npm:9.3.5"
dependencies:
@@ -6775,10 +6591,10 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^15.11.0":
- version: 15.11.0
- resolution: "globals@npm:15.11.0"
- checksum: ef32d5ef987f3d4b47fc2e389a0b235f6a46f605160c4e405722fd7b576106ca407cb867e66fd1e0fc43b631800e2e2e71847f37691026d813f96f40339da702
+"globals@npm:^15.13.0":
+ version: 15.13.0
+ resolution: "globals@npm:15.13.0"
+ checksum: 3f98514ce25a21150b246fbd63aeaeb271a93b3340cf7f4f6e9934d3b37dbb4b0fddef9c470183097dcfd2e8757bb86bbae701588f0e376667d8d9d6f665db3b
languageName: node
linkType: hard
@@ -6964,24 +6780,6 @@ __metadata:
languageName: node
linkType: hard
-"hast-util-heading-rank@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-heading-rank@npm:3.0.0"
- dependencies:
- "@types/hast": ^3.0.0
- checksum: e5ce4ec9e8017b24ab72702fa0dd401ec6eaf32574120d71c2aa4e8e0f43829dba2e291f49d305a47e8d65b82a9c5adad7985385dc5bc8370f8cec7c8f9313d3
- languageName: node
- linkType: hard
-
-"hast-util-is-element@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-is-element@npm:3.0.0"
- dependencies:
- "@types/hast": ^3.0.0
- checksum: 82569a420eda5877c52fdbbdbe26675f012c02d70813dfd19acffdee328e42e4bd0b7ae34454cfcbcb932b2bedbd7ddc119f943a0cfb234120f9456d6c0c4331
- languageName: node
- linkType: hard
-
"hast-util-parse-selector@npm:^4.0.0":
version: 4.0.0
resolution: "hast-util-parse-selector@npm:4.0.0"
@@ -7077,15 +6875,6 @@ __metadata:
languageName: node
linkType: hard
-"hast-util-to-string@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-to-string@npm:3.0.0"
- dependencies:
- "@types/hast": ^3.0.0
- checksum: 64f7f4f2b7a69b2ebddd1c87a29eae5f718d593d2154a46de2fa21f6ca8bfbda50ad71a5794f5952ae450f4da23a8bc811db348098b09916b9553cd933aefe9a
- languageName: node
- linkType: hard
-
"hast-util-whitespace@npm:^3.0.0":
version: 3.0.0
resolution: "hast-util-whitespace@npm:3.0.0"
@@ -7147,13 +6936,6 @@ __metadata:
languageName: node
linkType: hard
-"html-tags@npm:^3.1.0":
- version: 3.3.0
- resolution: "html-tags@npm:3.3.0"
- checksum: 79847bb55dc1c3e5d0b083893e0d454f05a2eec435e28dbd19a80586d402dbbb14353ef19c44baf4c4a2cdd1903d941a016e3a0a306f5376e708fd1c9ba13ff7
- languageName: node
- linkType: hard
-
"html-to-text@npm:^9.0.5":
version: 9.0.5
resolution: "html-to-text@npm:9.0.5"
@@ -7200,19 +6982,6 @@ __metadata:
languageName: node
linkType: hard
-"http-errors@npm:2.0.0, http-errors@npm:^2.0.0":
- version: 2.0.0
- resolution: "http-errors@npm:2.0.0"
- dependencies:
- depd: 2.0.0
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 2.0.1
- toidentifier: 1.0.1
- checksum: 9b0a3782665c52ce9dc658a0d1560bcb0214ba5699e4ea15aefb2a496e2ca83db03ebc42e1cce4ac1f413e4e0d2d736a3fd755772c556a9a06853ba2a0b7d920
- languageName: node
- linkType: hard
-
"http-proxy-agent@npm:^5.0.0":
version: 5.0.0
resolution: "http-proxy-agent@npm:5.0.0"
@@ -7279,15 +7048,6 @@ __metadata:
languageName: node
linkType: hard
-"iconv-lite@npm:0.4.24":
- version: 0.4.24
- resolution: "iconv-lite@npm:0.4.24"
- dependencies:
- safer-buffer: ">= 2.1.2 < 3"
- checksum: bd9f120f5a5b306f0bc0b9ae1edeb1577161503f5f8252a20f1a9e56ef8775c9959fd01c55f2d3a39d9a8abaf3e30c1abeb1895f367dcbbe0a8fd1c9ca01c4f6
- languageName: node
- linkType: hard
-
"iconv-lite@npm:0.6.3, iconv-lite@npm:^0.6.2":
version: 0.6.3
resolution: "iconv-lite@npm:0.6.3"
@@ -7304,10 +7064,10 @@ __metadata:
languageName: node
linkType: hard
-"immutable@npm:^4.0.0":
- version: 4.1.0
- resolution: "immutable@npm:4.1.0"
- checksum: b9bc1f14fb18eb382d48339c064b24a1f97ae4cf43102e0906c0a6e186a27afcd18b55ca4a0b63c98eefb58143e2b5ebc7755a5fb4da4a7ad84b7a6096ac5b13
+"immutable@npm:^5.0.2":
+ version: 5.0.3
+ resolution: "immutable@npm:5.0.3"
+ checksum: b2fcfc75aff29634babfcf6afb102111d7bc3858bfc55c17c5ad5eedf11085fe8b72d59fac883c6cfe9b2ec6e72cc184dec88782d5375ab17dc4eb25e3a665ed
languageName: node
linkType: hard
@@ -7335,7 +7095,7 @@ __metadata:
languageName: node
linkType: hard
-"inherits@npm:2.0.4, inherits@npm:^2.0.3":
+"inherits@npm:^2.0.3":
version: 2.0.4
resolution: "inherits@npm:2.0.4"
checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1
@@ -7379,20 +7139,6 @@ __metadata:
languageName: node
linkType: hard
-"ipaddr.js@npm:1.9.1":
- version: 1.9.1
- resolution: "ipaddr.js@npm:1.9.1"
- checksum: f88d3825981486f5a1942414c8d77dd6674dd71c065adcfa46f578d677edcb99fda25af42675cb59db492fdf427b34a5abfcde3982da11a8fd83a500b41cfe77
- languageName: node
- linkType: hard
-
-"is-absolute-url@npm:^4.0.0":
- version: 4.0.1
- resolution: "is-absolute-url@npm:4.0.1"
- checksum: de172a718439982a54477fdae55f21be69ec0e6a4b205db5484975d2f4ee749851fd46c28f3790dfc51a274c2ed1d0f8457b6d1fff02ab829069fd9cc761e48c
- languageName: node
- linkType: hard
-
"is-alphabetical@npm:^2.0.0":
version: 2.0.1
resolution: "is-alphabetical@npm:2.0.1"
@@ -7662,7 +7408,7 @@ __metadata:
languageName: node
linkType: hard
-"is-plain-object@npm:5.0.0, is-plain-object@npm:^5.0.0":
+"is-plain-object@npm:^5.0.0":
version: 5.0.0
resolution: "is-plain-object@npm:5.0.0"
checksum: e32d27061eef62c0847d303125440a38660517e586f2f3db7c9d179ae5b6674ab0f469d519b2e25c147a1a3bc87156d0d5f4d8821e0ce4a9ee7fe1fcf11ce45c
@@ -8175,15 +7921,6 @@ __metadata:
languageName: node
linkType: hard
-"locate-path@npm:^5.0.0":
- version: 5.0.0
- resolution: "locate-path@npm:5.0.0"
- dependencies:
- p-locate: ^4.1.0
- checksum: 83e51725e67517287d73e1ded92b28602e3ae5580b301fe54bfb76c0c723e3f285b19252e375712316774cf52006cb236aed5704692c32db0d5d089b69696e30
- languageName: node
- linkType: hard
-
"locate-path@npm:^6.0.0":
version: 6.0.0
resolution: "locate-path@npm:6.0.0"
@@ -8252,12 +7989,10 @@ __metadata:
languageName: node
linkType: hard
-"loupe@npm:^3.1.0, loupe@npm:^3.1.1":
- version: 3.1.1
- resolution: "loupe@npm:3.1.1"
- dependencies:
- get-func-name: ^2.0.1
- checksum: c7efa6bc6d71f25ca03eb13c9a069e35ed86799e308ca27a7a3eff8cdf9500e7c22d1f2411468d154a8e960e91e5e685e0c6c83e96db748f177c1adf30811153
+"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2":
+ version: 3.1.2
+ resolution: "loupe@npm:3.1.2"
+ checksum: 4a75bbe8877a1ced3603e08b1095cd6f4c987c50fe63719fdc3009029560f91e07a915e7f6eff1322bb62bfb2a2beeef06b13ccb3c12f81bda9f3674434dcab9
languageName: node
linkType: hard
@@ -8311,32 +8046,23 @@ __metadata:
languageName: node
linkType: hard
-"magic-string@npm:^0.30.0, magic-string@npm:^0.30.11":
- version: 0.30.12
- resolution: "magic-string@npm:0.30.12"
+"magic-string@npm:^0.30.0, magic-string@npm:^0.30.12":
+ version: 0.30.14
+ resolution: "magic-string@npm:0.30.14"
dependencies:
"@jridgewell/sourcemap-codec": ^1.5.0
- checksum: 3f0d23b74371765f0e6cad4284eebba0ac029c7a55e39292de5aa92281afb827138cb2323d24d2924f6b31f138c3783596c5ccaa98653fe9cf122e1f81325b59
+ checksum: 67b3b2d817a7c4e94cb63e2dcaffbeee3b76ff0798eeaee8159a6ff4faee30db824375b2cadbf43807b56c6802fe6373b40d02567d489593017012d74ec0b719
languageName: node
linkType: hard
-"magicast@npm:^0.3.4":
- version: 0.3.4
- resolution: "magicast@npm:0.3.4"
+"magicast@npm:^0.3.5":
+ version: 0.3.5
+ resolution: "magicast@npm:0.3.5"
dependencies:
- "@babel/parser": ^7.24.4
- "@babel/types": ^7.24.0
+ "@babel/parser": ^7.25.4
+ "@babel/types": ^7.25.4
source-map-js: ^1.2.0
- checksum: 9cc84b8424d2c9b03533c16abec5b29f3897619a07714232c602382660867140858f54f482da2b9968ba4b89e198e66578f483415256c4eb2656ae7265bbb2de
- languageName: node
- linkType: hard
-
-"make-dir@npm:^3.0.2":
- version: 3.1.0
- resolution: "make-dir@npm:3.1.0"
- dependencies:
- semver: ^6.0.0
- checksum: 484200020ab5a1fdf12f393fe5f385fc8e4378824c940fba1729dcd198ae4ff24867bc7a5646331e50cead8abff5d9270c456314386e629acec6dff4b8016b78
+ checksum: 668f07ade907a44bccfc9a9321588473f6d5fa25329aa26b9ad9a3bf87cc2e6f9c482cbdd3e33c0b9ab9b79c065630c599cc055a12f881c8c924ee0d7282cdce
languageName: node
linkType: hard
@@ -8393,15 +8119,6 @@ __metadata:
languageName: node
linkType: hard
-"markdown-to-jsx@npm:^7.4.5":
- version: 7.4.7
- resolution: "markdown-to-jsx@npm:7.4.7"
- peerDependencies:
- react: ">= 0.14.0"
- checksum: bb8a696c8a95dd67ac1eb44255f31cf17e60b6c2ff03bfcd51b5e28da17856c57d7a16da59fda7f3a4eedb01d7e92eeef57a10ff3abd5431e5c80059d4565016
- languageName: node
- linkType: hard
-
"matches-selector@npm:^1.0.0":
version: 1.2.0
resolution: "matches-selector@npm:1.2.0"
@@ -8563,13 +8280,6 @@ __metadata:
languageName: node
linkType: hard
-"media-typer@npm:0.3.0":
- version: 0.3.0
- resolution: "media-typer@npm:0.3.0"
- checksum: af1b38516c28ec95d6b0826f6c8f276c58aec391f76be42aa07646b4e39d317723e869700933ca6995b056db4b09a78c92d5440dc23657e6764be5d28874bba1
- languageName: node
- linkType: hard
-
"memoizerific@npm:^1.11.3":
version: 1.11.3
resolution: "memoizerific@npm:1.11.3"
@@ -8586,13 +8296,6 @@ __metadata:
languageName: node
linkType: hard
-"merge-descriptors@npm:1.0.3":
- version: 1.0.3
- resolution: "merge-descriptors@npm:1.0.3"
- checksum: 52117adbe0313d5defa771c9993fe081e2d2df9b840597e966aadafde04ae8d0e3da46bac7ca4efc37d4d2b839436582659cd49c6a43eacb3fe3050896a105d1
- languageName: node
- linkType: hard
-
"merge-stream@npm:^2.0.0":
version: 2.0.0
resolution: "merge-stream@npm:2.0.0"
@@ -8607,13 +8310,6 @@ __metadata:
languageName: node
linkType: hard
-"methods@npm:~1.1.2":
- version: 1.1.2
- resolution: "methods@npm:1.1.2"
- checksum: 0917ff4041fa8e2f2fda5425a955fe16ca411591fbd123c0d722fcf02b73971ed6f764d85f0a6f547ce49ee0221ce2c19a5fa692157931cecb422984f1dcd13a
- languageName: node
- linkType: hard
-
"micromark-core-commonmark@npm:^2.0.0":
version: 2.0.0
resolution: "micromark-core-commonmark@npm:2.0.0"
@@ -8987,7 +8683,7 @@ __metadata:
languageName: node
linkType: hard
-"mime-types@npm:^2.1.12, mime-types@npm:^2.1.35, mime-types@npm:~2.1.24, mime-types@npm:~2.1.34":
+"mime-types@npm:^2.1.12":
version: 2.1.35
resolution: "mime-types@npm:2.1.35"
dependencies:
@@ -9165,13 +8861,6 @@ __metadata:
languageName: node
linkType: hard
-"ms@npm:2.0.0":
- version: 2.0.0
- resolution: "ms@npm:2.0.0"
- checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4
- languageName: node
- linkType: hard
-
"ms@npm:^2.0.0, ms@npm:^2.1.1, ms@npm:^2.1.3":
version: 2.1.3
resolution: "ms@npm:2.1.3"
@@ -9245,7 +8934,7 @@ __metadata:
languageName: node
linkType: hard
-"negotiator@npm:0.6.3, negotiator@npm:^0.6.3":
+"negotiator@npm:^0.6.3":
version: 0.6.3
resolution: "negotiator@npm:0.6.3"
checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9
@@ -9526,15 +9215,6 @@ __metadata:
languageName: node
linkType: hard
-"on-finished@npm:2.4.1, on-finished@npm:^2.4.1":
- version: 2.4.1
- resolution: "on-finished@npm:2.4.1"
- dependencies:
- ee-first: 1.1.1
- checksum: d20929a25e7f0bb62f937a425b5edeb4e4cde0540d77ba146ec9357f00b0d497cdb3b9b05b9c8e46222407d1548d08166bff69cc56dfa55ba0e4469228920ff0
- languageName: node
- linkType: hard
-
"onetime@npm:^6.0.0":
version: 6.0.0
resolution: "onetime@npm:6.0.0"
@@ -9595,12 +9275,12 @@ __metadata:
languageName: node
linkType: hard
-"otpauth@npm:^9.3.4":
- version: 9.3.4
- resolution: "otpauth@npm:9.3.4"
+"otpauth@npm:^9.3.5":
+ version: 9.3.5
+ resolution: "otpauth@npm:9.3.5"
dependencies:
"@noble/hashes": 1.5.0
- checksum: eea5ea5c49ce7fce91cf1283d58c8e811c21eff2dc7fe0bd9ce7a2a8cdd69153f1f16c6f29c76e3da47e16ca6449b39ed531630d72b5c9167246a3491494401a
+ checksum: 1c6d3c1a1f122e2b86f259036c062f990ba4352660cf64e485a97e0de962fdb7c5f7d9c66ad5f1a95da29d42f732d9cf0507d301a86d51357ff47bbb9f4ad7d2
languageName: node
linkType: hard
@@ -9625,15 +9305,6 @@ __metadata:
languageName: node
linkType: hard
-"p-limit@npm:^2.2.0":
- version: 2.3.0
- resolution: "p-limit@npm:2.3.0"
- dependencies:
- p-try: ^2.0.0
- checksum: 84ff17f1a38126c3314e91ecfe56aecbf36430940e2873dadaa773ffe072dc23b7af8e46d4b6485d302a11673fe94c6b67ca2cfbb60c989848b02100d0594ac1
- languageName: node
- linkType: hard
-
"p-limit@npm:^3.0.2":
version: 3.1.0
resolution: "p-limit@npm:3.1.0"
@@ -9652,15 +9323,6 @@ __metadata:
languageName: node
linkType: hard
-"p-locate@npm:^4.1.0":
- version: 4.1.0
- resolution: "p-locate@npm:4.1.0"
- dependencies:
- p-limit: ^2.2.0
- checksum: 513bd14a455f5da4ebfcb819ef706c54adb09097703de6aeaa5d26fe5ea16df92b48d1ac45e01e3944ce1e6aa2a66f7f8894742b8c9d6e276e16cd2049a2b870
- languageName: node
- linkType: hard
-
"p-locate@npm:^5.0.0":
version: 5.0.0
resolution: "p-locate@npm:5.0.0"
@@ -9698,13 +9360,6 @@ __metadata:
languageName: node
linkType: hard
-"p-try@npm:^2.0.0":
- version: 2.2.0
- resolution: "p-try@npm:2.2.0"
- checksum: f8a8e9a7693659383f06aec604ad5ead237c7a261c18048a6e1b5b85a5f8a067e469aa24f5bc009b991ea3b058a87f5065ef4176793a200d4917349881216cae
- languageName: node
- linkType: hard
-
"package-json-from-dist@npm:^1.0.0":
version: 1.0.0
resolution: "package-json-from-dist@npm:1.0.0"
@@ -9792,13 +9447,6 @@ __metadata:
languageName: node
linkType: hard
-"parseurl@npm:~1.3.3":
- version: 1.3.3
- resolution: "parseurl@npm:1.3.3"
- checksum: 407cee8e0a3a4c5cd472559bca8b6a45b82c124e9a4703302326e9ab60fc1081442ada4e02628efef1eb16197ddc7f8822f5a91fd7d7c86b51f530aedb17dfa2
- languageName: node
- linkType: hard
-
"patch-package@npm:^8.0.0":
version: 8.0.0
resolution: "patch-package@npm:8.0.0"
@@ -9869,13 +9517,6 @@ __metadata:
languageName: node
linkType: hard
-"path-to-regexp@npm:0.1.10":
- version: 0.1.10
- resolution: "path-to-regexp@npm:0.1.10"
- checksum: ab7a3b7a0b914476d44030340b0a65d69851af2a0f33427df1476100ccb87d409c39e2182837a96b98fb38c4ef2ba6b87bdad62bb70a2c153876b8061760583c
- languageName: node
- linkType: hard
-
"path-to-regexp@npm:^6.3.0":
version: 6.3.0
resolution: "path-to-regexp@npm:6.3.0"
@@ -9931,7 +9572,7 @@ __metadata:
languageName: node
linkType: hard
-"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0":
+"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1, picocolors@npm:^1.1.0, picocolors@npm:^1.1.1":
version: 1.1.1
resolution: "picocolors@npm:1.1.1"
checksum: e1cf46bf84886c79055fdfa9dcb3e4711ad259949e3565154b004b260cd356c5d54b31a1437ce9782624bf766272fe6b0154f5f0c744fb7af5d454d2b60db045
@@ -9977,36 +9618,27 @@ __metadata:
languageName: node
linkType: hard
-"pkg-dir@npm:^4.1.0":
- version: 4.2.0
- resolution: "pkg-dir@npm:4.2.0"
- dependencies:
- find-up: ^4.0.0
- checksum: 9863e3f35132bf99ae1636d31ff1e1e3501251d480336edb1c211133c8d58906bed80f154a1d723652df1fda91e01c7442c2eeaf9dc83157c7ae89087e43c8d6
- languageName: node
- linkType: hard
-
-"playwright-core@npm:1.48.1":
- version: 1.48.1
- resolution: "playwright-core@npm:1.48.1"
+"playwright-core@npm:1.49.0":
+ version: 1.49.0
+ resolution: "playwright-core@npm:1.49.0"
bin:
playwright-core: cli.js
- checksum: adf5b43e054e49bcc712d70e71dedab92c362ea76a45a767bdf3d928d3c810a42f6f1c49382f3d44ed005986048001f75cb568605031215dc89a3e56d99d2976
+ checksum: d8423ad0cab2e672856529bf6b98b406e7e605da098b847b9b54ee8ebd8d716ed8880a9afff4b38f0a2e3f59b95661c74589116ce3ff2b5e0ae3561507086c94
languageName: node
linkType: hard
-"playwright@npm:1.48.1":
- version: 1.48.1
- resolution: "playwright@npm:1.48.1"
+"playwright@npm:1.49.0":
+ version: 1.49.0
+ resolution: "playwright@npm:1.49.0"
dependencies:
fsevents: 2.3.2
- playwright-core: 1.48.1
+ playwright-core: 1.49.0
dependenciesMeta:
fsevents:
optional: true
bin:
playwright: cli.js
- checksum: 81ca13392ad5e5ca87a226d0f5ff2da958c4e06a01dd6b56b4e4e5b4fec45ef8a8f7f0563ef0f4c725814265b931984d0c841e8524362b24480bcd527aa0c054
+ checksum: f1bfb2fff65cad2ce996edab74ec231dfd21aeb5961554b765ce1eaec27efb87eaba37b00e91ecd27727b82861e5d8c230abe4960e93f6ada8be5ad1020df306
languageName: node
linkType: hard
@@ -10044,14 +9676,14 @@ __metadata:
languageName: node
linkType: hard
-"postcss@npm:^8.3.11, postcss@npm:^8.4.43, postcss@npm:^8.4.47":
- version: 8.4.47
- resolution: "postcss@npm:8.4.47"
+"postcss@npm:^8.3.11, postcss@npm:^8.4.43, postcss@npm:^8.4.49":
+ version: 8.4.49
+ resolution: "postcss@npm:8.4.49"
dependencies:
nanoid: ^3.3.7
- picocolors: ^1.1.0
+ picocolors: ^1.1.1
source-map-js: ^1.2.1
- checksum: f78440a9d8f97431dd2ab1ab8e1de64f12f3eff38a3d8d4a33919b96c381046a314658d2de213a5fa5eb296b656de76a3ec269fdea27f16d5ab465b916a0f52c
+ checksum: eb5d6cbdca24f50399aafa5d2bea489e4caee4c563ea1edd5a2485bc5f84e9ceef3febf170272bc83a99c31d23a316ad179213e853f34c2a7a8ffa534559d63a
languageName: node
linkType: hard
@@ -10099,7 +9731,7 @@ __metadata:
languageName: node
linkType: hard
-"prop-types@npm:^15.5.7, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1":
+"prop-types@npm:^15.5.7, prop-types@npm:^15.8.1":
version: 15.8.1
resolution: "prop-types@npm:15.8.1"
dependencies:
@@ -10117,16 +9749,6 @@ __metadata:
languageName: node
linkType: hard
-"proxy-addr@npm:~2.0.7":
- version: 2.0.7
- resolution: "proxy-addr@npm:2.0.7"
- dependencies:
- forwarded: 0.2.0
- ipaddr.js: 1.9.1
- checksum: 29c6990ce9364648255454842f06f8c46fcd124d3e6d7c5066df44662de63cdc0bad032e9bf5a3d653ff72141cc7b6019873d685708ac8210c30458ad99f2b74
- languageName: node
- linkType: hard
-
"proxy-from-env@npm:^1.1.0":
version: 1.1.0
resolution: "proxy-from-env@npm:1.1.0"
@@ -10171,24 +9793,6 @@ __metadata:
languageName: node
linkType: hard
-"qs@npm:6.11.0":
- version: 6.11.0
- resolution: "qs@npm:6.11.0"
- dependencies:
- side-channel: ^1.0.4
- checksum: 6e1f29dd5385f7488ec74ac7b6c92f4d09a90408882d0c208414a34dd33badc1a621019d4c799a3df15ab9b1d0292f97c1dd71dc7c045e69f81a8064e5af7297
- languageName: node
- linkType: hard
-
-"qs@npm:6.13.0":
- version: 6.13.0
- resolution: "qs@npm:6.13.0"
- dependencies:
- side-channel: ^1.0.6
- checksum: e9404dc0fc2849245107108ce9ec2766cde3be1b271de0bf1021d049dc5b98d1a2901e67b431ac5509f865420a7ed80b7acb3980099fe1c118a1c5d2e1432ad8
- languageName: node
- linkType: hard
-
"querystringify@npm:^2.1.1":
version: 2.2.0
resolution: "querystringify@npm:2.2.0"
@@ -10203,35 +9807,6 @@ __metadata:
languageName: node
linkType: hard
-"range-parser@npm:^1.2.1, range-parser@npm:~1.2.1":
- version: 1.2.1
- resolution: "range-parser@npm:1.2.1"
- checksum: 0a268d4fea508661cf5743dfe3d5f47ce214fd6b7dec1de0da4d669dd4ef3d2144468ebe4179049eff253d9d27e719c88dae55be64f954e80135a0cada804ec9
- languageName: node
- linkType: hard
-
-"raw-body@npm:2.5.2":
- version: 2.5.2
- resolution: "raw-body@npm:2.5.2"
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
- checksum: ba1583c8d8a48e8fbb7a873fdbb2df66ea4ff83775421bfe21ee120140949ab048200668c47d9ae3880012f6e217052690628cf679ddfbd82c9fc9358d574676
- languageName: node
- linkType: hard
-
-"react-colorful@npm:^5.1.2":
- version: 5.6.1
- resolution: "react-colorful@npm:5.6.1"
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
- checksum: e432b7cb0df57e8f0bcdc3b012d2e93fcbcb6092c9e0f85654788d5ebfc4442536d8cc35b2418061ba3c4afb8b7788cc101c606d86a1732407921de7a9244c8d
- languageName: node
- linkType: hard
-
"react-docgen-typescript@npm:^2.2.2":
version: 2.2.2
resolution: "react-docgen-typescript@npm:2.2.2"
@@ -10271,20 +9846,6 @@ __metadata:
languageName: node
linkType: hard
-"react-element-to-jsx-string@npm:^15.0.0":
- version: 15.0.0
- resolution: "react-element-to-jsx-string@npm:15.0.0"
- dependencies:
- "@base2/pretty-print-object": 1.0.1
- is-plain-object: 5.0.0
- react-is: 18.1.0
- peerDependencies:
- react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
- react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
- checksum: c3907cc4c1d3e9ecc8ca7727058ebcba6ec89848d9e07bfd2c77ee8f28f1ad99bf55e38359dec8a1125de83d41ac09a2874f53c41415edc86ffa9840fa1b7856
- languageName: node
- linkType: hard
-
"react-error-boundary@npm:^3.1.0":
version: 3.1.4
resolution: "react-error-boundary@npm:3.1.4"
@@ -10322,39 +9883,39 @@ __metadata:
"@eslint/js": ^9.13.0
"@mdx-js/react": ^3.1.0
"@mdx-js/rollup": ^3.1.0
- "@microsoft/applicationinsights-react-js": ^17.3.3
- "@microsoft/applicationinsights-web": ^3.3.3
+ "@microsoft/applicationinsights-react-js": ^17.3.4
+ "@microsoft/applicationinsights-web": ^3.3.4
"@okta/okta-react": ^6.9.0
"@okta/okta-signin-widget": ^7.24.2
- "@playwright/test": ^1.48.1
+ "@playwright/test": ^1.49.0
"@rest-hooks/rest": ^3.0.3
"@rest-hooks/test": ^7.3.1
- "@storybook/addon-a11y": ^8.3.6
- "@storybook/addon-actions": ^8.3.6
- "@storybook/addon-essentials": ^8.3.6
- "@storybook/addon-interactions": ^8.3.6
- "@storybook/addon-links": ^8.3.6
- "@storybook/blocks": ^8.3.6
- "@storybook/components": ^8.3.6
- "@storybook/core-events": ^8.3.6
+ "@storybook/addon-a11y": ^8.4.6
+ "@storybook/addon-actions": ^8.4.6
+ "@storybook/addon-essentials": ^8.4.6
+ "@storybook/addon-interactions": ^8.4.6
+ "@storybook/addon-links": ^8.4.6
+ "@storybook/blocks": ^8.4.6
+ "@storybook/components": ^8.4.6
+ "@storybook/core-events": ^8.4.6
"@storybook/mdx2-csf": 1.1.0
- "@storybook/react": ^8.3.6
- "@storybook/react-vite": ^8.3.6
+ "@storybook/react": ^8.4.6
+ "@storybook/react-vite": ^8.4.6
"@storybook/testing-library": ^0.2.2
- "@storybook/theming": ^8.3.6
- "@tanstack/react-query": ^5.59.15
- "@tanstack/react-query-devtools": ^5.59.15
+ "@storybook/theming": ^8.4.6
+ "@tanstack/react-query": ^5.62.2
+ "@tanstack/react-query-devtools": ^5.62.2
"@testing-library/dom": ^10.4.0
- "@testing-library/jest-dom": ^6.6.2
+ "@testing-library/jest-dom": ^6.6.3
"@testing-library/react": ^16.0.1
"@testing-library/user-event": ^14.5.2
"@trussworks/react-uswds": ^9.1.0
- "@types/dompurify": ^3.0.5
+ "@types/dompurify": ^3.2.0
"@types/dotenv-flow": ^3.3.3
"@types/eslint__js": ^8.42.3
"@types/github-slugger": ^1.3.0
"@types/html-to-text": ^9.0.4
- "@types/lodash": ^4.17.12
+ "@types/lodash": ^4.17.13
"@types/mdx": ^2.0.13
"@types/node": ^20.12.5
"@types/react": 18.3.11
@@ -10364,35 +9925,35 @@ __metadata:
"@types/sanitize-html": ^2.13.0
"@uswds/uswds": 3.7.1
"@vitejs/plugin-react": ^4.3.3
- "@vitest/coverage-istanbul": ^2.1.3
- "@vitest/ui": ^2.1.3
+ "@vitest/coverage-istanbul": ^2.1.8
+ "@vitest/ui": ^2.1.8
autoprefixer: ^10.4.20
- axios: ^1.7.7
+ axios: ^1.7.8
browserslist: ^4.24.2
browserslist-useragent-regexp: ^4.1.3
- chromatic: ^11.12.6
+ chromatic: ^11.20.0
classnames: ^2.5.1
cross-env: ^7.0.3
- date-fns: ^3.6.0
+ date-fns: ^4.1.0
date-fns-tz: ^3.2.0
- dompurify: ^3.1.7
+ dompurify: ^3.2.2
dotenv-flow: ^4.1.0
eslint: 9.13.0
eslint-config-prettier: ^9.1.0
eslint-import-resolver-typescript: ^3.6.3
eslint-plugin-import: ^2.31.0
- eslint-plugin-jest-dom: ^5.4.0
+ eslint-plugin-jest-dom: ^5.5.0
eslint-plugin-jsx-a11y: ^6.10.2
- eslint-plugin-playwright: ^2.0.0
+ eslint-plugin-playwright: ^2.1.0
eslint-plugin-react: ^7.37.2
eslint-plugin-react-hooks: ^5.0.0
eslint-plugin-react-refresh: ^0.4.14
- eslint-plugin-storybook: ^0.10.1
+ eslint-plugin-storybook: ^0.11.1
eslint-plugin-testing-library: ^6.4.0
eslint-plugin-vitest: ^0.5.4
export-to-csv-fix-source-map: ^0.2.1
focus-trap-react: ^10.3.0
- globals: ^15.11.0
+ globals: ^15.13.0
history: ^5.3.0
html-to-text: ^9.0.5
husky: ^9.1.6
@@ -10403,10 +9964,10 @@ __metadata:
msw: ^2.4.11
msw-storybook-addon: ^2.0.3
npm-run-all: ^4.1.5
- otpauth: ^9.3.4
+ otpauth: ^9.3.5
p-limit: ^6.1.0
patch-package: ^8.0.0
- postcss: ^8.4.47
+ postcss: ^8.4.49
prettier: ^3.3.3
react: ^18.3.1
react-dom: ^18.3.1
@@ -10415,7 +9976,7 @@ __metadata:
react-idle-timer: ^5.7.2
react-loader-spinner: ^6.1.6
react-markdown: ^9.0.1
- react-query-kit: ^3.3.0
+ react-query-kit: ^3.3.1
react-router: ^6.27.0
react-router-dom: ^6.27.0
react-scroll-sync: ^0.11.2
@@ -10427,21 +9988,21 @@ __metadata:
remark-mdx-toc: ^0.3.1
rest-hooks: ^6.1.7
sanitize-html: ^2.13.1
- sass: ^1.80.3
- storybook: ^8.3.6
+ sass: ^1.81.0
+ storybook: ^8.4.6
storybook-addon-remix-react-router: ^3.0.1
ts-node: ^10.9.2
- tslib: ^2.8.0
- tsx: ^4.19.1
- typescript: ^5.6.3
- typescript-eslint: ^8.12.2
- undici: ^6.20.1
+ tslib: ^2.8.1
+ tsx: ^4.19.2
+ typescript: ^5.7.2
+ typescript-eslint: ^8.16.0
+ undici: ~6.20.1
use-deep-compare-effect: ^1.8.1
- uuid: ^10.0.0
+ uuid: ^11.0.3
vite: ^5.4.10
vite-plugin-checker: ^0.8.0
vite-plugin-svgr: ^4.2.0
- vitest: ^2.1.3
+ vitest: ^2.1.8
web-vitals: ^3.4.0
languageName: unknown
linkType: soft
@@ -10478,13 +10039,6 @@ __metadata:
languageName: node
linkType: hard
-"react-is@npm:18.1.0":
- version: 18.1.0
- resolution: "react-is@npm:18.1.0"
- checksum: d206a0fe6790851bff168727bfb896de02c5591695afb0c441163e8630136a3e13ee1a7ddd59fdccddcc93968b4721ae112c10f790b194b03b35a3dc13a355ef
- languageName: node
- linkType: hard
-
"react-is@npm:^16.13.1":
version: 16.13.1
resolution: "react-is@npm:16.13.1"
@@ -10540,15 +10094,13 @@ __metadata:
languageName: node
linkType: hard
-"react-query-kit@npm:^3.3.0":
- version: 3.3.0
- resolution: "react-query-kit@npm:3.3.0"
- peerDependencies:
- "@tanstack/react-query": ^4 || ^5
+"react-query-kit@npm:^3.3.1":
+ version: 3.3.1
+ resolution: "react-query-kit@npm:3.3.1"
peerDependenciesMeta:
"@tanstack/react-query":
optional: true
- checksum: 5551bdfcbe9ba4c50b2fa157811beb80e4a5265682e7c5bb50f148d87ef7d0e1652bb646a0a7b9e0cb8ba72a1c77fb9b86ec6b9f70f69fec15557024ffbebe3f
+ checksum: 32e98bf85cc8a283ee42c9a7a0ef8fdad723feb68801d8c4e664a22d0d643d8991e8eaf303bb9b90d19b1c81fe5b6a9e9e3de597dd73e360dc2b3539c014f390
languageName: node
linkType: hard
@@ -10731,20 +10283,6 @@ __metadata:
languageName: node
linkType: hard
-"rehype-external-links@npm:^3.0.0":
- version: 3.0.0
- resolution: "rehype-external-links@npm:3.0.0"
- dependencies:
- "@types/hast": ^3.0.0
- "@ungap/structured-clone": ^1.0.0
- hast-util-is-element: ^3.0.0
- is-absolute-url: ^4.0.0
- space-separated-tokens: ^2.0.0
- unist-util-visit: ^5.0.0
- checksum: f776f306a2698a67b03665280fcc00448a5bf59b997d83fbb70fc3d71acff2c3025c70ee1840f48ca7dff209217ebe9adad085dc7caf9e5907badf8b104898b6
- languageName: node
- linkType: hard
-
"rehype-raw@npm:^7.0.0":
version: 7.0.0
resolution: "rehype-raw@npm:7.0.0"
@@ -10771,19 +10309,6 @@ __metadata:
languageName: node
linkType: hard
-"rehype-slug@npm:^6.0.0":
- version: 6.0.0
- resolution: "rehype-slug@npm:6.0.0"
- dependencies:
- "@types/hast": ^3.0.0
- github-slugger: ^2.0.0
- hast-util-heading-rank: ^3.0.0
- hast-util-to-string: ^3.0.0
- unist-util-visit: ^5.0.0
- checksum: 0e13ec558eb142d14a6daeab21bbef7c9230bfabec45987e15a24283650226eae3898ad162b8cb29ee39a8bce536bcc013eeab7dc6faa0295b0e91612a8c9f6e
- languageName: node
- linkType: hard
-
"remark-frontmatter@npm:^5.0.0":
version: 5.0.0
resolution: "remark-frontmatter@npm:5.0.0"
@@ -11120,7 +10645,7 @@ __metadata:
languageName: node
linkType: hard
-"safe-buffer@npm:5.2.1, safe-buffer@npm:~5.2.0":
+"safe-buffer@npm:~5.2.0":
version: 5.2.1
resolution: "safe-buffer@npm:5.2.1"
checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491
@@ -11138,7 +10663,7 @@ __metadata:
languageName: node
linkType: hard
-"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0":
+"safer-buffer@npm:>= 2.1.2 < 3.0.0":
version: 2.1.2
resolution: "safer-buffer@npm:2.1.2"
checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0
@@ -11159,17 +10684,20 @@ __metadata:
languageName: node
linkType: hard
-"sass@npm:^1.80.3":
- version: 1.80.3
- resolution: "sass@npm:1.80.3"
+"sass@npm:^1.81.0":
+ version: 1.81.0
+ resolution: "sass@npm:1.81.0"
dependencies:
"@parcel/watcher": ^2.4.1
chokidar: ^4.0.0
- immutable: ^4.0.0
+ immutable: ^5.0.2
source-map-js: ">=0.6.2 <2.0.0"
+ dependenciesMeta:
+ "@parcel/watcher":
+ optional: true
bin:
sass: sass.js
- checksum: 37b24b7fad92bc82e645f7dfb7f2a38d2c828ea1ee1d98688d8687daad2fb4cc55620df4497e1a536c40fd4f6b3e36cf5326f0c6c0a622bcff8f204cb0616d5f
+ checksum: 93db5b342c3b0449af2b08123ed4c0793643bd3a30f78e4e0686a1aa991ad640e0d9bc8da09aa5d7ff313bbd317b3be9c827cca60fb33b07d9f4b14b001eccfe
languageName: node
linkType: hard
@@ -11216,7 +10744,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^6.0.0, semver@npm:^6.3.1":
+"semver@npm:^6.3.1":
version: 6.3.1
resolution: "semver@npm:6.3.1"
bin:
@@ -11234,38 +10762,6 @@ __metadata:
languageName: node
linkType: hard
-"send@npm:>=0.19.0":
- version: 1.1.0
- resolution: "send@npm:1.1.0"
- dependencies:
- debug: ^4.3.5
- destroy: ^1.2.0
- encodeurl: ^2.0.0
- escape-html: ^1.0.3
- etag: ^1.8.1
- fresh: ^0.5.2
- http-errors: ^2.0.0
- mime-types: ^2.1.35
- ms: ^2.1.3
- on-finished: ^2.4.1
- range-parser: ^1.2.1
- statuses: ^2.0.1
- checksum: cb82bec244cb0e54ffaadf657dc79f55f350428c0d1f58511b9aae74ba87b07078907e462b8fefe13380f592baebd4b9e184204f3b74bd4558e7561669204b0f
- languageName: node
- linkType: hard
-
-"serve-static@npm:1.16.0":
- version: 1.16.0
- resolution: "serve-static@npm:1.16.0"
- dependencies:
- encodeurl: ~1.0.2
- escape-html: ~1.0.3
- parseurl: ~1.3.3
- send: 0.18.0
- checksum: a479dfe7e9fa7e8cb3ceccb0d944a3c72bb8f88d78472e30989f58fe15a92cfc909ab05a5c7cda2d1a6aa2663ab503ad1e2f40653740346e53e72b3ba41b6951
- languageName: node
- linkType: hard
-
"set-blocking@npm:^2.0.0":
version: 2.0.0
resolution: "set-blocking@npm:2.0.0"
@@ -11299,13 +10795,6 @@ __metadata:
languageName: node
linkType: hard
-"setprototypeof@npm:1.2.0":
- version: 1.2.0
- resolution: "setprototypeof@npm:1.2.0"
- checksum: be18cbbf70e7d8097c97f713a2e76edf84e87299b40d085c6bf8b65314e994cc15e2e317727342fa6996e38e1f52c59720b53fe621e2eb593a6847bf0356db89
- languageName: node
- linkType: hard
-
"shallowequal@npm:1.1.0, shallowequal@npm:^1.1.0":
version: 1.1.0
resolution: "shallowequal@npm:1.1.0"
@@ -11385,14 +10874,14 @@ __metadata:
languageName: node
linkType: hard
-"sirv@npm:^2.0.4":
- version: 2.0.4
- resolution: "sirv@npm:2.0.4"
+"sirv@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "sirv@npm:3.0.0"
dependencies:
"@polka/url": ^1.0.0-next.24
mrmime: ^2.0.0
totalist: ^3.0.0
- checksum: 6853384a51d6ee9377dd657e2b257e0e98b29abbfbfa6333e105197f0f100c8c56a4520b47028b04ab1833cf2312526206f38fcd4f891c6df453f40da1a15a57
+ checksum: 04b8036cab13971737dbb12b184a88f3d9aba955eed5600d27250f3dfd0a0ad1ff7a343537511b54d4fda36f629e2ffe25813f900d84cf4e3c08a7292f458af1
languageName: node
linkType: hard
@@ -11553,17 +11042,17 @@ __metadata:
languageName: node
linkType: hard
-"statuses@npm:2.0.1, statuses@npm:^2.0.1":
+"statuses@npm:^2.0.1":
version: 2.0.1
resolution: "statuses@npm:2.0.1"
checksum: 18c7623fdb8f646fb213ca4051be4df7efb3484d4ab662937ca6fbef7ced9b9e12842709872eb3020cc3504b93bde88935c9f6417489627a7786f24f8031cbcb
languageName: node
linkType: hard
-"std-env@npm:^3.7.0":
- version: 3.7.0
- resolution: "std-env@npm:3.7.0"
- checksum: 4f489d13ff2ab838c9acd4ed6b786b51aa52ecacdfeaefe9275fcb220ff2ac80c6e95674723508fd29850a694569563a8caaaea738eb82ca16429b3a0b50e510
+"std-env@npm:^3.8.0":
+ version: 3.8.0
+ resolution: "std-env@npm:3.8.0"
+ checksum: ad4554485c2d09138a1d0f03944245e169510e6f5200b7d30fcdd4536e27a2a9a2fd934caff7ef58ebbe21993fa0e2b9e5b1979f431743c925305863b7ff36d5
languageName: node
linkType: hard
@@ -11602,16 +11091,21 @@ __metadata:
languageName: node
linkType: hard
-"storybook@npm:^8.3.6":
- version: 8.3.6
- resolution: "storybook@npm:8.3.6"
+"storybook@npm:^8.4.6":
+ version: 8.4.6
+ resolution: "storybook@npm:8.4.6"
dependencies:
- "@storybook/core": 8.3.6
+ "@storybook/core": 8.4.6
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
bin:
getstorybook: ./bin/index.cjs
sb: ./bin/index.cjs
storybook: ./bin/index.cjs
- checksum: 826eaaa84f295aa900a35bed9403e1a1853364f90d50b69270b105d00c945cca9fdbba260b18712f6e43faa07f3dd7ed64e2d9d7257c5f1653820039aeabf4ff
+ checksum: af1295778a99d504f6200d9594a517a58e0e8ccf2d5f2706e9716eb2e60ac4475bb558d811d4b51bc7feb0c21701a3801e09a4d52b453e1f94ce28b13be1a50f
languageName: node
linkType: hard
@@ -11927,15 +11421,6 @@ __metadata:
languageName: node
linkType: hard
-"telejson@npm:^7.2.0":
- version: 7.2.0
- resolution: "telejson@npm:7.2.0"
- dependencies:
- memoizerific: ^1.11.3
- checksum: 55a3380c9ff3c5ad84581bb6bda28fc33c6b7c4a0c466894637da687639b8db0d21b0ff4c1bc1a7a92ae6b70662549d09e7b9e8b1ec334b2ef93078762ecdfb9
- languageName: node
- linkType: hard
-
"test-exclude@npm:^7.0.1":
version: 7.0.1
resolution: "test-exclude@npm:7.0.1"
@@ -11982,27 +11467,27 @@ __metadata:
languageName: node
linkType: hard
-"tinyexec@npm:^0.3.0":
+"tinyexec@npm:^0.3.1":
version: 0.3.1
resolution: "tinyexec@npm:0.3.1"
checksum: 691b531d464bdc09eeba934e43d8ac2a74c9d22a4bec9cd7f4991375c64e22712f7e5a95ba243a9369a478afd34d41171359012a2248ea49615cd2816ab12959
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.6":
- version: 0.2.9
- resolution: "tinyglobby@npm:0.2.9"
+"tinyglobby@npm:^0.2.10":
+ version: 0.2.10
+ resolution: "tinyglobby@npm:0.2.10"
dependencies:
- fdir: ^6.4.0
+ fdir: ^6.4.2
picomatch: ^4.0.2
- checksum: 6fa652880c963324dbb66ee39ae9e8d809bec8d9ac4f100ee420d31df12b3d1c4bb438684ac8ade040a6916131511495db2cf3259bb067cd0af27ba1552d5efc
+ checksum: 7e2ffe262ebc149036bdef37c56b32d02d52cf09efa7d43dbdab2ea3c12844a4da881058835ce4c74d1891190e5ad5ec5133560a11ec8314849b68ad0d99d3f4
languageName: node
linkType: hard
-"tinypool@npm:^1.0.0":
- version: 1.0.0
- resolution: "tinypool@npm:1.0.0"
- checksum: 59dab87b0811da2dc1ecbac9a99cde93d45450744d4a9fca628d805c452bbb5e5f214fd191127f665d062cae9cc159225dea5508d766e40a0c6c33f573e5c3b6
+"tinypool@npm:^1.0.1":
+ version: 1.0.2
+ resolution: "tinypool@npm:1.0.2"
+ checksum: 752f23114d8fc95a9497fc812231d6d0a63728376aa11e6e8499c10423a91112e760e388887ea7854f1b16977c321f07c0eab061ec2f60f6761e58b184aac880
languageName: node
linkType: hard
@@ -12013,10 +11498,10 @@ __metadata:
languageName: node
linkType: hard
-"tinyspy@npm:^3.0.0":
- version: 3.0.0
- resolution: "tinyspy@npm:3.0.0"
- checksum: b5b686acff2b88de60ff8ecf89a2042320406aaeee2fba1828a7ea8a925fad3ed9f5e4d7a068154a9134473c472aa03da8ca92ee994bc57a741c5ede5fa7de4d
+"tinyspy@npm:^3.0.0, tinyspy@npm:^3.0.2":
+ version: 3.0.2
+ resolution: "tinyspy@npm:3.0.2"
+ checksum: 5db671b2ff5cd309de650c8c4761ca945459d7204afb1776db9a04fb4efa28a75f08517a8620c01ee32a577748802231ad92f7d5b194dc003ee7f987a2a06337
languageName: node
linkType: hard
@@ -12047,13 +11532,6 @@ __metadata:
languageName: node
linkType: hard
-"to-fast-properties@npm:^2.0.0":
- version: 2.0.0
- resolution: "to-fast-properties@npm:2.0.0"
- checksum: be2de62fe58ead94e3e592680052683b1ec986c72d589e7b21e5697f8744cdbf48c266fa72f6c15932894c10187b5f54573a3bcf7da0bfd964d5caf23d436168
- languageName: node
- linkType: hard
-
"to-regex-range@npm:^5.0.1":
version: 5.0.1
resolution: "to-regex-range@npm:5.0.1"
@@ -12063,13 +11541,6 @@ __metadata:
languageName: node
linkType: hard
-"toidentifier@npm:1.0.1":
- version: 1.0.1
- resolution: "toidentifier@npm:1.0.1"
- checksum: 952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45
- languageName: node
- linkType: hard
-
"toml@npm:^3.0.0":
version: 3.0.0
resolution: "toml@npm:3.0.0"
@@ -12226,10 +11697,10 @@ __metadata:
languageName: node
linkType: hard
-"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.8.0":
- version: 2.8.0
- resolution: "tslib@npm:2.8.0"
- checksum: de852ecd81adfdb4870927e250763345f07dc13fe7f395ce261424966bb122a0992ad844c3ec875c9e63e72afe2220a150712984e44dfd1a8a7e538a064e3d46
+"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.8.1":
+ version: 2.8.1
+ resolution: "tslib@npm:2.8.1"
+ checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a
languageName: node
linkType: hard
@@ -12244,9 +11715,9 @@ __metadata:
languageName: node
linkType: hard
-"tsx@npm:^4.19.1":
- version: 4.19.1
- resolution: "tsx@npm:4.19.1"
+"tsx@npm:^4.19.2":
+ version: 4.19.2
+ resolution: "tsx@npm:4.19.2"
dependencies:
esbuild: ~0.23.0
fsevents: ~2.3.3
@@ -12256,7 +11727,7 @@ __metadata:
optional: true
bin:
tsx: dist/cli.mjs
- checksum: 31bfd2df62c1230f7c15f6e24d3790019ba7b2ad497221cb0cebcf5cf4f2c1ac971fac0d1283e3d80dc823652d2f9be946bd40ac65b640ff3f199b84a904a9c7
+ checksum: 7f9f1b338a73297725a9217cedaaad862f7c81d5264093c74b98a71491ad5413b11248d604c0e650f4f7da6f365249f1426fdb58a1325ab9e15448156b1edff6
languageName: node
linkType: hard
@@ -12283,7 +11754,7 @@ __metadata:
languageName: node
linkType: hard
-"type-fest@npm:^2.19.0, type-fest@npm:~2.19":
+"type-fest@npm:^2.19.0":
version: 2.19.0
resolution: "type-fest@npm:2.19.0"
checksum: a4ef07ece297c9fba78fc1bd6d85dff4472fe043ede98bd4710d2615d15776902b595abf62bd78339ed6278f021235fb28a96361f8be86ed754f778973a0d278
@@ -12297,16 +11768,6 @@ __metadata:
languageName: node
linkType: hard
-"type-is@npm:~1.6.18":
- version: 1.6.18
- resolution: "type-is@npm:1.6.18"
- dependencies:
- media-typer: 0.3.0
- mime-types: ~2.1.24
- checksum: 2c8e47675d55f8b4e404bcf529abdf5036c537a04c2b20177bcf78c9e3c1da69da3942b1346e6edb09e823228c0ee656ef0e033765ec39a70d496ef601a0c657
- languageName: node
- linkType: hard
-
"typed-array-buffer@npm:^1.0.2":
version: 1.0.2
resolution: "typed-array-buffer@npm:1.0.2"
@@ -12359,37 +11820,39 @@ __metadata:
languageName: node
linkType: hard
-"typescript-eslint@npm:^8.12.2":
- version: 8.12.2
- resolution: "typescript-eslint@npm:8.12.2"
+"typescript-eslint@npm:^8.16.0":
+ version: 8.16.0
+ resolution: "typescript-eslint@npm:8.16.0"
dependencies:
- "@typescript-eslint/eslint-plugin": 8.12.2
- "@typescript-eslint/parser": 8.12.2
- "@typescript-eslint/utils": 8.12.2
+ "@typescript-eslint/eslint-plugin": 8.16.0
+ "@typescript-eslint/parser": 8.16.0
+ "@typescript-eslint/utils": 8.16.0
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
peerDependenciesMeta:
typescript:
optional: true
- checksum: 55412f46f2ce3be317107778a9b3f60d1ccc8b3b6f600eefc077d20109890801d684e995eace8ed96a9f8ca824acb2d31c853c2754715f18edb38caf51a76270
+ checksum: e8cb50761b9d216158b3738a745adca633dea8fc870e9f26a98979bc22e00bfb5626220f0321e72ad570b6307fb5c9b88bbf8cdda916c931dee9689ac8aa815c
languageName: node
linkType: hard
-"typescript@npm:^5.6.3":
- version: 5.6.3
- resolution: "typescript@npm:5.6.3"
+"typescript@npm:^5.7.2":
+ version: 5.7.2
+ resolution: "typescript@npm:5.7.2"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: ba302f8822777ebefb28b554105f3e074466b671e7444ec6b75dadc008a62f46f373d9e57ceced1c433756d06c8b7dc569a7eefdf3a9573122a49205ff99021a
+ checksum: b55300c4cefee8ee380d14fa9359ccb41ff8b54c719f6bc49b424899d662a5ce62ece390ce769568c7f4d14af844085255e63788740084444eb12ef423b13433
languageName: node
linkType: hard
-"typescript@patch:typescript@^5.6.3#~builtin":
- version: 5.6.3
- resolution: "typescript@patch:typescript@npm%3A5.6.3#~builtin::version=5.6.3&hash=14eedb"
+"typescript@patch:typescript@^5.7.2#~builtin":
+ version: 5.7.2
+ resolution: "typescript@patch:typescript@npm%3A5.7.2#~builtin::version=5.7.2&hash=14eedb"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
- checksum: ade87bce2363ee963eed0e4ca8a312ea02c81873ebd53609bc3f6dc0a57f6e61ad7e3fb8cbb7f7ab8b5081cbee801b023f7c4823ee70b1c447eae050e6c7622b
+ checksum: 803430c6da2ba73c25a21880d8d4f08a56d9d2444e6db2ea949ac4abceeece8e4a442b7b9b585db7d8a0b47ebda2060e45fe8ee8b8aca23e27ec1d4844987ee6
languageName: node
linkType: hard
@@ -12449,7 +11912,7 @@ __metadata:
languageName: node
linkType: hard
-"undici@npm:^6.20.1":
+"undici@npm:~6.20.1":
version: 6.20.1
resolution: "undici@npm:6.20.1"
checksum: 3bb1405b406fa0e913ff4ec6fd310c9b4d950b7064ba5949b2f616c1f13070d26f5558aefb4b56b2eafb555925443ce44cb801e143d2417ecf12ddf8d5c05cf6
@@ -12631,13 +12094,6 @@ __metadata:
languageName: node
linkType: hard
-"unpipe@npm:1.0.0, unpipe@npm:~1.0.0":
- version: 1.0.0
- resolution: "unpipe@npm:1.0.0"
- checksum: 4fa18d8d8d977c55cb09715385c203197105e10a6d220087ec819f50cb68870f02942244f1017565484237f1f8c5d3cd413631b1ae104d3096f24fdfde1b4aa2
- languageName: node
- linkType: hard
-
"unplugin@npm:^1.3.1":
version: 1.4.0
resolution: "unplugin@npm:1.4.0"
@@ -12695,14 +12151,14 @@ __metadata:
languageName: node
linkType: hard
-"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2":
+"util-deprecate@npm:^1.0.1":
version: 1.0.2
resolution: "util-deprecate@npm:1.0.2"
checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2
languageName: node
linkType: hard
-"util@npm:^0.12.4, util@npm:^0.12.5":
+"util@npm:^0.12.5":
version: 0.12.5
resolution: "util@npm:0.12.5"
dependencies:
@@ -12715,19 +12171,12 @@ __metadata:
languageName: node
linkType: hard
-"utils-merge@npm:1.0.1":
- version: 1.0.1
- resolution: "utils-merge@npm:1.0.1"
- checksum: c81095493225ecfc28add49c106ca4f09cdf56bc66731aa8dabc2edbbccb1e1bfe2de6a115e5c6a380d3ea166d1636410b62ef216bb07b3feb1cfde1d95d5080
- languageName: node
- linkType: hard
-
-"uuid@npm:^10.0.0":
- version: 10.0.0
- resolution: "uuid@npm:10.0.0"
+"uuid@npm:^11.0.3":
+ version: 11.0.3
+ resolution: "uuid@npm:11.0.3"
bin:
- uuid: dist/bin/uuid
- checksum: 4b81611ade2885d2313ddd8dc865d93d8dccc13ddf901745edca8f86d99bc46d7a330d678e7532e7ebf93ce616679fb19b2e3568873ac0c14c999032acb25869
+ uuid: dist/esm/bin/uuid
+ checksum: 646181c77e8b8df9bd07254faa703943e1c4d5ccde7d080312edf12f443f6c5750801fd9b27bf2e628594182165e6b1b880c0382538f7eca00b26622203741dc
languageName: node
linkType: hard
@@ -12757,13 +12206,6 @@ __metadata:
languageName: node
linkType: hard
-"vary@npm:~1.1.2":
- version: 1.1.2
- resolution: "vary@npm:1.1.2"
- checksum: ae0123222c6df65b437669d63dfa8c36cee20a504101b2fcd97b8bf76f91259c17f9f2b4d70a1e3c6bbcee7f51b28392833adb6b2770b23b01abec84e369660b
- languageName: node
- linkType: hard
-
"vfile-location@npm:^5.0.0":
version: 5.0.2
resolution: "vfile-location@npm:5.0.2"
@@ -12817,17 +12259,18 @@ __metadata:
languageName: node
linkType: hard
-"vite-node@npm:2.1.3":
- version: 2.1.3
- resolution: "vite-node@npm:2.1.3"
+"vite-node@npm:2.1.8":
+ version: 2.1.8
+ resolution: "vite-node@npm:2.1.8"
dependencies:
cac: ^6.7.14
- debug: ^4.3.6
+ debug: ^4.3.7
+ es-module-lexer: ^1.5.4
pathe: ^1.1.2
vite: ^5.0.0
bin:
vite-node: vite-node.mjs
- checksum: b048a845fb3f70b9b45174a6989b3c0179a375c486118ae72c4a30af0d052a0da5e5fba1df034ec4c179c5d7bc6ebc9a604bdbe316c6cd2fc6caeeda8af56274
+ checksum: 17914342d05f9ace35c1574555c59dd4116148b71a22bf330f019681d7238a2244b6c2b4a8930d03d5f78e24666d81806c68b84a8db42d7e84165cb10d1c756a
languageName: node
linkType: hard
@@ -12939,34 +12382,35 @@ __metadata:
languageName: node
linkType: hard
-"vitest@npm:^2.1.3":
- version: 2.1.3
- resolution: "vitest@npm:2.1.3"
- dependencies:
- "@vitest/expect": 2.1.3
- "@vitest/mocker": 2.1.3
- "@vitest/pretty-format": ^2.1.3
- "@vitest/runner": 2.1.3
- "@vitest/snapshot": 2.1.3
- "@vitest/spy": 2.1.3
- "@vitest/utils": 2.1.3
- chai: ^5.1.1
- debug: ^4.3.6
- magic-string: ^0.30.11
+"vitest@npm:^2.1.8":
+ version: 2.1.8
+ resolution: "vitest@npm:2.1.8"
+ dependencies:
+ "@vitest/expect": 2.1.8
+ "@vitest/mocker": 2.1.8
+ "@vitest/pretty-format": ^2.1.8
+ "@vitest/runner": 2.1.8
+ "@vitest/snapshot": 2.1.8
+ "@vitest/spy": 2.1.8
+ "@vitest/utils": 2.1.8
+ chai: ^5.1.2
+ debug: ^4.3.7
+ expect-type: ^1.1.0
+ magic-string: ^0.30.12
pathe: ^1.1.2
- std-env: ^3.7.0
+ std-env: ^3.8.0
tinybench: ^2.9.0
- tinyexec: ^0.3.0
- tinypool: ^1.0.0
+ tinyexec: ^0.3.1
+ tinypool: ^1.0.1
tinyrainbow: ^1.2.0
vite: ^5.0.0
- vite-node: 2.1.3
+ vite-node: 2.1.8
why-is-node-running: ^2.3.0
peerDependencies:
"@edge-runtime/vm": "*"
"@types/node": ^18.0.0 || >=20.0.0
- "@vitest/browser": 2.1.3
- "@vitest/ui": 2.1.3
+ "@vitest/browser": 2.1.8
+ "@vitest/ui": 2.1.8
happy-dom: "*"
jsdom: "*"
peerDependenciesMeta:
@@ -12984,7 +12428,7 @@ __metadata:
optional: true
bin:
vitest: vitest.mjs
- checksum: c2e7159cfeb837d16dfd03acdcaff85c3bd234f1fd6a258dbd5202455b8e04b1c9f932567396b00cfe8d6fdba61857fa5f6663874fe56bf4cd084f516da1a86d
+ checksum: 2d2f69364556829123c3ff704b36dfd7a2f11cc05fad8a7caf9f0b8c74205caee92f892d4bd5b92a9c2a48267e9b0865a171b2f40fcd593d681f980c3486b299
languageName: node
linkType: hard
diff --git a/prime-router/build.gradle.kts b/prime-router/build.gradle.kts
index 66f83c3a1f8..d489a8564d7 100644
--- a/prime-router/build.gradle.kts
+++ b/prime-router/build.gradle.kts
@@ -35,7 +35,7 @@ apply(from = rootProject.file("buildSrc/shared.gradle.kts"))
plugins {
val kotlinVersion by System.getProperties()
id("reportstream.project-conventions")
- id("org.flywaydb.flyway") version "10.18.2"
+ id("org.flywaydb.flyway") version "10.21.0"
id("nu.studer.jooq") version "9.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.microsoft.azure.azurefunctions") version "1.16.1"
@@ -75,7 +75,7 @@ val javaVersion = when (appJvmTarget) {
}
val ktorVersion = "2.3.12"
val kotlinVersion by System.getProperties()
-val jacksonVersion = "2.18.0"
+val jacksonVersion = "2.18.1"
jacoco.toolVersion = "0.8.12"
// Local database information, first one wins:
@@ -840,7 +840,7 @@ buildscript {
// will need to be removed once this issue is resolved in Maven.
classpath("net.minidev:json-smart:2.5.1")
// as per flyway v10 docs the postgres flyway module must be on the project buildpath
- classpath("org.flywaydb:flyway-database-postgresql:10.18.2")
+ classpath("org.flywaydb:flyway-database-postgresql:10.21.0")
}
}
@@ -872,11 +872,11 @@ dependencies {
exclude(group = "com.azure", module = "azure-core")
exclude(group = "com.azure", module = "azure-core-http-netty")
}
- implementation("com.azure:azure-identity:1.14.0") {
+ implementation("com.azure:azure-identity:1.14.2") {
exclude(group = "com.azure", module = "azure-core")
exclude(group = "com.azure", module = "azure-core-http-netty")
}
- implementation("com.nimbusds:nimbus-jose-jwt:9.41.1")
+ implementation("com.nimbusds:nimbus-jose-jwt:9.47")
implementation("org.apache.logging.log4j:log4j-api:2.24.0")
implementation("org.apache.logging.log4j:log4j-core:2.24.0")
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.24.0")
@@ -898,17 +898,17 @@ dependencies {
branch = "master"
}
}
- implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:7.4.2")
+ implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:7.4.5")
// https://mvnrepository.com/artifact/ca.uhn.hapi.fhir/hapi-fhir-caching-caffeine
- implementation("ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine:7.4.2")
- implementation("ca.uhn.hapi.fhir:hapi-fhir-client:7.4.2")
+ implementation("ca.uhn.hapi.fhir:hapi-fhir-caching-caffeine:7.4.5")
+ implementation("ca.uhn.hapi.fhir:hapi-fhir-client:7.4.5")
// pin
implementation("ca.uhn.hapi.fhir:org.hl7.fhir.utilities:6.4.0")
implementation("ca.uhn.hapi.fhir:org.hl7.fhir.r4:6.4.0")
implementation("ca.uhn.hapi:hapi-base:2.5.1")
implementation("ca.uhn.hapi:hapi-structures-v251:2.5.1")
implementation("ca.uhn.hapi:hapi-structures-v27:2.5.1")
- implementation("com.googlecode.libphonenumber:libphonenumber:8.13.46")
+ implementation("com.googlecode.libphonenumber:libphonenumber:8.13.50")
implementation("org.thymeleaf:thymeleaf:3.1.2.RELEASE")
implementation("com.sendgrid:sendgrid-java:4.10.3")
implementation("com.okta.jwt:okta-jwt-verifier:0.5.7")
@@ -923,15 +923,15 @@ dependencies {
implementation("commons-codec:commons-codec:1.17.1")
implementation("commons-io:commons-io:2.17.0")
implementation("org.postgresql:postgresql:42.7.4")
- implementation("com.zaxxer:HikariCP:6.0.0")
- implementation("org.flywaydb:flyway-core:10.18.2")
- implementation("org.flywaydb:flyway-database-postgresql:10.18.2")
+ implementation("com.zaxxer:HikariCP:6.2.0")
+ implementation("org.flywaydb:flyway-core:10.21.0")
+ implementation("org.flywaydb:flyway-database-postgresql:10.21.0")
implementation("org.commonmark:commonmark:0.24.0")
implementation("com.google.guava:guava:33.3.1-jre")
implementation("com.helger.as2:as2-lib:5.1.2")
- implementation("org.bouncycastle:bcprov-jdk15to18:1.78.1")
- implementation("org.bouncycastle:bcprov-jdk18on:1.78.1")
- implementation("org.bouncycastle:bcmail-jdk15to18:1.78.1")
+ implementation("org.bouncycastle:bcprov-jdk15to18:1.79")
+ implementation("org.bouncycastle:bcprov-jdk18on:1.79")
+ implementation("org.bouncycastle:bcmail-jdk15to18:1.79")
implementation("commons-net:commons-net:3.11.1")
implementation("com.cronutils:cron-utils:9.2.1")
diff --git a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml
index 7e5b303b697..0ea61641d00 100644
--- a/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/message/OML_O21.yml
@@ -8,27 +8,48 @@ resources:
repeats: false
isReferenced: false
+ - resourceName: Provenance
+ segment: MSH
+ resourcePath: segments/MSH/Provenance-Source
+
+ - resourceName: Provenance
+ segment: MSH
+ resourcePath: segments/MSH/Provenance-Transformation
+
- resourceName: Patient
segment: .PID
group: PATIENT
resourcePath: segments/PID/Patient
isReferenced: true
repeats: false
+ additionalSegments:
+ - .PD1
+ - MSH
+ - .NTE
+ - .NK1
- - resourceName: ServiceRequest
- segment: .ORC
- group: ORDER
- resourcePath: segments/ORC/ServiceRequest
+ - resourceName: Provenance
+ segment: .PID
+ group: PATIENT
+ resourcePath: segments/PID/Provenance-Patient
+
+ - resourceName: RelatedPerson
+ segment: .NK1
+ group: PATIENT
+ resourcePath: segments/NK1/RelatedPerson
+ isReferenced: false
repeats: true
+
+ - resourceName: Encounter
+ segment: .PV1
+ group: PATIENT.PATIENT_VISIT
+ resourcePath: segments/PV1/Encounter
isReferenced: true
additionalSegments:
- - .OBSERVATION_REQUEST.OBR
- - .OBSERVATION_REQUEST.NTE
- - PATIENT.PATIENT_VISIT.PV1
+ - .PV2
- MSH
- - PATIENT.PID
- - resourceName: Observation
+ - resourceName: OrderObservation
segment: .OBSERVATION_REQUEST.OBSERVATION.OBX
group: ORDER
resourcePath: segments/OBX/Observation
@@ -40,11 +61,32 @@ resources:
- .OBSERVATION_REQUEST.OBSERVATION.NTE
- MSH
- - resourceName: Specimen
- segment: SPECIMEN.SPM
- group: ORDER.OBSERVATION_REQUEST
+ - resourceName: OMLSpecimenSource
+ segment: .OBSERVATION_REQUEST.OBR
+ group: ORDER
+ resourcePath: segments/ORC/Specimen
+ isReferenced: true
+ repeats: true
+
+ - resourceName: OMLSpecimen
+ segment: .OBSERVATION_REQUEST.SPECIMEN.SPM
+ group: ORDER
resourcePath: segments/SPM/Specimen
repeats: true
isReferenced: true
additionalSegments:
- - MSH
\ No newline at end of file
+ - MSH
+
+ - resourceName: ServiceRequest
+ segment: .ORC
+ group: ORDER
+ resourcePath: segments/ORC/ServiceRequest
+ repeats: true
+ isReferenced: true
+ additionalSegments:
+ - .OBSERVATION_REQUEST.OBR
+ - .OBSERVATION_REQUEST.NTE
+ - PATIENT.PATIENT_VISIT.PV1
+ - MSH
+ - PATIENT.PID
+ - .OBSERVATION_REQUEST.OBSERVATION.OBX
\ No newline at end of file
diff --git a/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml b/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml
index f437b25ae5b..ba4e40eb4a8 100644
--- a/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/message/ORM_O01.yml
@@ -8,27 +8,38 @@ resources:
repeats: false
isReferenced: false
+ - resourceName: Provenance
+ segment: MSH
+ resourcePath: segments/MSH/Provenance-Source
+
+ - resourceName: Provenance
+ segment: MSH
+ resourcePath: segments/MSH/Provenance-Transformation
+
- resourceName: Patient
segment: .PID
group: PATIENT
resourcePath: segments/PID/Patient
isReferenced: true
repeats: false
+ additionalSegments:
+ - .PD1
+ - .NTE
- - resourceName: ServiceRequest
- segment: .ORC
- group: ORDER
- resourcePath: segments/ORC/ServiceRequest
- repeats: true
+ - resourceName: Provenance
+ segment: .PID
+ group: PATIENT
+ resourcePath: segments/PID/Provenance-Patient
+
+ - resourceName: Encounter
+ segment: .PV1
+ group: PATIENT.PATIENT_VISIT
+ resourcePath: segments/PV1/Encounter
isReferenced: true
additionalSegments:
- - .ORDER_DETAIL.OBR
- - .ORDER_DETAIL.NTE
- - PATIENT.PATIENT_VISIT.PV1
- - MSH
- - PATIENT.PID
+ - .PV2
- - resourceName: Observation
+ - resourceName: OrderObservation
segment: .ORDER_DETAIL.OBSERVATION.OBX
group: ORDER
resourcePath: segments/OBX/Observation
@@ -38,15 +49,16 @@ resources:
- .ORC
- .ORDER_DETAIL.OBR
- .ORDER_DETAIL.OBSERVATION.NTE
- - MSH
- - resourceName: Specimen
- segment: .OBR
- group: ORDER.ORDER_DETAIL
- resourcePath: segments/SPM/Specimen
+ - resourceName: ServiceRequest
+ segment: .ORC
+ group: ORDER
+ resourcePath: segments/ORC/ServiceRequest
repeats: true
isReferenced: true
additionalSegments:
- - .OBSERVATION.OBX
- - .OBSERVATION.NTE
- - MSH
\ No newline at end of file
+ - .ORDER_DETAIL.OBR
+ - .ORDER_DETAIL.NTE
+ - PATIENT.PATIENT_VISIT.PV1
+ - PATIENT.PID
+ - .ORDER_DETAIL.OBSERVATION.OBX
\ No newline at end of file
diff --git a/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml b/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml
index 8fefc94aec4..70d1b4b86d1 100644
--- a/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/message/ORU_R01.yml
@@ -28,8 +28,8 @@ resources:
- .NK1
- resourceName: Provenance
- group: PATIENT_RESULT.PATIENT
segment: .PID
+ group: PATIENT_RESULT.PATIENT
resourcePath: segments/PID/Provenance-Patient
- resourceName: RelatedPerson
@@ -45,7 +45,7 @@ resources:
resourcePath: segments/PV1/Encounter
isReferenced: true
additionalSegments:
- - .PATIENT.VISIT.PV2
+ - .VISIT.PV2
- MSH
- resourceName: Observation
diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml b/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml
index b11a987660a..e5ddf4f1ed1 100644
--- a/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/segments/OBX/Observation.yml
@@ -18,7 +18,6 @@ resourceType: Observation
# Not implementing OBX.32 not in mapping not in NIST
# OBX.33 is repeatable but maps to specimen on Observation which is not, so it's all captured in OBXExtension
-
id:
type: STRING
valueOf: "GeneralUtils.generateResourceId()"
diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml
index 33ca4d0f481..c2509802ecf 100644
--- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/OBRExtension.yml
@@ -34,6 +34,77 @@ extension:
valueOf: datatypes/EI/Identifier
expressionType: resource
specs: OBR.3
+ - expressionType: nested
+ vars:
+ obr7: OBR.7
+ condition: $obr7 NOT_NULL
+ generateList: true
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.7
+ valueDateTime:
+ expressionType: nested
+ expressions:
+ - type: STRING
+ valueOf: "GeneralUtils.dateTimeWithZoneId(obr7,ZONEID)"
+ expressionType: JEXL
+ _valueDateTime:
+ expressionType: nested
+ expressionsMap:
+ extension:
+ generateList: true
+ expressionType: nested
+ expressionsMap:
+ url:
+ type: SYSTEM_URL
+ value: hl7v2-date-time
+ valueString:
+ type: STRING
+ valueOf: OBR.7
+ expressionType: HL7Spec
+ - expressionType: nested
+ vars:
+ obr8: OBR.8
+ condition: $obr8 NOT_NULL
+ generateList: true
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.8
+ valueDateTime:
+ expressionType: nested
+ expressions:
+ - type: STRING
+ valueOf: "GeneralUtils.dateTimeWithZoneId(obr8,ZONEID)"
+ expressionType: JEXL
+ _valueDateTime:
+ expressionType: nested
+ expressionsMap:
+ extension:
+ generateList: true
+ expressionType: nested
+ expressionsMap:
+ url:
+ type: SYSTEM_URL
+ value: hl7v2-date-time
+ valueString:
+ type: STRING
+ valueOf: OBR.8
+ expressionType: HL7Spec
+ - expressionType: nested
+ vars:
+ obr9: STRING, OBR.9
+ condition: $obr9 NOT_NULL
+ specs: OBR.9
+ generateList: true
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.9
+ valueQuantity:
+ expressionType: resource
+ valueOf: datatypes/CQ/Quantity
- expressionType: nested
vars:
obr10: STRING_ALL, OBR.10
@@ -83,6 +154,97 @@ extension:
expressionType: resource
valueOf: datatypes/CWE/CodeableConcept
specs: OBR.13
+ - expressionType: nested
+ vars:
+ obr14: STRING, OBR.14
+ condition: $obr14 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.14
+ valueDateTime:
+ type: STRING
+ valueOf: "GeneralUtils.dateTimeWithZoneId(dateTimeIn,ZONEID)"
+ expressionType: JEXL
+ vars:
+ dateTimeIn: OBR.14
+ _valueDateTime:
+ condition: $obr14 NOT_NULL
+ expressionType: nested
+ vars:
+ obr14: OBR.14
+ expressionsMap:
+ extension:
+ generateList: true
+ expressionType: nested
+ expressionsMap:
+ url:
+ type: SYSTEM_URL
+ value: hl7v2-date-time
+ valueString:
+ type: STRING
+ valueOf: $obr14
+ expressionType: HL7Spec
+ - expressionType: nested
+ vars:
+ obr151: STRING_ALL, OBR.15.1
+ condition: $obr151 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.15.1
+ valueCodeableConcept:
+ valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: OBR.15.1
+ - expressionType: nested
+ vars:
+ obr152: STRING_ALL, OBR.15.2
+ condition: $obr152 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.15.2
+ valueCodeableConcept:
+ valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: OBR.15.2
+ - expressionType: nested
+ vars:
+ obr153: OBR.15.3
+ condition: $obr153 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.15.3
+ valueString:
+ type: STRING
+ valueOf: OBR.15.3
+ expressionType: HL7Spec
+ - expressionType: nested
+ vars:
+ obr154: STRING_ALL, OBR.15.4
+ condition: $obr154 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.15.4
+ valueCodeableConcept:
+ valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: OBR.15.4
+ - expressionType: nested
+ vars:
+ obr156: STRING_ALL, OBR.15.6
+ condition: $obr156 NOT_NULL
+ expressionsMap:
+ url:
+ type: STRING
+ value: OBR.15.6
+ valueCodeableConcept:
+ valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: OBR.15.6
- expressionType: nested
vars:
obr16: STRING_ALL, OBR.16
diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml
index a914e822208..989bf70cd12 100644
--- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/ServiceRequest.yml
@@ -348,6 +348,27 @@ subject:
expressionType: resource
specs: $Patient
+specimen:
+ generateList: true
+ expressionType: nested
+ expressions:
+ - valueOf: datatype/Reference
+ generateList: true
+ expressionType: resource
+ specs: $OMLSpecimen
+ useGroup: true
+ - valueOf: datatype/Reference
+ expressionType: resource
+ specs: $OMLSpecimenSource
+ useGroup: true
+
+supportingInfo:
+ generateList: true
+ valueOf: datatype/Reference
+ expressionType: resource
+ specs: $OrderObservation
+ useGroup: true
+
note:
valueOf: segments/NTE/Annotation
expressionType: resource
diff --git a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml
index b3135cde3a6..f5a05555b8f 100644
--- a/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/segments/ORC/Specimen.yml
@@ -12,26 +12,27 @@ type:
specs: OBR.15.1
container:
- condition: $obr152
+ condition: $obr152 NOT_NULL
expressionType: nested
generateList: true
vars:
obr152: OBR.15.2
expressionsMap:
additiveCodeableConcept:
- expressionType: nested
- expressions:
- - expressionType: nested
- expressionsMap:
- text:
- type: STRING
- valueOf: OBR.15.2
- expressionType: HL7Spec
+ valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: OBR.15.2
collection:
- condition: $spm7 NOT_NULL
+ condition: $obr7 NOT_NULL || $obr8 NOT_NULL || $obr9 NOT_NULL || $obr10 NOT_NULL || $obr15 NOT_NULL
expressionType: nested
generateList: true
+ vars:
+ obr7: OBR.7
+ obr8: OBR.8
+ obr9: OBR.9
+ obr10: OBR.10
+ obr15: OBR.15
expressionsMap:
bodySite:
valueOf: datatypes/CWE/CodeableConcept
@@ -62,6 +63,24 @@ collection:
type: STRING
valueOf: "GeneralUtils.dateTimeWithZoneId(dateTimeIn,ZONEID)"
expressionType: JEXL
+ _collectedDateTime:
+ condition: $dateTimeIn NOT_NULL && $end NULL
+ expressionType: nested
+ vars:
+ dateTimeIn: OBR.7
+ end: OBR.8
+ expressionsMap:
+ extension_1:
+ generateList: true
+ expressionType: nested
+ expressionsMap:
+ url:
+ type: SYSTEM_URL
+ value: hl7v2-date-time
+ valueString:
+ type: STRING
+ valueOf: $dateTimeIn
+ expressionType: HL7Spec
collector:
condition: $obr10 NOT_NULL
vars:
@@ -87,10 +106,10 @@ note_specimen-source:
expressionsMap:
url:
type: SYSTEM_URL
- value: hl7v2Name
+ value: hl7v2Component
valueString:
type: STRING
- valueOf: specimen-source
+ valueOf: OBR.15.3
note_collectors-comment:
condition: $obr39 NOT_NULL
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 f11717e35c6..3dc555ef779 100644
--- a/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml
+++ b/prime-router/metadata/HL7/catchall/hl7/segments/PID/Patient.yml
@@ -91,9 +91,15 @@ contact:
vars:
nk141: STRING, NK1.41
relationship:
- valueOf: datatypes/CWE/CodeableConcept
- expressionType: resource
- specs: NK1.7
+ generateList: true
+ expressionType: nested
+ expressions:
+ - valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: NK1.3
+ - valueOf: datatypes/CWE/CodeableConcept
+ expressionType: resource
+ specs: NK1.7
period:
vars:
startDate: NK1.8
diff --git a/prime-router/metadata/json_schema/organizations/organizations.json b/prime-router/metadata/json_schema/organizations/organizations.json
index 115efaa6ae0..8be19b987c1 100644
--- a/prime-router/metadata/json_schema/organizations/organizations.json
+++ b/prime-router/metadata/json_schema/organizations/organizations.json
@@ -213,6 +213,9 @@
"HL7_BATCH"
]
},
+ "hl7AcknowledgementEnabled": {
+ "type": "boolean"
+ },
"name": {
"type": "string"
},
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java
new file mode 100644
index 00000000000..87c9e5885e9
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER.java
@@ -0,0 +1,167 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.SAC;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+
+/**
+ * Represents a OML_O21_CONTAINER group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: SAC (Specimen Container detail)
+ * - 2: OML_O21_CONTAINER_OBSERVATION (a Group object) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_CONTAINER extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_CONTAINER group
+ */
+ public OML_O21_CONTAINER(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SAC.class, true, false, false);
+ this.add(OML_O21_CONTAINER_OBSERVATION.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_CONTAINER - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * SAC (Specimen Container detail) - creates it if necessary
+ */
+ public SAC getSAC() {
+ SAC retVal = getTyped("SAC", SAC.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * CONTAINER_OBSERVATION (a Group object) - creates it if necessary
+ */
+ public OML_O21_CONTAINER_OBSERVATION getCONTAINER_OBSERVATION() {
+ OML_O21_CONTAINER_OBSERVATION retVal = getTyped("CONTAINER_OBSERVATION", OML_O21_CONTAINER_OBSERVATION.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * CONTAINER_OBSERVATION (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_CONTAINER_OBSERVATION getCONTAINER_OBSERVATION(int rep) {
+ OML_O21_CONTAINER_OBSERVATION retVal = getTyped("CONTAINER_OBSERVATION", rep, OML_O21_CONTAINER_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of CONTAINER_OBSERVATION
+ */
+ public int getCONTAINER_OBSERVATIONReps() {
+ return getReps("CONTAINER_OBSERVATION");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of CONTAINER_OBSERVATION.
+ *
+ *
+ * Note that unlike {@link #getCONTAINER_OBSERVATION()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getCONTAINER_OBSERVATIONAll() throws HL7Exception {
+ return getAllAsList("CONTAINER_OBSERVATION", OML_O21_CONTAINER_OBSERVATION.class);
+ }
+
+ /**
+ * Inserts a specific repetition of CONTAINER_OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertCONTAINER_OBSERVATION(OML_O21_CONTAINER_OBSERVATION structure, int rep) throws HL7Exception {
+ super.insertRepetition("CONTAINER_OBSERVATION", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of CONTAINER_OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_CONTAINER_OBSERVATION insertCONTAINER_OBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_CONTAINER_OBSERVATION)super.insertRepetition("CONTAINER_OBSERVATION", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of CONTAINER_OBSERVATION (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_CONTAINER_OBSERVATION removeCONTAINER_OBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_CONTAINER_OBSERVATION)super.removeRepetition("CONTAINER_OBSERVATION", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java
new file mode 100644
index 00000000000..a3f0c2961b3
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_CONTAINER_OBSERVATION.java
@@ -0,0 +1,169 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+
+/**
+ * Represents a OML_O21_CONTAINER_OBSERVATION group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBX (Observation/Result)
+ * - 2: PRT (Participation Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_CONTAINER_OBSERVATION extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_CONTAINER_OBSERVATION group
+ */
+ public OML_O21_CONTAINER_OBSERVATION(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBX.class, true, false, false);
+ this.add(PRT.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_CONTAINER_OBSERVATION - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * OBX (Observation/Result) - creates it if necessary
+ */
+ public OBX getOBX() {
+ OBX retVal = getTyped("OBX", OBX.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java
new file mode 100644
index 00000000000..e84f2c62e1d
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_INSURANCE.java
@@ -0,0 +1,122 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.v27.segment.IN2;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.IN1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.IN3;
+
+/**
+ * Represents a OML_O21_INSURANCE group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: IN1 (Insurance)
+ * - 2: IN2 (Insurance Additional Information) optional
+ * - 3: IN3 (Insurance Additional Information, Certification) optional
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_INSURANCE extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_INSURANCE group
+ */
+ public OML_O21_INSURANCE(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(IN1.class, true, false, false);
+ this.add(IN2.class, false, false, false);
+ this.add(IN3.class, false, false, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_INSURANCE - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * IN1 (Insurance) - creates it if necessary
+ */
+ public IN1 getIN1() {
+ IN1 retVal = getTyped("IN1", IN1.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN2 (Insurance Additional Information) - creates it if necessary
+ */
+ public IN2 getIN2() {
+ IN2 retVal = getTyped("IN2", IN2.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3 (Insurance Additional Information, Certification) - creates it if necessary
+ */
+ public IN3 getIN3() {
+ IN3 retVal = getTyped("IN3", IN3.class);
+ return retVal;
+ }
+
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java
new file mode 100644
index 00000000000..952a9ef4fba
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION.java
@@ -0,0 +1,237 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.TCD;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_OBSERVATION group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBX (Observation/Result)
+ * - 2: PRT (Participation Information) optional repeating
+ * - 3: TCD (Test Code Detail) optional
+ * - 4: NTE (Notes and Comments) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_OBSERVATION extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_OBSERVATION group
+ */
+ public OML_O21_OBSERVATION(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBX.class, true, false, false);
+ this.add(PRT.class, false, true, false);
+ this.add(TCD.class, false, false, false);
+ this.add(NTE.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_OBSERVATION - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * OBX (Observation/Result) - creates it if necessary
+ */
+ public OBX getOBX() {
+ OBX retVal = getTyped("OBX", OBX.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+ /**
+ * Returns
+ * TCD (Test Code Detail) - creates it if necessary
+ */
+ public TCD getTCD() {
+ TCD retVal = getTyped("TCD", TCD.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java
new file mode 100644
index 00000000000..cfa7ccf4483
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_PRIOR.java
@@ -0,0 +1,243 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_OBSERVATION_PRIOR group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBX (Observation/Result)
+ * - 2: PRT (Participation Information) optional repeating
+ * - 3: NTE (Notes and Comments) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_OBSERVATION_PRIOR extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_OBSERVATION_PRIOR group
+ */
+ public OML_O21_OBSERVATION_PRIOR(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBX.class, true, false, false);
+ this.add(PRT.class, false, true, false);
+ this.add(NTE.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_OBSERVATION_PRIOR - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * OBX (Observation/Result) - creates it if necessary
+ */
+ public OBX getOBX() {
+ OBX retVal = getTyped("OBX", OBX.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java
new file mode 100644
index 00000000000..c2a6586e97f
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_OBSERVATION_REQUEST.java
@@ -0,0 +1,526 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.CTD;
+import ca.uhn.hl7v2.model.v27.segment.TCD;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.DG1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_OBSERVATION_REQUEST group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBR (Observation Request)
+ * - 2: TCD (Test Code Detail) optional
+ * - 3: NTE (Notes and Comments) optional repeating
+ * - 4: PRT (Participation Information) optional repeating
+ * - 5: CTD (Contact Data) optional
+ * - 6: DG1 (Diagnosis) optional repeating
+ * - 7: OML_O21_OBSERVATION (a Group object) optional repeating
+ * - 8: OML_O21_SPECIMEN (a Group object) optional repeating
+ * - 9: OML_O21_PRIOR_RESULT (a Group object) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_OBSERVATION_REQUEST extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_OBSERVATION_REQUEST group
+ */
+ public OML_O21_OBSERVATION_REQUEST(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBR.class, true, false, false);
+ this.add(TCD.class, false, false, false);
+ this.add(NTE.class, false, true, false);
+ this.add(PRT.class, false, true, false);
+ this.add(CTD.class, false, false, false);
+ this.add(DG1.class, false, true, false);
+ this.add(OML_O21_OBSERVATION.class, false, true, false);
+ this.add(OML_O21_SPECIMEN.class, false, true, false);
+ this.add(OML_O21_PRIOR_RESULT.class, false, true, false); // not todo?
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_OBSERVATION_REQUEST - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * OBR (Observation Request) - creates it if necessary
+ */
+ public OBR getOBR() {
+ OBR retVal = getTyped("OBR", OBR.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * TCD (Test Code Detail) - creates it if necessary
+ */
+ public TCD getTCD() {
+ TCD retVal = getTyped("TCD", TCD.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+ /**
+ * Returns
+ * CTD (Contact Data) - creates it if necessary
+ */
+ public CTD getCTD() {
+ CTD retVal = getTyped("CTD", CTD.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * DG1 (Diagnosis) - creates it if necessary
+ */
+ public DG1 getDG1() {
+ DG1 retVal = getTyped("DG1", DG1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * DG1 (Diagnosis) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public DG1 getDG1(int rep) {
+ DG1 retVal = getTyped("DG1", rep, DG1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of DG1
+ */
+ public int getDG1Reps() {
+ return getReps("DG1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of DG1.
+ *
+ *
+ * Note that unlike {@link #getDG1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getDG1All() throws HL7Exception {
+ return getAllAsList("DG1", DG1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertDG1(DG1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("DG1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public DG1 insertDG1(int rep) throws HL7Exception {
+ return (DG1)super.insertRepetition("DG1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public DG1 removeDG1(int rep) throws HL7Exception {
+ return (DG1)super.removeRepetition("DG1", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * OBSERVATION (a Group object) - creates it if necessary
+ */
+ public OML_O21_OBSERVATION getOBSERVATION() {
+ OML_O21_OBSERVATION retVal = getTyped("OBSERVATION", OML_O21_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * OBSERVATION (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_OBSERVATION getOBSERVATION(int rep) {
+ OML_O21_OBSERVATION retVal = getTyped("OBSERVATION", rep, OML_O21_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of OBSERVATION
+ */
+ public int getOBSERVATIONReps() {
+ return getReps("OBSERVATION");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION.
+ *
+ *
+ * Note that unlike {@link #getOBSERVATION()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getOBSERVATIONAll() throws HL7Exception {
+ return getAllAsList("OBSERVATION", OML_O21_OBSERVATION.class);
+ }
+
+ /**
+ * Inserts a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertOBSERVATION(OML_O21_OBSERVATION structure, int rep) throws HL7Exception {
+ super.insertRepetition("OBSERVATION", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_OBSERVATION insertOBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_OBSERVATION)super.insertRepetition("OBSERVATION", rep);
+ }
+
+ /**
+ * Removes a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_OBSERVATION removeOBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_OBSERVATION)super.removeRepetition("OBSERVATION", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * SPECIMEN (a Group object) - creates it if necessary
+ */
+ public OML_O21_SPECIMEN getSPECIMEN() {
+ OML_O21_SPECIMEN retVal = getTyped("SPECIMEN", OML_O21_SPECIMEN.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * SPECIMEN (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_SPECIMEN getSPECIMEN(int rep) {
+ OML_O21_SPECIMEN retVal = getTyped("SPECIMEN", rep, OML_O21_SPECIMEN.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of SPECIMEN
+ */
+ public int getSPECIMENReps() {
+ return getReps("SPECIMEN");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of SPECIMEN.
+ *
+ *
+ * Note that unlike {@link #getSPECIMEN()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getSPECIMENAll() throws HL7Exception {
+ return getAllAsList("SPECIMEN", OML_O21_SPECIMEN.class);
+ }
+
+ /**
+ * Inserts a specific repetition of SPECIMEN (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertSPECIMEN(OML_O21_SPECIMEN structure, int rep) throws HL7Exception {
+ super.insertRepetition("SPECIMEN", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of SPECIMEN (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_SPECIMEN insertSPECIMEN(int rep) throws HL7Exception {
+ return (OML_O21_SPECIMEN)super.insertRepetition("SPECIMEN", rep);
+ }
+
+ /**
+ * Removes a specific repetition of SPECIMEN (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_SPECIMEN removeSPECIMEN(int rep) throws HL7Exception {
+ return (OML_O21_SPECIMEN)super.removeRepetition("SPECIMEN", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRIOR_RESULT (a Group object) - creates it if necessary
+ */
+ public OML_O21_PRIOR_RESULT getPRIOR_RESULT() {
+ OML_O21_PRIOR_RESULT retVal = getTyped("PRIOR_RESULT", OML_O21_PRIOR_RESULT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRIOR_RESULT (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_PRIOR_RESULT getPRIOR_RESULT(int rep) {
+ OML_O21_PRIOR_RESULT retVal = getTyped("PRIOR_RESULT", rep, OML_O21_PRIOR_RESULT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRIOR_RESULT
+ */
+ public int getPRIOR_RESULTReps() {
+ return getReps("PRIOR_RESULT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRIOR_RESULT.
+ *
+ *
+ * Note that unlike {@link #getPRIOR_RESULT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRIOR_RESULTAll() throws HL7Exception {
+ return getAllAsList("PRIOR_RESULT", OML_O21_PRIOR_RESULT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRIOR_RESULT (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRIOR_RESULT(OML_O21_PRIOR_RESULT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRIOR_RESULT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRIOR_RESULT (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_PRIOR_RESULT insertPRIOR_RESULT(int rep) throws HL7Exception {
+ return (OML_O21_PRIOR_RESULT)super.insertRepetition("PRIOR_RESULT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRIOR_RESULT (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_PRIOR_RESULT removePRIOR_RESULT(int rep) throws HL7Exception {
+ return (OML_O21_PRIOR_RESULT)super.removeRepetition("PRIOR_RESULT", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java
new file mode 100644
index 00000000000..d67f7ce58cb
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER.java
@@ -0,0 +1,384 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.group.OML_O21_TIMING;
+import ca.uhn.hl7v2.model.v27.segment.BLG;
+import ca.uhn.hl7v2.model.v27.segment.CTI;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_ORDER group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: ORC (Common Order)
+ * - 2: PRT (Participation Information) optional repeating
+ * - 3: OML_O21_TIMING (a Group object) optional repeating
+ * - 4: OML_O21_OBSERVATION_REQUEST (a Group object) optional
+ * - 5: FT1 (Financial Transaction) optional repeating
+ * - 6: CTI (Clinical Trial Identification) optional repeating
+ * - 7: BLG (Billing) optional
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_ORDER extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_ORDER group
+ */
+ public OML_O21_ORDER(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(ORC.class, true, false, false);
+ this.add(PRT.class, false, true, false);
+ this.add(OML_O21_TIMING.class, false, true, false); // todo add TQ1 java class creation into tq1 ticket
+ this.add(OML_O21_OBSERVATION_REQUEST.class, false, false, false);
+ this.add(FT1.class, false, true, false);
+ this.add(CTI.class, false, true, false);
+ this.add(BLG.class, false, false, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_ORDER - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * ORC (Common Order) - creates it if necessary
+ */
+ public ORC getORC() {
+ ORC retVal = getTyped("ORC", ORC.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * TIMING (a Group object) - creates it if necessary
+ */
+ public OML_O21_TIMING getTIMING() {
+ OML_O21_TIMING retVal = getTyped("TIMING", OML_O21_TIMING.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * TIMING (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_TIMING getTIMING(int rep) {
+ OML_O21_TIMING retVal = getTyped("TIMING", rep, OML_O21_TIMING.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of TIMING
+ */
+ public int getTIMINGReps() {
+ return getReps("TIMING");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of TIMING.
+ *
+ * Note that unlike {@link #getTIMING()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getTIMINGAll() throws HL7Exception {
+ return getAllAsList("TIMING", OML_O21_TIMING.class);
+ }
+
+ /**
+ * Inserts a specific repetition of TIMING (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertTIMING(OML_O21_TIMING structure, int rep) throws HL7Exception {
+ super.insertRepetition("TIMING", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of TIMING (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_TIMING insertTIMING(int rep) throws HL7Exception {
+ return (OML_O21_TIMING)super.insertRepetition("TIMING", rep);
+ }
+
+ /**
+ * Removes a specific repetition of TIMING (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_TIMING removeTIMING(int rep) throws HL7Exception {
+ return (OML_O21_TIMING)super.removeRepetition("TIMING", rep);
+ }
+
+ /**
+ * Returns
+ * OBSERVATION_REQUEST (a Group object) - creates it if necessary
+ */
+ public OML_O21_OBSERVATION_REQUEST getOBSERVATION_REQUEST() {
+ OML_O21_OBSERVATION_REQUEST retVal = getTyped("OBSERVATION_REQUEST", OML_O21_OBSERVATION_REQUEST.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * FT1 (Financial Transaction) - creates it if necessary
+ */
+ public FT1 getFT1() {
+ FT1 retVal = getTyped("FT1", FT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1 (Financial Transaction) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public FT1 getFT1(int rep) {
+ FT1 retVal = getTyped("FT1", rep, FT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of FT1
+ */
+ public int getFT1Reps() {
+ return getReps("FT1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of FT1.
+ *
+ * Note that unlike {@link #getFT1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getFT1All() throws HL7Exception {
+ return getAllAsList("FT1", FT1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertFT1(FT1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("FT1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public FT1 insertFT1(int rep) throws HL7Exception {
+ return (FT1)super.insertRepetition("FT1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public FT1 removeFT1(int rep) throws HL7Exception {
+ return (FT1)super.removeRepetition("FT1", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * CTI (Clinical Trial Identification) - creates it if necessary
+ */
+ public CTI getCTI() {
+ CTI retVal = getTyped("CTI", CTI.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * CTI (Clinical Trial Identification) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public CTI getCTI(int rep) {
+ CTI retVal = getTyped("CTI", rep, CTI.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of CTI
+ */
+ public int getCTIReps() {
+ return getReps("CTI");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of CTI.
+ *
+ * Note that unlike {@link #getCTI()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getCTIAll() throws HL7Exception {
+ return getAllAsList("CTI", CTI.class);
+ }
+
+ /**
+ * Inserts a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertCTI(CTI structure, int rep) throws HL7Exception {
+ super.insertRepetition("CTI", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public CTI insertCTI(int rep) throws HL7Exception {
+ return (CTI)super.insertRepetition("CTI", rep);
+ }
+
+ /**
+ * Removes a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public CTI removeCTI(int rep) throws HL7Exception {
+ return (CTI)super.removeRepetition("CTI", rep);
+ }
+
+ /**
+ * Returns
+ * BLG (Billing) - creates it if necessary
+ */
+ public BLG getBLG() {
+ BLG retVal = getTyped("BLG", BLG.class);
+ return retVal;
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java
new file mode 100644
index 00000000000..11f33299fda
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_ORDER_PRIOR.java
@@ -0,0 +1,407 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.model.v27.group.OML_O21_TIMING_PRIOR;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_ORDER_PRIOR group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: ORC (Common Order)
+ * - 2: OBR (Observation Request)
+ * - 3: NTE (Notes and Comments) optional repeating
+ * - 4: PRT (Participation Information) optional repeating
+ * - 5: OML_O21_TIMING_PRIOR (a Group object) optional repeating
+ * - 6: OML_O21_OBSERVATION_PRIOR (a Group object) repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_ORDER_PRIOR extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_ORDER_PRIOR group
+ */
+ public OML_O21_ORDER_PRIOR(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(ORC.class, true, false, false);
+ this.add(OBR.class, true, false, false);
+ this.add(NTE.class, false, true, false);
+ this.add(PRT.class, false, true, false);
+ this.add(OML_O21_TIMING_PRIOR.class, false, true, false);
+ this.add(OML_O21_OBSERVATION_PRIOR.class, true, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_ORDER_PRIOR - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * ORC (Common Order) - creates it if necessary
+ */
+ public ORC getORC() {
+ ORC retVal = getTyped("ORC", ORC.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * OBR (Observation Request) - creates it if necessary
+ */
+ public OBR getOBR() {
+ OBR retVal = getTyped("OBR", OBR.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * TIMING_PRIOR (a Group object) - creates it if necessary
+ */
+ public OML_O21_TIMING_PRIOR getTIMING_PRIOR() {
+ OML_O21_TIMING_PRIOR retVal = getTyped("TIMING_PRIOR", OML_O21_TIMING_PRIOR.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * TIMING_PRIOR (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_TIMING_PRIOR getTIMING_PRIOR(int rep) {
+ OML_O21_TIMING_PRIOR retVal = getTyped("TIMING_PRIOR", rep, OML_O21_TIMING_PRIOR.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of TIMING_PRIOR
+ */
+ public int getTIMING_PRIORReps() {
+ return getReps("TIMING_PRIOR");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of TIMING_PRIOR.
+ *
+ *
+ * Note that unlike {@link #getTIMING_PRIOR()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getTIMING_PRIORAll() throws HL7Exception {
+ return getAllAsList("TIMING_PRIOR", OML_O21_TIMING_PRIOR.class);
+ }
+
+ /**
+ * Inserts a specific repetition of TIMING_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertTIMING_PRIOR(OML_O21_TIMING_PRIOR structure, int rep) throws HL7Exception {
+ super.insertRepetition("TIMING_PRIOR", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of TIMING_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_TIMING_PRIOR insertTIMING_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_TIMING_PRIOR)super.insertRepetition("TIMING_PRIOR", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of TIMING_PRIOR (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_TIMING_PRIOR removeTIMING_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_TIMING_PRIOR)super.removeRepetition("TIMING_PRIOR", rep);
+ }
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * OBSERVATION_PRIOR (a Group object) - creates it if necessary
+ */
+ public OML_O21_OBSERVATION_PRIOR getOBSERVATION_PRIOR() {
+ OML_O21_OBSERVATION_PRIOR retVal = getTyped("OBSERVATION_PRIOR", OML_O21_OBSERVATION_PRIOR.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * OBSERVATION_PRIOR (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_OBSERVATION_PRIOR getOBSERVATION_PRIOR(int rep) {
+ OML_O21_OBSERVATION_PRIOR retVal = getTyped("OBSERVATION_PRIOR", rep, OML_O21_OBSERVATION_PRIOR.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of OBSERVATION_PRIOR
+ */
+ public int getOBSERVATION_PRIORReps() {
+ return getReps("OBSERVATION_PRIOR");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION_PRIOR.
+ *
+ *
+ * Note that unlike {@link #getOBSERVATION_PRIOR()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getOBSERVATION_PRIORAll() throws HL7Exception {
+ return getAllAsList("OBSERVATION_PRIOR", OML_O21_OBSERVATION_PRIOR.class);
+ }
+
+ /**
+ * Inserts a specific repetition of OBSERVATION_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertOBSERVATION_PRIOR(OML_O21_OBSERVATION_PRIOR structure, int rep) throws HL7Exception {
+ super.insertRepetition("OBSERVATION_PRIOR", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of OBSERVATION_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_OBSERVATION_PRIOR insertOBSERVATION_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_OBSERVATION_PRIOR)super.insertRepetition("OBSERVATION_PRIOR", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of OBSERVATION_PRIOR (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_OBSERVATION_PRIOR removeOBSERVATION_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_OBSERVATION_PRIOR)super.removeRepetition("OBSERVATION_PRIOR", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java
new file mode 100644
index 00000000000..ca80f07eff1
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT.java
@@ -0,0 +1,469 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.GT1;
+import ca.uhn.hl7v2.model.v27.segment.NK1;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PID;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_PATIENT group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PID (Patient Identification)
+ * - 2: PD1 (Patient Additional Demographic) optional
+ * - 3: PRT (Participation Information) optional repeating
+ * - 4: NTE (Notes and Comments) optional repeating
+ * - 5: NK1 (Next of Kin / Associated Parties) optional repeating
+ * - 6: OML_O21_PATIENT_VISIT (a Group object) optional
+ * - 7: OML_O21_INSURANCE (a Group object) optional repeating
+ * - 8: GT1 (Guarantor) optional
+ * - 9: AL1 (Patient Allergy Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_PATIENT extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_PATIENT group
+ */
+ public OML_O21_PATIENT(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PID.class, true, false, false);
+ this.add(PD1.class, false, false, false);
+ this.add(PRT.class, false, true, false);
+ this.add(NTE.class, false, true, false);
+ this.add(NK1.class, false, true, false);
+ this.add(OML_O21_PATIENT_VISIT.class, false, false, false);
+ this.add(OML_O21_INSURANCE.class, false, true, false);
+ this.add(GT1.class, false, false, false);
+ this.add(AL1.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_PATIENT - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * PID (Patient Identification) - creates it if necessary
+ */
+ public PID getPID() {
+ PID retVal = getTyped("PID", PID.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PD1 (Patient Additional Demographic) - creates it if necessary
+ */
+ public PD1 getPD1() {
+ PD1 retVal = getTyped("PD1", PD1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NK1 (Next of Kin / Associated Parties) - creates it if necessary
+ */
+ public NK1 getNK1() {
+ NK1 retVal = getTyped("NK1", NK1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NK1 (Next of Kin / Associated Parties) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NK1 getNK1(int rep) {
+ NK1 retVal = getTyped("NK1", rep, NK1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NK1
+ */
+ public int getNK1Reps() {
+ return getReps("NK1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NK1.
+ *
+ *
+ * Note that unlike {@link #getNK1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNK1All() throws HL7Exception {
+ return getAllAsList("NK1", NK1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NK1 (Next of Kin / Associated Parties)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNK1(NK1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("NK1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NK1 (Next of Kin / Associated Parties)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NK1 insertNK1(int rep) throws HL7Exception {
+ return (NK1)super.insertRepetition("NK1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NK1 (Next of Kin / Associated Parties)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NK1 removeNK1(int rep) throws HL7Exception {
+ return (NK1)super.removeRepetition("NK1", rep);
+ }
+
+ /**
+ * Returns
+ * PATIENT_VISIT (a Group object) - creates it if necessary
+ */
+ public OML_O21_PATIENT_VISIT getPATIENT_VISIT() {
+ OML_O21_PATIENT_VISIT retVal = getTyped("PATIENT_VISIT", OML_O21_PATIENT_VISIT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * INSURANCE (a Group object) - creates it if necessary
+ */
+ public OML_O21_INSURANCE getINSURANCE() {
+ OML_O21_INSURANCE retVal = getTyped("INSURANCE", OML_O21_INSURANCE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * INSURANCE (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_INSURANCE getINSURANCE(int rep) {
+ OML_O21_INSURANCE retVal = getTyped("INSURANCE", rep, OML_O21_INSURANCE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of INSURANCE
+ */
+ public int getINSURANCEReps() {
+ return getReps("INSURANCE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of INSURANCE.
+ *
+ *
+ * Note that unlike {@link #getINSURANCE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getINSURANCEAll() throws HL7Exception {
+ return getAllAsList("INSURANCE", OML_O21_INSURANCE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertINSURANCE(OML_O21_INSURANCE structure, int rep) throws HL7Exception {
+ super.insertRepetition("INSURANCE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_INSURANCE insertINSURANCE(int rep) throws HL7Exception {
+ return (OML_O21_INSURANCE)super.insertRepetition("INSURANCE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_INSURANCE removeINSURANCE(int rep) throws HL7Exception {
+ return (OML_O21_INSURANCE)super.removeRepetition("INSURANCE", rep);
+ }
+
+ /**
+ * Returns
+ * GT1 (Guarantor) - creates it if necessary
+ */
+ public GT1 getGT1() {
+ GT1 retVal = getTyped("GT1", GT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ */
+ public AL1 getAL1() {
+ AL1 retVal = getTyped("AL1", AL1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public AL1 getAL1(int rep) {
+ AL1 retVal = getTyped("AL1", rep, AL1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of AL1
+ */
+ public int getAL1Reps() {
+ return getReps("AL1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of AL1.
+ *
+ *
+ * Note that unlike {@link #getAL1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getAL1All() throws HL7Exception {
+ return getAllAsList("AL1", AL1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertAL1(AL1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("AL1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public AL1 insertAL1(int rep) throws HL7Exception {
+ return (AL1)super.insertRepetition("AL1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public AL1 removeAL1(int rep) throws HL7Exception {
+ return (AL1)super.removeRepetition("AL1", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java
new file mode 100644
index 00000000000..13d8100347a
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_PRIOR.java
@@ -0,0 +1,184 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PID;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+
+/**
+ * Represents a OML_O21_PATIENT_PRIOR group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PID (Patient Identification)
+ * - 2: PD1 (Patient Additional Demographic) optional
+ * - 3: PRT (Participation Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_PATIENT_PRIOR extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_PATIENT_PRIOR group
+ */
+ public OML_O21_PATIENT_PRIOR(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PID.class, true, false, false);
+ this.add(PD1.class, false, false, false);
+ this.add(PRT.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_PATIENT_PRIOR - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * PID (Patient Identification) - creates it if necessary
+ */
+ public PID getPID() {
+ PID retVal = getTyped("PID", PID.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * PD1 (Patient Additional Demographic) - creates it if necessary
+ */
+ public PD1 getPD1() {
+ PD1 retVal = getTyped("PD1", PD1.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java
new file mode 100644
index 00000000000..38617ac1a07
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT.java
@@ -0,0 +1,167 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.PV2;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1;
+
+/**
+ * Represents a OML_O21_PATIENT_VISIT group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PV1 (Patient Visit)
+ * - 2: PV2 (Patient Visit - Additional Information) optional
+ * - 3: PRT (Participation Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_PATIENT_VISIT extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_PATIENT_VISIT group
+ */
+ public OML_O21_PATIENT_VISIT(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PV1.class, true, false, false);
+ this.add(PV2.class, false, false, false);
+ this.add(PRT.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_PATIENT_VISIT - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * PV1 (Patient Visit) - creates it if necessary
+ */
+ public PV1 getPV1() {
+ PV1 retVal = getTyped("PV1", PV1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV2 (Patient Visit - Additional Information) - creates it if necessary
+ */
+ public PV2 getPV2() {
+ PV2 retVal = getTyped("PV2", PV2.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java
new file mode 100644
index 00000000000..c0bda22c236
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PATIENT_VISIT_PRIOR.java
@@ -0,0 +1,183 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.PV2;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+/**
+ * Represents a OML_O21_PATIENT_VISIT_PRIOR group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PV1 (Patient Visit)
+ * - 2: PV2 (Patient Visit - Additional Information) optional
+ * - 3: PRT (Participation Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_PATIENT_VISIT_PRIOR extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_PATIENT_VISIT_PRIOR group
+ */
+ public OML_O21_PATIENT_VISIT_PRIOR(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PV1.class, true, false, false);
+ this.add(PV2.class, false, false, false);
+ this.add(PRT.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_PATIENT_VISIT_PRIOR - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * PV1 (Patient Visit) - creates it if necessary
+ */
+ public PV1 getPV1() {
+ PV1 retVal = getTyped("PV1", PV1.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV2 (Patient Visit - Additional Information) - creates it if necessary
+ */
+ public PV2 getPV2() {
+ PV2 retVal = getTyped("PV2", PV2.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java
new file mode 100644
index 00000000000..94902d20e83
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_PRIOR_RESULT.java
@@ -0,0 +1,256 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1;
+
+
+/**
+ * Represents a OML_O21_PRIOR_RESULT group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OML_O21_PATIENT_PRIOR (a Group object) optional
+ * - 2: OML_O21_PATIENT_VISIT_PRIOR (a Group object) optional
+ * - 3: AL1 (Patient Allergy Information) optional repeating
+ * - 4: OML_O21_ORDER_PRIOR (a Group object) repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_PRIOR_RESULT extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_PRIOR_RESULT group
+ */
+ public OML_O21_PRIOR_RESULT(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OML_O21_PATIENT_PRIOR.class, false, false, false);
+ this.add(OML_O21_PATIENT_VISIT_PRIOR.class, false, false, false);
+ this.add(AL1.class, false, true, false);
+ this.add(OML_O21_ORDER_PRIOR.class, true, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_PRIOR_RESULT - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * PATIENT_PRIOR (a Group object) - creates it if necessary
+ */
+ public OML_O21_PATIENT_PRIOR getPATIENT_PRIOR() {
+ OML_O21_PATIENT_PRIOR retVal = getTyped("PATIENT_PRIOR", OML_O21_PATIENT_PRIOR.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * PATIENT_VISIT_PRIOR (a Group object) - creates it if necessary
+ */
+ public OML_O21_PATIENT_VISIT_PRIOR getPATIENT_VISIT_PRIOR() {
+ OML_O21_PATIENT_VISIT_PRIOR retVal = getTyped("PATIENT_VISIT_PRIOR", OML_O21_PATIENT_VISIT_PRIOR.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ */
+ public AL1 getAL1() {
+ AL1 retVal = getTyped("AL1", AL1.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public AL1 getAL1(int rep) {
+ AL1 retVal = getTyped("AL1", rep, AL1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of AL1
+ */
+ public int getAL1Reps() {
+ return getReps("AL1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of AL1.
+ *
+ *
+ * Note that unlike {@link #getAL1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getAL1All() throws HL7Exception {
+ return getAllAsList("AL1", AL1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertAL1(AL1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("AL1", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public AL1 insertAL1(int rep) throws HL7Exception {
+ return (AL1)super.insertRepetition("AL1", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public AL1 removeAL1(int rep) throws HL7Exception {
+ return (AL1)super.removeRepetition("AL1", rep);
+ }
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * ORDER_PRIOR (a Group object) - creates it if necessary
+ */
+ public OML_O21_ORDER_PRIOR getORDER_PRIOR() {
+ OML_O21_ORDER_PRIOR retVal = getTyped("ORDER_PRIOR", OML_O21_ORDER_PRIOR.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * ORDER_PRIOR (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_ORDER_PRIOR getORDER_PRIOR(int rep) {
+ OML_O21_ORDER_PRIOR retVal = getTyped("ORDER_PRIOR", rep, OML_O21_ORDER_PRIOR.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of ORDER_PRIOR
+ */
+ public int getORDER_PRIORReps() {
+ return getReps("ORDER_PRIOR");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of ORDER_PRIOR.
+ *
+ *
+ * Note that unlike {@link #getORDER_PRIOR()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getORDER_PRIORAll() throws HL7Exception {
+ return getAllAsList("ORDER_PRIOR", OML_O21_ORDER_PRIOR.class);
+ }
+
+ /**
+ * Inserts a specific repetition of ORDER_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertORDER_PRIOR(OML_O21_ORDER_PRIOR structure, int rep) throws HL7Exception {
+ super.insertRepetition("ORDER_PRIOR", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of ORDER_PRIOR (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_ORDER_PRIOR insertORDER_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_ORDER_PRIOR)super.insertRepetition("ORDER_PRIOR", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of ORDER_PRIOR (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_ORDER_PRIOR removeORDER_PRIOR(int rep) throws HL7Exception {
+ return (OML_O21_ORDER_PRIOR)super.removeRepetition("ORDER_PRIOR", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java
new file mode 100644
index 00000000000..0a296f61e45
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN.java
@@ -0,0 +1,223 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.SPM;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+
+/**
+ * Represents a OML_O21_SPECIMEN group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: SPM (Specimen)
+ * - 2: OML_O21_SPECIMEN_OBSERVATION (a Group object) optional repeating
+ * - 3: OML_O21_CONTAINER (a Group object) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_SPECIMEN extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_SPECIMEN group
+ */
+ public OML_O21_SPECIMEN(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SPM.class, true, false, false);
+ this.add(OML_O21_SPECIMEN_OBSERVATION.class, false, true, false);
+ this.add(OML_O21_CONTAINER.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_SPECIMEN - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * SPM (Specimen) - creates it if necessary
+ */
+ public SPM getSPM() {
+ SPM retVal = getTyped("SPM", SPM.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * SPECIMEN_OBSERVATION (a Group object) - creates it if necessary
+ */
+ public OML_O21_SPECIMEN_OBSERVATION getSPECIMEN_OBSERVATION() {
+ OML_O21_SPECIMEN_OBSERVATION retVal = getTyped("SPECIMEN_OBSERVATION", OML_O21_SPECIMEN_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * SPECIMEN_OBSERVATION (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_SPECIMEN_OBSERVATION getSPECIMEN_OBSERVATION(int rep) {
+ OML_O21_SPECIMEN_OBSERVATION retVal = getTyped("SPECIMEN_OBSERVATION", rep, OML_O21_SPECIMEN_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of SPECIMEN_OBSERVATION
+ */
+ public int getSPECIMEN_OBSERVATIONReps() {
+ return getReps("SPECIMEN_OBSERVATION");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of SPECIMEN_OBSERVATION.
+ *
+ *
+ * Note that unlike {@link #getSPECIMEN_OBSERVATION()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getSPECIMEN_OBSERVATIONAll() throws HL7Exception {
+ return getAllAsList("SPECIMEN_OBSERVATION", OML_O21_SPECIMEN_OBSERVATION.class);
+ }
+
+ /**
+ * Inserts a specific repetition of SPECIMEN_OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertSPECIMEN_OBSERVATION(OML_O21_SPECIMEN_OBSERVATION structure, int rep) throws HL7Exception {
+ super.insertRepetition("SPECIMEN_OBSERVATION", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of SPECIMEN_OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_SPECIMEN_OBSERVATION insertSPECIMEN_OBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_SPECIMEN_OBSERVATION)super.insertRepetition("SPECIMEN_OBSERVATION", rep);
+ }
+
+ /**
+ * Removes a specific repetition of SPECIMEN_OBSERVATION (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_SPECIMEN_OBSERVATION removeSPECIMEN_OBSERVATION(int rep) throws HL7Exception {
+ return (OML_O21_SPECIMEN_OBSERVATION)super.removeRepetition("SPECIMEN_OBSERVATION", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * CONTAINER (a Group object) - creates it if necessary
+ */
+ public OML_O21_CONTAINER getCONTAINER() {
+ OML_O21_CONTAINER retVal = getTyped("CONTAINER", OML_O21_CONTAINER.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * CONTAINER (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_CONTAINER getCONTAINER(int rep) {
+ OML_O21_CONTAINER retVal = getTyped("CONTAINER", rep, OML_O21_CONTAINER.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of CONTAINER
+ */
+ public int getCONTAINERReps() {
+ return getReps("CONTAINER");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of CONTAINER.
+ *
+ *
+ * Note that unlike {@link #getCONTAINER()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getCONTAINERAll() throws HL7Exception {
+ return getAllAsList("CONTAINER", OML_O21_CONTAINER.class);
+ }
+
+ /**
+ * Inserts a specific repetition of CONTAINER (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertCONTAINER(OML_O21_CONTAINER structure, int rep) throws HL7Exception {
+ super.insertRepetition("CONTAINER", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of CONTAINER (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_CONTAINER insertCONTAINER(int rep) throws HL7Exception {
+ return (OML_O21_CONTAINER)super.insertRepetition("CONTAINER", rep);
+ }
+
+ /**
+ * Removes a specific repetition of CONTAINER (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_CONTAINER removeCONTAINER(int rep) throws HL7Exception {
+ return (OML_O21_CONTAINER)super.removeRepetition("CONTAINER", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java
new file mode 100644
index 00000000000..6085fb62d76
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/OML_O21_SPECIMEN_OBSERVATION.java
@@ -0,0 +1,169 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+
+
+/**
+ * Represents a OML_O21_SPECIMEN_OBSERVATION group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBX (Observation/Result)
+ * - 2: PRT (Participation Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21_SPECIMEN_OBSERVATION extends AbstractGroup {
+
+ /**
+ * Creates a new OML_O21_SPECIMEN_OBSERVATION group
+ */
+ public OML_O21_SPECIMEN_OBSERVATION(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBX.class, true, false, false);
+ this.add(PRT.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21_SPECIMEN_OBSERVATION - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * OBX (Observation/Result) - creates it if necessary
+ */
+ public OBX getOBX() {
+ OBX retVal = getTyped("OBX", OBX.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * the first repetition of
+ * PRT (Participation Information) - creates it if necessary
+ */
+ public PRT getPRT() {
+ PRT retVal = getTyped("PRT", PRT.class);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PRT (Participation Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public PRT getPRT(int rep) {
+ PRT retVal = getTyped("PRT", rep, PRT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of PRT
+ */
+ public int getPRTReps() {
+ return getReps("PRT");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of PRT.
+ *
+ *
+ * Note that unlike {@link #getPRT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getPRTAll() throws HL7Exception {
+ return getAllAsList("PRT", PRT.class);
+ }
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertPRT(PRT structure, int rep) throws HL7Exception {
+ super.insertRepetition("PRT", structure, rep);
+ }
+
+
+ /**
+ * Inserts a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public PRT insertPRT(int rep) throws HL7Exception {
+ return (PRT)super.insertRepetition("PRT", rep);
+ }
+
+
+ /**
+ * Removes a specific repetition of PRT (Participation Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public PRT removePRT(int rep) throws HL7Exception {
+ return (PRT)super.removeRepetition("PRT", rep);
+ }
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java
new file mode 100644
index 00000000000..aa389e17c33
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_INSURANCE.java
@@ -0,0 +1,123 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.v27.segment.IN2;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.IN1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.IN3;
+
+
+/**
+ * Represents a ORM_O01_INSURANCE group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: IN1 (Insurance)
+ * - 2: IN2 (Insurance Additional Information) optional
+ * - 3: IN3 (Insurance Additional Information, Certification) optional
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_INSURANCE extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_INSURANCE group
+ */
+ public ORM_O01_INSURANCE(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(IN1.class, true, false, false);
+ this.add(IN2.class, false, false, false);
+ this.add(IN3.class, false, false, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_INSURANCE - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+
+
+ /**
+ * Returns
+ * IN1 (Insurance) - creates it if necessary
+ */
+ public IN1 getIN1() {
+ IN1 retVal = getTyped("IN1", IN1.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN2 (Insurance Additional Information) - creates it if necessary
+ */
+ public IN2 getIN2() {
+ IN2 retVal = getTyped("IN2", IN2.class);
+ return retVal;
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3 (Insurance Additional Information, Certification) - creates it if necessary
+ */
+ public IN3 getIN3() {
+ IN3 retVal = getTyped("IN3", IN3.class);
+ return retVal;
+ }
+
+
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java
new file mode 100644
index 00000000000..7e70edeae23
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_OBSERVATION.java
@@ -0,0 +1,154 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
+
+/**
+ * Represents a ORM_O01_OBSERVATION group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBX (Observation/Result)
+ * - 2: NTE (Notes and Comments) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_OBSERVATION extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_OBSERVATION group
+ */
+ public ORM_O01_OBSERVATION(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBX.class, true, false, false);
+ this.add(NTE.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_OBSERVATION - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * OBX (Observation/Result) - creates it if necessary
+ */
+ public OBX getOBX() {
+ OBX retVal = getTyped("OBX", OBX.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java
new file mode 100644
index 00000000000..01a1dd10bd7
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER.java
@@ -0,0 +1,246 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.BLG;
+import ca.uhn.hl7v2.model.v27.segment.CTI;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC;
+
+/**
+ * Represents a ORM_O01_ORDER group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: ORC (Common Order)
+ * - 2: ORM_O01_ORDER_DETAIL (a Group object) optional
+ * - 3: FT1 (Financial Transaction) optional repeating
+ * - 4: CTI (Clinical Trial Identification) optional repeating
+ * - 5: BLG (Billing) optional
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_ORDER extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_ORDER group
+ */
+ public ORM_O01_ORDER(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(ORC.class, true, false, false);
+ this.add(ORM_O01_ORDER_DETAIL.class, false, false, false);
+ this.add(FT1.class, false, true, false);
+ this.add(CTI.class, false, true, false);
+ this.add(BLG.class, false, false, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_ORDER - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * ORC (Common Order) - creates it if necessary
+ */
+ public ORC getORC() {
+ ORC retVal = getTyped("ORC", ORC.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * ORDER_DETAIL (a Group object) - creates it if necessary
+ */
+ public ORM_O01_ORDER_DETAIL getORDER_DETAIL() {
+ ORM_O01_ORDER_DETAIL retVal = getTyped("ORDER_DETAIL", ORM_O01_ORDER_DETAIL.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * FT1 (Financial Transaction) - creates it if necessary
+ */
+ public FT1 getFT1() {
+ FT1 retVal = getTyped("FT1", FT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1 (Financial Transaction) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public FT1 getFT1(int rep) {
+ FT1 retVal = getTyped("FT1", rep, FT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of FT1
+ */
+ public int getFT1Reps() {
+ return getReps("FT1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of FT1.
+ *
+ * Note that unlike {@link #getFT1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getFT1All() throws HL7Exception {
+ return getAllAsList("FT1", FT1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertFT1(FT1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("FT1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public FT1 insertFT1(int rep) throws HL7Exception {
+ return (FT1)super.insertRepetition("FT1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of FT1 (Financial Transaction)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public FT1 removeFT1(int rep) throws HL7Exception {
+ return (FT1)super.removeRepetition("FT1", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * CTI (Clinical Trial Identification) - creates it if necessary
+ */
+ public CTI getCTI() {
+ CTI retVal = getTyped("CTI", CTI.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * CTI (Clinical Trial Identification) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public CTI getCTI(int rep) {
+ CTI retVal = getTyped("CTI", rep, CTI.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of CTI
+ */
+ public int getCTIReps() {
+ return getReps("CTI");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of CTI.
+ *
+ * Note that unlike {@link #getCTI()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getCTIAll() throws HL7Exception {
+ return getAllAsList("CTI", CTI.class);
+ }
+
+ /**
+ * Inserts a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertCTI(CTI structure, int rep) throws HL7Exception {
+ super.insertRepetition("CTI", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public CTI insertCTI(int rep) throws HL7Exception {
+ return (CTI)super.insertRepetition("CTI", rep);
+ }
+
+ /**
+ * Removes a specific repetition of CTI (Clinical Trial Identification)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public CTI removeCTI(int rep) throws HL7Exception {
+ return (CTI)super.removeRepetition("CTI", rep);
+ }
+
+ /**
+ * Returns
+ * BLG (Billing) - creates it if necessary
+ */
+ public BLG getBLG() {
+ BLG retVal = getTyped("BLG", BLG.class);
+ return retVal;
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java
new file mode 100644
index 00000000000..14e83d4cf78
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_ORDER_DETAIL.java
@@ -0,0 +1,371 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.CTD;
+import ca.uhn.hl7v2.model.v27.segment.ODS;
+import ca.uhn.hl7v2.model.v27.segment.ODT;
+import ca.uhn.hl7v2.model.v27.segment.RQ1;
+import ca.uhn.hl7v2.model.v27.segment.RQD;
+import ca.uhn.hl7v2.model.v27.segment.RXO;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.DG1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR;
+
+/**
+ * Represents a ORM_O01_ORDER_DETAIL group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: OBR (Observation Request) choice
+ * - 2: RQD (Requisition Detail) choice
+ * - 3: RQ1 (Requisition Detail-1) choice
+ * - 4: RXO (Pharmacy/Treatment Order) choice
+ * - 5: ODS (Dietary Orders, Supplements, and Preferences) choice
+ * - 6: ODT (Diet Tray Instructions) choice
+ * - 7: NTE (Notes and Comments) optional repeating
+ * - 8: CTD (Contact Data) optional
+ * - 9: DG1 (Diagnosis) optional repeating
+ * - 10: ORM_O01_OBSERVATION (a Group object) optional repeating
+ *
+ *
+ * Note that this structure has "choice" elements. This means that one of the
+ * structures above marked as "choice" must be present, but no more than one.
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_ORDER_DETAIL extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_ORDER_DETAIL group
+ */
+ public ORM_O01_ORDER_DETAIL(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ // Note: According to https://hl7-definition.caristix.com/v2/HL7v2.5.1/TriggerEvents/ORM_O01 there is also an
+ // "ORDER DETAIL SEGMENT" that is a part of the ORDER DETAIL. This is not actually built out here as that segment
+ // is representational of the "choice" segments that are built here (OBR, RQD, RQ1, RXD, ODS, ODT).
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(OBR.class, true, false, true);
+ this.add(RQD.class, true, false, true);
+ this.add(RQ1.class, true, false, true);
+ this.add(RXO.class, true, false, true);
+ this.add(ODS.class, true, false, true);
+ this.add(ODT.class, true, false, true);
+ this.add(NTE.class, false, true, false);
+ this.add(CTD.class, false, false, false);
+ this.add(DG1.class, false, true, false);
+ this.add(ORM_O01_OBSERVATION.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_ORDER_DETAIL - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * OBR (Observation Request) - creates it if necessary
+ */
+ public OBR getOBR() {
+ OBR retVal = getTyped("OBR", OBR.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * RQD (Requisition Detail) - creates it if necessary
+ */
+ public RQD getRQD() {
+ RQD retVal = getTyped("RQD", RQD.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * RQ1 (Requisition Detail-1) - creates it if necessary
+ */
+ public RQ1 getRQ1() {
+ RQ1 retVal = getTyped("RQ1", RQ1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * RXO (Pharmacy/Treatment Order) - creates it if necessary
+ */
+ public RXO getRXO() {
+ RXO retVal = getTyped("RXO", RXO.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * ODS (Dietary Orders, Supplements, and Preferences) - creates it if necessary
+ */
+ public ODS getODS() {
+ ODS retVal = getTyped("ODS", ODS.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * ODT (Diet Tray Instructions) - creates it if necessary
+ */
+ public ODT getODT() {
+ ODT retVal = getTyped("ODT", ODT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+ /**
+ * Returns
+ * CTD (Contact Data) - creates it if necessary
+ */
+ public CTD getCTD() {
+ CTD retVal = getTyped("CTD", CTD.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * DG1 (Diagnosis) - creates it if necessary
+ */
+ public DG1 getDG1() {
+ DG1 retVal = getTyped("DG1", DG1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * DG1 (Diagnosis) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public DG1 getDG1(int rep) {
+ DG1 retVal = getTyped("DG1", rep, DG1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of DG1
+ */
+ public int getDG1Reps() {
+ return getReps("DG1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of DG1.
+ *
+ * Note that unlike {@link #getDG1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getDG1All() throws HL7Exception {
+ return getAllAsList("DG1", DG1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertDG1(DG1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("DG1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public DG1 insertDG1(int rep) throws HL7Exception {
+ return (DG1)super.insertRepetition("DG1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of DG1 (Diagnosis)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public DG1 removeDG1(int rep) throws HL7Exception {
+ return (DG1)super.removeRepetition("DG1", rep);
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * OBSERVATION (a Group object) - creates it if necessary
+ */
+ public ORM_O01_OBSERVATION getOBSERVATION() {
+ ORM_O01_OBSERVATION retVal = getTyped("OBSERVATION", ORM_O01_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * OBSERVATION (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public ORM_O01_OBSERVATION getOBSERVATION(int rep) {
+ ORM_O01_OBSERVATION retVal = getTyped("OBSERVATION", rep, ORM_O01_OBSERVATION.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of OBSERVATION
+ */
+ public int getOBSERVATIONReps() {
+ return getReps("OBSERVATION");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of OBSERVATION.
+ *
+ *
+ * Note that unlike {@link #getOBSERVATION()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getOBSERVATIONAll() throws HL7Exception {
+ return getAllAsList("OBSERVATION", ORM_O01_OBSERVATION.class);
+ }
+
+ /**
+ * Inserts a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertOBSERVATION(ORM_O01_OBSERVATION structure, int rep) throws HL7Exception {
+ super.insertRepetition("OBSERVATION", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public ORM_O01_OBSERVATION insertOBSERVATION(int rep) throws HL7Exception {
+ return (ORM_O01_OBSERVATION)super.insertRepetition("OBSERVATION", rep);
+ }
+
+ /**
+ * Removes a specific repetition of OBSERVATION (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public ORM_O01_OBSERVATION removeOBSERVATION(int rep) throws HL7Exception {
+ return (ORM_O01_OBSERVATION)super.removeRepetition("OBSERVATION", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java
new file mode 100644
index 00000000000..2d23afdecc4
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT.java
@@ -0,0 +1,328 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.GT1;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.AL1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PID;
+
+/**
+ * Represents a ORM_O01_PATIENT group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PID (Patient Identification)
+ * - 2: PD1 (Patient Additional Demographic) optional
+ * - 3: NTE (Notes and Comments) optional repeating
+ * - 4: ORM_O01_PATIENT_VISIT (a Group object) optional
+ * - 5: ORM_O01_INSURANCE (a Group object) optional repeating
+ * - 6: GT1 (Guarantor) optional
+ * - 7: AL1 (Patient Allergy Information) optional repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_PATIENT extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_PATIENT group
+ */
+ public ORM_O01_PATIENT(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PID.class, true, false, false);
+ this.add(PD1.class, false, false, false);
+ this.add(NTE.class, false, true, false);
+ this.add(ORM_O01_PATIENT_VISIT.class, false, false, false);
+ this.add(ORM_O01_INSURANCE.class, false, true, false);
+ this.add(GT1.class, false, false, false);
+ this.add(AL1.class, false, true, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_PATIENT - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * PID (Patient Identification) - creates it if necessary
+ */
+ public PID getPID() {
+ PID retVal = getTyped("PID", PID.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PD1 (Patient Additional Demographic) - creates it if necessary
+ */
+ public PD1 getPD1() {
+ PD1 retVal = getTyped("PD1", PD1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ */
+ public NTE getNTE() {
+ NTE retVal = getTyped("NTE", NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ NTE retVal = getTyped("NTE", rep, NTE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of NTE
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition("NTE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of NTE (Notes and Comments)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+ /**
+ * Returns
+ * PATIENT_VISIT (a Group object) - creates it if necessary
+ */
+ public ORM_O01_PATIENT_VISIT getPATIENT_VISIT() {
+ ORM_O01_PATIENT_VISIT retVal = getTyped("PATIENT_VISIT", ORM_O01_PATIENT_VISIT.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * INSURANCE (a Group object) - creates it if necessary
+ */
+ public ORM_O01_INSURANCE getINSURANCE() {
+ ORM_O01_INSURANCE retVal = getTyped("INSURANCE", ORM_O01_INSURANCE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * INSURANCE (a Group object) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public ORM_O01_INSURANCE getINSURANCE(int rep) {
+ ORM_O01_INSURANCE retVal = getTyped("INSURANCE", rep, ORM_O01_INSURANCE.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of INSURANCE
+ */
+ public int getINSURANCEReps() {
+ return getReps("INSURANCE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of INSURANCE.
+ *
+ *
+ * Note that unlike {@link #getINSURANCE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getINSURANCEAll() throws HL7Exception {
+ return getAllAsList("INSURANCE", ORM_O01_INSURANCE.class);
+ }
+
+ /**
+ * Inserts a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertINSURANCE(ORM_O01_INSURANCE structure, int rep) throws HL7Exception {
+ super.insertRepetition("INSURANCE", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public ORM_O01_INSURANCE insertINSURANCE(int rep) throws HL7Exception {
+ return (ORM_O01_INSURANCE)super.insertRepetition("INSURANCE", rep);
+ }
+
+ /**
+ * Removes a specific repetition of INSURANCE (a Group object)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public ORM_O01_INSURANCE removeINSURANCE(int rep) throws HL7Exception {
+ return (ORM_O01_INSURANCE)super.removeRepetition("INSURANCE", rep);
+ }
+
+ /**
+ * Returns
+ * GT1 (Guarantor) - creates it if necessary
+ */
+ public GT1 getGT1() {
+ GT1 retVal = getTyped("GT1", GT1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * the first repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ */
+ public AL1 getAL1() {
+ AL1 retVal = getTyped("AL1", AL1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * AL1 (Patient Allergy Information) - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public AL1 getAL1(int rep) {
+ AL1 retVal = getTyped("AL1", rep, AL1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns the number of existing repetitions of AL1
+ */
+ public int getAL1Reps() {
+ return getReps("AL1");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of AL1.
+ *
+ *
+ * Note that unlike {@link #getAL1()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getAL1All() throws HL7Exception {
+ return getAllAsList("AL1", AL1.class);
+ }
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertAL1(AL1 structure, int rep) throws HL7Exception {
+ super.insertRepetition("AL1", structure, rep);
+ }
+
+ /**
+ * Inserts a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public AL1 insertAL1(int rep) throws HL7Exception {
+ return (AL1)super.insertRepetition("AL1", rep);
+ }
+
+ /**
+ * Removes a specific repetition of AL1 (Patient Allergy Information)
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public AL1 removeAL1(int rep) throws HL7Exception {
+ return (AL1)super.removeRepetition("AL1", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java
new file mode 100644
index 00000000000..67d8128b695
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORM_O01_PATIENT_VISIT.java
@@ -0,0 +1,97 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.group;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.v27.segment.PV2;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1;
+
+
+/**
+ * Represents a ORM_O01_PATIENT_VISIT group structure (a Group object).
+ * A Group is an ordered collection of message segments that can repeat together or be optionally in/excluded together.
+ * This Group contains the following elements:
+ *
+ *
+ * - 1: PV1 (Patient Visit)
+ * - 2: PV2 (Patient Visit - Additional Information) optional
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01_PATIENT_VISIT extends AbstractGroup {
+
+ /**
+ * Creates a new ORM_O01_PATIENT_VISIT group
+ */
+ public ORM_O01_PATIENT_VISIT(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(PV1.class, true, false, false);
+ this.add(PV2.class, false, false, false);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01_PATIENT_VISIT - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() {
+ return "2.7";
+ }
+
+ /**
+ * Returns
+ * PV1 (Patient Visit) - creates it if necessary
+ */
+ public PV1 getPV1() {
+ PV1 retVal = getTyped("PV1", PV1.class);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV2 (Patient Visit - Additional Information) - creates it if necessary
+ */
+ public PV2 getPV2() {
+ PV2 retVal = getTyped("PV2", PV2.class);
+ return retVal;
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java
index e240f0cecfd..08fa1061335 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_ORDER_OBSERVATION.java
@@ -38,8 +38,10 @@
import ca.uhn.hl7v2.model.Group;
import ca.uhn.hl7v2.model.Structure;
import ca.uhn.hl7v2.model.v27.group.ORU_R01_TIMING_QTY;
-import ca.uhn.hl7v2.model.v27.segment.*;
+import ca.uhn.hl7v2.model.v27.segment.CTD;
+import ca.uhn.hl7v2.model.v27.segment.CTI;
import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.FT1;
import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
import fhirengine.translation.hl7.structures.fhirinventory.segment.OBR;
import fhirengine.translation.hl7.structures.fhirinventory.segment.ORC;
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java
index 25787c32854..5248e0b075c 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT.java
@@ -33,11 +33,12 @@
package fhirengine.translation.hl7.structures.fhirinventory.group;
-import ca.uhn.hl7v2.model.v27.segment.*;
-
import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.NK1;
import ca.uhn.hl7v2.parser.ModelClassFactory;
-import ca.uhn.hl7v2.model.*;
import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
import fhirengine.translation.hl7.structures.fhirinventory.segment.PD1;
import fhirengine.translation.hl7.structures.fhirinventory.segment.PID;
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java
index 706f2060054..b80c08695ea 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_PATIENT_OBSERVATION.java
@@ -34,8 +34,10 @@
package fhirengine.translation.hl7.structures.fhirinventory.group;
import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
import ca.uhn.hl7v2.parser.ModelClassFactory;
-import ca.uhn.hl7v2.model.*;
import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java
index f20f254b690..4fde25eb4be 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_SPECIMEN_OBSERVATION.java
@@ -34,8 +34,10 @@
package fhirengine.translation.hl7.structures.fhirinventory.group;
import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
import ca.uhn.hl7v2.parser.ModelClassFactory;
-import ca.uhn.hl7v2.model.*;
import fhirengine.translation.hl7.structures.fhirinventory.segment.OBX;
import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java
index 3d1e37fef27..cbfe9aa097e 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/group/ORU_R01_VISIT.java
@@ -33,12 +33,14 @@
package fhirengine.translation.hl7.structures.fhirinventory.group;
-import ca.uhn.hl7v2.model.v27.segment.*;
-
import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.PV2;
import ca.uhn.hl7v2.parser.ModelClassFactory;
-import ca.uhn.hl7v2.model.*;
import fhirengine.translation.hl7.structures.fhirinventory.segment.PRT;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.PV1;
/**
* Represents a ORU_R01_VISIT group structure (a Group object).
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java
new file mode 100644
index 00000000000..93382afef31
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/OML_O21.java
@@ -0,0 +1,354 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.message;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.MSH;
+import ca.uhn.hl7v2.model.v27.segment.SFT;
+import ca.uhn.hl7v2.model.v27.segment.UAC;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.group.OML_O21_ORDER;
+import fhirengine.translation.hl7.structures.fhirinventory.group.OML_O21_PATIENT;
+import fhirengine.translation.hl7.structures.fhirinventory.segment.NTE;
+
+/**
+ *
Represents a OML_O21 message structure (see chapter 4.4.6). This structure contains the
+ * following elements:
+ *
+ * - 1: MSH (Message Header)
+ * - 2: SFT (Software Segment) optional repeating
+ * - 3: UAC (User Authentication Credential Segment) optional
+ * - 4: NTE (Notes and Comments) optional repeating
+ * - 5: OML_O21_PATIENT (a Group object) optional
+ * - 6: OML_O21_ORDER (a Group object) repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class OML_O21 extends AbstractMessage {
+
+ /**
+ * Creates a new OML_O21 message with DefaultModelClassFactory.
+ */
+ public OML_O21() {
+ this(new DefaultModelClassFactory());
+ }
+
+ /**
+ * Creates a new OML_O21 message with custom ModelClassFactory.
+ */
+ public OML_O21(ModelClassFactory factory) {
+ super(factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(MSH.class, true, false);
+ this.add(SFT.class, false, true);
+ this.add(UAC.class, false, false);
+ this.add(NTE.class, false, true);
+ this.add(OML_O21_PATIENT.class, false, false);
+ this.add(OML_O21_ORDER.class, true, true);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating OML_O21 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() { return "2.7"; }
+
+ /**
+ *
+ * Returns
+ * MSH (Message Header) - creates it if necessary
+ *
+ */
+ public MSH getMSH() { return getTyped("MSH", MSH.class); }
+
+ /**
+ *
+ * Returns
+ * the first repetition of
+ * SFT (Software Segment) - creates it if necessary
+ *
+ */
+ public SFT getSFT() { return getTyped("SFT", SFT.class); }
+
+
+ /**
+ *
+ * Returns a specific repetition of
+ * SFT (Software Segment) - creates it if necessary
+ *
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public SFT getSFT(int rep) { return getTyped("SFT", rep, SFT.class); }
+
+ /**
+ *
+ * Returns the number of existing repetitions of SFT
+ *
+ */
+ public int getSFTReps() { return getReps("SFT"); }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of SFT.
+ *
+ * Note that unlike {@link #getSFT()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getSFTAll() throws HL7Exception {
+ return getAllAsList("SFT", SFT.class);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of SFT (Software Segment)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertSFT(SFT structure, int rep) throws HL7Exception {
+ super.insertRepetition( "SFT", structure, rep);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of SFT (Software Segment)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public SFT insertSFT(int rep) throws HL7Exception {
+ return (SFT)super.insertRepetition("SFT", rep);
+ }
+
+ /**
+ *
+ * Removes a specific repetition of SFT (Software Segment)
+ *
+ *
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public SFT removeSFT(int rep) throws HL7Exception {
+ return (SFT)super.removeRepetition("SFT", rep);
+ }
+
+ /**
+ *
+ * Returns
+ * UAC (User Authentication Credential Segment) - creates it if necessary
+ *
+ */
+ public UAC getUAC() {
+ return getTyped("UAC", UAC.class);
+ }
+
+ /**
+ *
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ */
+ public NTE getNTE() {
+ return getTyped("NTE", NTE.class);
+ }
+
+ /**
+ *
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) {
+ return getTyped("NTE", rep, NTE.class);
+ }
+
+ /**
+ *
+ * Returns the number of existing repetitions of NTE
+ *
+ */
+ public int getNTEReps() {
+ return getReps("NTE");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition( "NTE", structure, rep);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception {
+ return (NTE)super.insertRepetition("NTE", rep);
+ }
+
+ /**
+ *
+ * Removes a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception {
+ return (NTE)super.removeRepetition("NTE", rep);
+ }
+
+ /**
+ *
+ * Returns
+ * PATIENT (a Group object) - creates it if necessary
+ *
+ */
+ public OML_O21_PATIENT getPATIENT() {
+ return getTyped("PATIENT", OML_O21_PATIENT.class);
+ }
+
+ /**
+ *
+ * Returns
+ * the first repetition of
+ * ORDER (a Group object) - creates it if necessary
+ *
+ */
+ public OML_O21_ORDER getORDER() {
+ return getTyped("ORDER", OML_O21_ORDER.class);
+ }
+
+ /**
+ *
+ * Returns a specific repetition of
+ * ORDER (a Group object) - creates it if necessary
+ *
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public OML_O21_ORDER getORDER(int rep) {
+ return getTyped("ORDER", rep, OML_O21_ORDER.class);
+ }
+
+ /**
+ *
+ * Returns the number of existing repetitions of ORDER
+ *
+ */
+ public int getORDERReps() {
+ return getReps("ORDER");
+ }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of ORDER.
+ *
+ * Note that unlike {@link #getORDER()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getORDERAll() throws HL7Exception {
+ return getAllAsList("ORDER", OML_O21_ORDER.class);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of ORDER (a Group object)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertORDER(OML_O21_ORDER structure, int rep) throws HL7Exception {
+ super.insertRepetition( "ORDER", structure, rep);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of ORDER (a Group object)
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public OML_O21_ORDER insertORDER(int rep) throws HL7Exception {
+ return (OML_O21_ORDER)super.insertRepetition("ORDER", rep);
+ }
+
+ /**
+ *
+ * Removes a specific repetition of ORDER (a Group object)
+ *
+ *
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public OML_O21_ORDER removeORDER(int rep) throws HL7Exception {
+ return (OML_O21_ORDER)super.removeRepetition("ORDER", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java
new file mode 100644
index 00000000000..13a0243a624
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/message/ORM_O01.java
@@ -0,0 +1,243 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+package fhirengine.translation.hl7.structures.fhirinventory.message;
+
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.model.AbstractGroup;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Structure;
+import ca.uhn.hl7v2.model.v27.segment.MSH;
+import ca.uhn.hl7v2.model.v27.segment.NTE;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import fhirengine.translation.hl7.structures.fhirinventory.group.ORM_O01_PATIENT;
+import fhirengine.translation.hl7.structures.fhirinventory.group.ORM_O01_ORDER;
+
+/**
+ * Represents a ORM_O01 message structure (see chapter 4.4.1). This structure contains the
+ * following elements:
+ *
+ * - 1: MSH (Message Header)
+ * - 2: NTE (Notes and Comments) optional repeating
+ * - 3: ORM_O01_PATIENT (a Group object) optional
+ * - 4: ORM_O01_ORDER (a Group object) repeating
+ *
+ */
+//@SuppressWarnings("unused")
+public class ORM_O01 extends AbstractMessage {
+
+ /**
+ * Creates a new ORM_O01 message with DefaultModelClassFactory.
+ */
+ public ORM_O01() { this(new DefaultModelClassFactory()); }
+
+ /**
+ * Creates a new ORM_O01 message with custom ModelClassFactory.
+ */
+ public ORM_O01(ModelClassFactory factory) {
+ super(factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(MSH.class, true, false);
+ this.add(NTE.class, false, true);
+ this.add(ORM_O01_PATIENT.class, false, false);
+ this.add(ORM_O01_ORDER.class, true, true);
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating ORM_O01 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+ /**
+ * Returns "2.7"
+ */
+ public String getVersion() { return "2.7"; }
+
+ /**
+ *
+ * Returns
+ * MSH (Message Header) - creates it if necessary
+ *
+ */
+ public MSH getMSH() { return getTyped("MSH", MSH.class); }
+
+ /**
+ *
+ * Returns
+ * the first repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ */
+ public NTE getNTE() { return getTyped("NTE", NTE.class); }
+
+ /**
+ *
+ * Returns a specific repetition of
+ * NTE (Notes and Comments) - creates it if necessary
+ *
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public NTE getNTE(int rep) { return getTyped("NTE", rep, NTE.class); }
+
+ /**
+ *
+ * Returns the number of existing repetitions of NTE
+ *
+ */
+ public int getNTEReps() { return getReps("NTE"); }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of NTE.
+ *
+ *
+ * Note that unlike {@link #getNTE()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getNTEAll() throws HL7Exception {
+ return getAllAsList("NTE", NTE.class);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertNTE(NTE structure, int rep) throws HL7Exception {
+ super.insertRepetition( "NTE", structure, rep);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public NTE insertNTE(int rep) throws HL7Exception { return (NTE)super.insertRepetition("NTE", rep); }
+
+ /**
+ *
+ * Removes a specific repetition of NTE (Notes and Comments)
+ *
+ *
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public NTE removeNTE(int rep) throws HL7Exception { return (NTE)super.removeRepetition("NTE", rep); }
+
+ /**
+ *
+ * Returns
+ * PATIENT (a Group object) - creates it if necessary
+ *
+ */
+ public ORM_O01_PATIENT getPATIENT() { return getTyped("PATIENT", ORM_O01_PATIENT.class); }
+
+ /**
+ *
+ * Returns
+ * the first repetition of
+ * ORDER (a Group object) - creates it if necessary
+ *
+ */
+ public ORM_O01_ORDER getORDER() { return getTyped("ORDER", ORM_O01_ORDER.class); }
+
+ /**
+ *
+ * Returns a specific repetition of
+ * ORDER (a Group object) - creates it if necessary
+ *
+ *
+ * @param rep The repetition index (0-indexed, i.e. the first repetition is at index 0)
+ * @throws HL7Exception if the repetition requested is more than one
+ * greater than the number of existing repetitions.
+ */
+ public ORM_O01_ORDER getORDER(int rep) { return getTyped("ORDER", rep, ORM_O01_ORDER.class); }
+
+ /**
+ *
+ * Returns the number of existing repetitions of ORDER
+ *
+ */
+ public int getORDERReps() { return getReps("ORDER"); }
+
+ /**
+ *
+ * Returns a non-modifiable List containing all current existing repetitions of ORDER.
+ *
+ * Note that unlike {@link #getORDER()}, this method will not create any reps
+ * if none are already present, so an empty list may be returned.
+ *
+ */
+ public java.util.List getORDERAll() throws HL7Exception {
+ return getAllAsList("ORDER", ORM_O01_ORDER.class);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of ORDER (a Group object)
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public void insertORDER(ORM_O01_ORDER structure, int rep) throws HL7Exception {
+ super.insertRepetition( "ORDER", structure, rep);
+ }
+
+ /**
+ *
+ * Inserts a specific repetition of ORDER (a Group object)
+ *
+ * @see AbstractGroup#insertRepetition(Structure, int)
+ */
+ public ORM_O01_ORDER insertORDER(int rep) throws HL7Exception {
+ return (ORM_O01_ORDER)super.insertRepetition("ORDER", rep);
+ }
+
+ /**
+ *
+ * Removes a specific repetition of ORDER (a Group object)
+ *
+ * @see AbstractGroup#removeRepetition(String, int)
+ */
+ public ORM_O01_ORDER removeORDER(int rep) throws HL7Exception {
+ return (ORM_O01_ORDER)super.removeRepetition("ORDER", rep);
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java
new file mode 100644
index 00000000000..08c79b4ea1a
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/AL1.java
@@ -0,0 +1,312 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 AL1 message segment (Patient Allergy Information).
+ * This segment has the following fields:
+ *
+ * - AL1-1: Set ID - AL1 (SI)
+ *
- AL1-2: Allergen Type Code (CWE) optional
+ *
- AL1-3: Allergen Code/Mnemonic/Description (CWE)
+ *
- AL1-4: Allergy Severity Code (CWE) optional
+ *
- AL1-5: Allergy Reaction Code (ST) optional repeating
+ *
- AL1-6: Identification Date (DT) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class AL1 extends AbstractSegment {
+
+ /**
+ * Creates a new AL1 segment
+ */
+ public AL1(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - AL1");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Allergen Type Code");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Allergen Code/Mnemonic/Description");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Allergy Severity Code");
+ this.add(ST.class, false, 0, 0, new Object[]{ getMessage() }, "Allergy Reaction Code");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Identification Date");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating AL1 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * AL1-1: "Set ID - AL1" - creates it if necessary
+ */
+ public SI getSetIDAL1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * AL1-1: "Set ID - AL1" - creates it if necessary
+ */
+ public SI getAl11_SetIDAL1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * AL1-2: "Allergen Type Code" - creates it if necessary
+ */
+ public CWE getAllergenTypeCode() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * AL1-2: "Allergen Type Code" - creates it if necessary
+ */
+ public CWE getAl12_AllergenTypeCode() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * AL1-3: "Allergen Code/Mnemonic/Description" - creates it if necessary
+ */
+ public CWE getAllergenCodeMnemonicDescription() {
+ CWE retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * AL1-3: "Allergen Code/Mnemonic/Description" - creates it if necessary
+ */
+ public CWE getAl13_AllergenCodeMnemonicDescription() {
+ CWE retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * AL1-4: "Allergy Severity Code" - creates it if necessary
+ */
+ public CWE getAllergySeverityCode() {
+ CWE retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * AL1-4: "Allergy Severity Code" - creates it if necessary
+ */
+ public CWE getAl14_AllergySeverityCode() {
+ CWE retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Allergy Reaction Code (AL1-5).
+ */
+ public ST[] getAllergyReactionCode() {
+ ST[] retVal = this.getTypedField(5, new ST[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Allergy Reaction Code (AL1-5).
+ */
+ public ST[] getAl15_AllergyReactionCode() {
+ ST[] retVal = this.getTypedField(5, new ST[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Allergy Reaction Code (AL1-5).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getAllergyReactionCodeReps() {
+ return this.getReps(5);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * AL1-5: "Allergy Reaction Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public ST getAllergyReactionCode(int rep) {
+ ST retVal = this.getTypedField(5, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * AL1-5: "Allergy Reaction Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public ST getAl15_AllergyReactionCode(int rep) {
+ ST retVal = this.getTypedField(5, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Allergy Reaction Code (AL1-5).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getAl15_AllergyReactionCodeReps() {
+ return this.getReps(5);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * AL1-5: "Allergy Reaction Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ST insertAllergyReactionCode(int rep) throws HL7Exception {
+ return (ST) super.insertRepetition(5, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * AL1-5: "Allergy Reaction Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ST insertAl15_AllergyReactionCode(int rep) throws HL7Exception {
+ return (ST) super.insertRepetition(5, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * AL1-5: "Allergy Reaction Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ST removeAllergyReactionCode(int rep) throws HL7Exception {
+ return (ST) super.removeRepetition(5, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * AL1-5: "Allergy Reaction Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ST removeAl15_AllergyReactionCode(int rep) throws HL7Exception {
+ return (ST) super.removeRepetition(5, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * AL1-6: "Identification Date" - creates it if necessary
+ */
+ public DT getIdentificationDate() {
+ DT retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * AL1-6: "Identification Date" - creates it if necessary
+ */
+ public DT getAl16_IdentificationDate() {
+ DT retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+
+
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new CWE(getMessage());
+ case 2: return new CWE(getMessage());
+ case 3: return new CWE(getMessage());
+ case 4: return new ST(getMessage());
+ case 5: return new DT(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java
new file mode 100644
index 00000000000..4c964231714
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/DG1.java
@@ -0,0 +1,772 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 DG1 message segment (Diagnosis).
+ * This segment has the following fields:
+ *
+ * - DG1-1: Set ID - DG1 (SI)
+ *
- DG1-2: Diagnosis Coding Method (ID) optional
+ *
- DG1-3: Diagnosis Code - DG1 (CWE)
+ *
- DG1-4: Diagnosis Description (ST) optional
+ *
- DG1-5: Diagnosis Date/Time (DTM) optional
+ *
- DG1-6: Diagnosis Type (CWE)
+ *
- DG1-7: Major Diagnostic Category (CNE) optional
+ *
- DG1-8: Diagnostic Related Group (CNE) optional
+ *
- DG1-9: DRG Approval Indicator (ID) optional
+ *
- DG1-10: DRG Grouper Review Code (CWE) optional
+ *
- DG1-11: Outlier Type (CWE) optional
+ *
- DG1-12: Outlier Days (NM) optional
+ *
- DG1-13: Outlier Cost (CP) optional
+ *
- DG1-14: Grouper Version And Type (ST) optional
+ *
- DG1-15: Diagnosis Priority (NM) optional
+ *
- DG1-16: Diagnosing Clinician (XCN) optional repeating
+ *
- DG1-17: Diagnosis Classification (CWE) optional
+ *
- DG1-18: Confidential Indicator (ID) optional
+ *
- DG1-19: Attestation Date/Time (DTM) optional
+ *
- DG1-20: Diagnosis Identifier (EI) optional
+ *
- DG1-21: Diagnosis Action Code (ID) optional
+ *
- DG1-22: Parent Diagnosis (EI) optional
+ *
- DG1-23: DRG CCL Value Code (CWE) optional
+ *
- DG1-24: DRG Grouping Usage (ID) optional
+ *
- DG1-25: DRG Diagnosis Determination Status (CWE) optional
+ *
- DG1-26: Present On Admission (POA) Indicator (CWE) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class DG1 extends AbstractSegment {
+
+ /**
+ * Creates a new DG1 segment
+ */
+ public DG1(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - DG1");
+ this.add(ID.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Coding Method");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Code - DG1");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Description");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Date/Time");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Diagnosis Type");
+ this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Major Diagnostic Category");
+ this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnostic Related Group");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "DRG Approval Indicator");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG Grouper Review Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Type");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Days");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Outlier Cost");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Grouper Version And Type");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Priority");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Diagnosing Clinician");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Classification");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Confidential Indicator");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Attestation Date/Time");
+ this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Diagnosis Identifier");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(206) }, "Diagnosis Action Code");
+ this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Parent Diagnosis");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG CCL Value Code");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "DRG Grouping Usage");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "DRG Diagnosis Determination Status");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Present On Admission (POA) Indicator");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating DG1 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-1: "Set ID - DG1" - creates it if necessary
+ */
+ public SI getSetIDDG1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-1: "Set ID - DG1" - creates it if necessary
+ */
+ public SI getDg11_SetIDDG1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-2: "Diagnosis Coding Method" - creates it if necessary
+ */
+ public ID getDiagnosisCodingMethod() {
+ ID retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-2: "Diagnosis Coding Method" - creates it if necessary
+ */
+ public ID getDg12_DiagnosisCodingMethod() {
+ ID retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-3: "Diagnosis Code - DG1" - creates it if necessary
+ */
+ public CWE getDiagnosisCodeDG1() {
+ CWE retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-3: "Diagnosis Code - DG1" - creates it if necessary
+ */
+ public CWE getDg13_DiagnosisCodeDG1() {
+ CWE retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-4: "Diagnosis Description" - creates it if necessary
+ */
+ public ST getDiagnosisDescription() {
+ ST retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-4: "Diagnosis Description" - creates it if necessary
+ */
+ public ST getDg14_DiagnosisDescription() {
+ ST retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-5: "Diagnosis Date/Time" - creates it if necessary
+ */
+ public DTM getDiagnosisDateTime() {
+ DTM retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-5: "Diagnosis Date/Time" - creates it if necessary
+ */
+ public DTM getDg15_DiagnosisDateTime() {
+ DTM retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-6: "Diagnosis Type" - creates it if necessary
+ */
+ public CWE getDiagnosisType() {
+ CWE retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-6: "Diagnosis Type" - creates it if necessary
+ */
+ public CWE getDg16_DiagnosisType() {
+ CWE retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-7: "Major Diagnostic Category" - creates it if necessary
+ */
+ public CNE getMajorDiagnosticCategory() {
+ CNE retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-7: "Major Diagnostic Category" - creates it if necessary
+ */
+ public CNE getDg17_MajorDiagnosticCategory() {
+ CNE retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-8: "Diagnostic Related Group" - creates it if necessary
+ */
+ public CNE getDiagnosticRelatedGroup() {
+ CNE retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-8: "Diagnostic Related Group" - creates it if necessary
+ */
+ public CNE getDg18_DiagnosticRelatedGroup() {
+ CNE retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-9: "DRG Approval Indicator" - creates it if necessary
+ */
+ public ID getDRGApprovalIndicator() {
+ ID retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-9: "DRG Approval Indicator" - creates it if necessary
+ */
+ public ID getDg19_DRGApprovalIndicator() {
+ ID retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-10: "DRG Grouper Review Code" - creates it if necessary
+ */
+ public CWE getDRGGrouperReviewCode() {
+ CWE retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-10: "DRG Grouper Review Code" - creates it if necessary
+ */
+ public CWE getDg110_DRGGrouperReviewCode() {
+ CWE retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-11: "Outlier Type" - creates it if necessary
+ */
+ public CWE getOutlierType() {
+ CWE retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-11: "Outlier Type" - creates it if necessary
+ */
+ public CWE getDg111_OutlierType() {
+ CWE retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-12: "Outlier Days" - creates it if necessary
+ */
+ public NM getOutlierDays() {
+ NM retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-12: "Outlier Days" - creates it if necessary
+ */
+ public NM getDg112_OutlierDays() {
+ NM retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-13: "Outlier Cost" - creates it if necessary
+ */
+ public CP getOutlierCost() {
+ CP retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-13: "Outlier Cost" - creates it if necessary
+ */
+ public CP getDg113_OutlierCost() {
+ CP retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-14: "Grouper Version And Type" - creates it if necessary
+ */
+ public ST getGrouperVersionAndType() {
+ ST retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-14: "Grouper Version And Type" - creates it if necessary
+ */
+ public ST getDg114_GrouperVersionAndType() {
+ ST retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-15: "Diagnosis Priority" - creates it if necessary
+ */
+ public NM getDiagnosisPriority() {
+ NM retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-15: "Diagnosis Priority" - creates it if necessary
+ */
+ public NM getDg115_DiagnosisPriority() {
+ NM retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Diagnosing Clinician (DG1-16).
+ */
+ public XCN[] getDiagnosingClinician() {
+ XCN[] retVal = this.getTypedField(16, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Diagnosing Clinician (DG1-16).
+ */
+ public XCN[] getDg116_DiagnosingClinician() {
+ XCN[] retVal = this.getTypedField(16, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getDiagnosingClinicianReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * DG1-16: "Diagnosing Clinician" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getDiagnosingClinician(int rep) {
+ XCN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * DG1-16: "Diagnosing Clinician" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getDg116_DiagnosingClinician(int rep) {
+ XCN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Diagnosing Clinician (DG1-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getDg116_DiagnosingClinicianReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * DG1-16: "Diagnosing Clinician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertDiagnosingClinician(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * DG1-16: "Diagnosing Clinician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertDg116_DiagnosingClinician(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * DG1-16: "Diagnosing Clinician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeDiagnosingClinician(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * DG1-16: "Diagnosing Clinician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeDg116_DiagnosingClinician(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(16, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * DG1-17: "Diagnosis Classification" - creates it if necessary
+ */
+ public CWE getDiagnosisClassification() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-17: "Diagnosis Classification" - creates it if necessary
+ */
+ public CWE getDg117_DiagnosisClassification() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-18: "Confidential Indicator" - creates it if necessary
+ */
+ public ID getConfidentialIndicator() {
+ ID retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-18: "Confidential Indicator" - creates it if necessary
+ */
+ public ID getDg118_ConfidentialIndicator() {
+ ID retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-19: "Attestation Date/Time" - creates it if necessary
+ */
+ public DTM getAttestationDateTime() {
+ DTM retVal = this.getTypedField(19, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-19: "Attestation Date/Time" - creates it if necessary
+ */
+ public DTM getDg119_AttestationDateTime() {
+ DTM retVal = this.getTypedField(19, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-20: "Diagnosis Identifier" - creates it if necessary
+ */
+ public EI getDiagnosisIdentifier() {
+ EI retVal = this.getTypedField(20, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-20: "Diagnosis Identifier" - creates it if necessary
+ */
+ public EI getDg120_DiagnosisIdentifier() {
+ EI retVal = this.getTypedField(20, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-21: "Diagnosis Action Code" - creates it if necessary
+ */
+ public ID getDiagnosisActionCode() {
+ ID retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-21: "Diagnosis Action Code" - creates it if necessary
+ */
+ public ID getDg121_DiagnosisActionCode() {
+ ID retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-22: "Parent Diagnosis" - creates it if necessary
+ */
+ public EI getParentDiagnosis() {
+ EI retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-22: "Parent Diagnosis" - creates it if necessary
+ */
+ public EI getDg122_ParentDiagnosis() {
+ EI retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-23: "DRG CCL Value Code" - creates it if necessary
+ */
+ public CWE getDRGCCLValueCode() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-23: "DRG CCL Value Code" - creates it if necessary
+ */
+ public CWE getDg123_DRGCCLValueCode() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-24: "DRG Grouping Usage" - creates it if necessary
+ */
+ public ID getDRGGroupingUsage() {
+ ID retVal = this.getTypedField(24, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-24: "DRG Grouping Usage" - creates it if necessary
+ */
+ public ID getDg124_DRGGroupingUsage() {
+ ID retVal = this.getTypedField(24, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-25: "DRG Diagnosis Determination Status" - creates it if necessary
+ */
+ public CWE getDRGDiagnosisDeterminationStatus() {
+ CWE retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-25: "DRG Diagnosis Determination Status" - creates it if necessary
+ */
+ public CWE getDg125_DRGDiagnosisDeterminationStatus() {
+ CWE retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * DG1-26: "Present On Admission (POA) Indicator" - creates it if necessary
+ */
+ public CWE getPresentOnAdmissionIndicator() {
+ CWE retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * DG1-26: "Present On Admission (POA) Indicator" - creates it if necessary
+ */
+ public CWE getDg126_PresentOnAdmissionIndicator() {
+ CWE retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+
+
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new ID(getMessage());
+ case 2: return new CWE(getMessage());
+ case 3: return new ST(getMessage());
+ case 4: return new DTM(getMessage());
+ case 5: return new CWE(getMessage());
+ case 6: return new CNE(getMessage());
+ case 7: return new CNE(getMessage());
+ case 8: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 9: return new CWE(getMessage());
+ case 10: return new CWE(getMessage());
+ case 11: return new NM(getMessage());
+ case 12: return new CP(getMessage());
+ case 13: return new ST(getMessage());
+ case 14: return new NM(getMessage());
+ case 15: return new XCN(getMessage());
+ case 16: return new CWE(getMessage());
+ case 17: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 18: return new DTM(getMessage());
+ case 19: return new EI(getMessage());
+ case 20: return new ID(getMessage(), Integer.valueOf( 206 ));
+ case 21: return new EI(getMessage());
+ case 22: return new CWE(getMessage());
+ case 23: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 24: return new CWE(getMessage());
+ case 25: return new CWE(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java
new file mode 100644
index 00000000000..8101a355574
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/FT1.java
@@ -0,0 +1,1786 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 FT1 message segment (Financial Transaction).
+ * This segment has the following fields:
+ *
+ * - FT1-1: Set ID - FT1 (SI) optional
+ *
- FT1-2: Transaction ID (ST) optional
+ *
- FT1-3: Transaction Batch ID (ST) optional
+ *
- FT1-4: Transaction Date (DR)
+ *
- FT1-5: Transaction Posting Date (DTM) optional
+ *
- FT1-6: Transaction Type (CWE)
+ *
- FT1-7: Transaction Code (CWE)
+ *
- FT1-8: Transaction Description (ST) optional
+ *
- FT1-9: Transaction Description - Alt (ST) optional
+ *
- FT1-10: Transaction Quantity (NM) optional
+ *
- FT1-11: Transaction Amount - Extended (CP) optional
+ *
- FT1-12: Transaction amount - unit (CP) optional
+ *
- FT1-13: Department Code (CWE) optional
+ *
- FT1-14: Health Plan ID (CWE) optional
+ *
- FT1-15: Insurance Amount (CP) optional
+ *
- FT1-16: Assigned Patient Location (PL) optional
+ *
- FT1-17: Fee Schedule (CWE) optional
+ *
- FT1-18: Patient Type (CWE) optional
+ *
- FT1-19: Diagnosis Code - FT1 (CWE) optional repeating
+ *
- FT1-20: Performed By Code (XCN) optional repeating
+ *
- FT1-21: Ordered By Code (XCN) optional repeating
+ *
- FT1-22: Unit Cost (CP) optional
+ *
- FT1-23: Filler Order Number (EI) optional
+ *
- FT1-24: Entered By Code (XCN) optional repeating
+ *
- FT1-25: Procedure Code (CNE) optional
+ *
- FT1-26: Procedure Code Modifier (CNE) optional repeating
+ *
- FT1-27: Advanced Beneficiary Notice Code (CWE) optional
+ *
- FT1-28: Medically Necessary Duplicate Procedure Reason (CWE) optional
+ *
- FT1-29: NDC Code (CWE) optional
+ *
- FT1-30: Payment Reference ID (CX) optional
+ *
- FT1-31: Transaction Reference Key (SI) optional repeating
+ *
- FT1-32: Performing Facility (XON) optional repeating
+ *
- FT1-33: Ordering Facility (XON) optional
+ *
- FT1-34: Item Number (CWE) optional
+ *
- FT1-35: Model Number (ST) optional
+ *
- FT1-36: Special Processing Code (CWE) optional repeating
+ *
- FT1-37: Clinic Code (CWE) optional
+ *
- FT1-38: Referral Number (CX) optional
+ *
- FT1-39: Authorization Number (CX) optional
+ *
- FT1-40: Service Provider Taxonomy Code (CWE) optional
+ *
- FT1-41: Revenue Code (CWE) optional
+ *
- FT1-42: Prescription Number (ST) optional
+ *
- FT1-43: NDC Qty and UOM (CQ) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class FT1 extends AbstractSegment {
+
+ /**
+ * Creates a new FT1 segment
+ */
+ public FT1(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, false, 1, 4, new Object[]{ getMessage() }, "Set ID - FT1");
+ this.add(ST.class, false, 1, 12, new Object[]{ getMessage() }, "Transaction ID");
+ this.add(ST.class, false, 1, 10, new Object[]{ getMessage() }, "Transaction Batch ID");
+ this.add(DR.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Date");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Posting Date");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Type");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Transaction Code");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Description");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Description - Alt");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Quantity");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction Amount - Extended");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Transaction amount - unit");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Department Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Health Plan ID");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Insurance Amount");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Assigned Patient Location");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Fee Schedule");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Patient Type");
+ this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Diagnosis Code - FT1");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Performed By Code");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Ordered By Code");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Unit Cost");
+ this.add(EI.class, false, 1, 0, new Object[]{ getMessage() }, "Filler Order Number");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Entered By Code");
+ this.add(CNE.class, false, 1, 0, new Object[]{ getMessage() }, "Procedure Code");
+ this.add(CNE.class, false, 0, 0, new Object[]{ getMessage() }, "Procedure Code Modifier");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Advanced Beneficiary Notice Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Medically Necessary Duplicate Procedure Reason");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "NDC Code");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Payment Reference ID");
+ this.add(SI.class, false, 0, 4, new Object[]{ getMessage() }, "Transaction Reference Key");
+ this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Performing Facility");
+ this.add(XON.class, false, 1, 0, new Object[]{ getMessage() }, "Ordering Facility");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Item Number");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Model Number");
+ this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Special Processing Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Clinic Code");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Referral Number");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Authorization Number");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Service Provider Taxonomy Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Revenue Code");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Prescription Number");
+ this.add(CQ.class, false, 1, 0, new Object[]{ getMessage() }, "NDC Qty and UOM");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating FT1 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-1: "Set ID - FT1" - creates it if necessary
+ */
+ public SI getSetIDFT1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-1: "Set ID - FT1" - creates it if necessary
+ */
+ public SI getFt11_SetIDFT1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-2: "Transaction ID" - creates it if necessary
+ */
+ public ST getTransactionID() {
+ ST retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-2: "Transaction ID" - creates it if necessary
+ */
+ public ST getFt12_TransactionID() {
+ ST retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-3: "Transaction Batch ID" - creates it if necessary
+ */
+ public ST getTransactionBatchID() {
+ ST retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-3: "Transaction Batch ID" - creates it if necessary
+ */
+ public ST getFt13_TransactionBatchID() {
+ ST retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-4: "Transaction Date" - creates it if necessary
+ */
+ public DR getTransactionDate() {
+ DR retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-4: "Transaction Date" - creates it if necessary
+ */
+ public DR getFt14_TransactionDate() {
+ DR retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-5: "Transaction Posting Date" - creates it if necessary
+ */
+ public DTM getTransactionPostingDate() {
+ DTM retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-5: "Transaction Posting Date" - creates it if necessary
+ */
+ public DTM getFt15_TransactionPostingDate() {
+ DTM retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-6: "Transaction Type" - creates it if necessary
+ */
+ public CWE getTransactionType() {
+ CWE retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-6: "Transaction Type" - creates it if necessary
+ */
+ public CWE getFt16_TransactionType() {
+ CWE retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-7: "Transaction Code" - creates it if necessary
+ */
+ public CWE getTransactionCode() {
+ CWE retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-7: "Transaction Code" - creates it if necessary
+ */
+ public CWE getFt17_TransactionCode() {
+ CWE retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-8: "Transaction Description" - creates it if necessary
+ */
+ public ST getTransactionDescription() {
+ ST retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-8: "Transaction Description" - creates it if necessary
+ */
+ public ST getFt18_TransactionDescription() {
+ ST retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-9: "Transaction Description - Alt" - creates it if necessary
+ */
+ public ST getTransactionDescriptionAlt() {
+ ST retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-9: "Transaction Description - Alt" - creates it if necessary
+ */
+ public ST getFt19_TransactionDescriptionAlt() {
+ ST retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-10: "Transaction Quantity" - creates it if necessary
+ */
+ public NM getTransactionQuantity() {
+ NM retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-10: "Transaction Quantity" - creates it if necessary
+ */
+ public NM getFt110_TransactionQuantity() {
+ NM retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-11: "Transaction Amount - Extended" - creates it if necessary
+ */
+ public CP getTransactionAmountExtended() {
+ CP retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-11: "Transaction Amount - Extended" - creates it if necessary
+ */
+ public CP getFt111_TransactionAmountExtended() {
+ CP retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-12: "Transaction amount - unit" - creates it if necessary
+ */
+ public CP getTransactionAmountUnit() {
+ CP retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-12: "Transaction amount - unit" - creates it if necessary
+ */
+ public CP getFt112_TransactionAmountUnit() {
+ CP retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-13: "Department Code" - creates it if necessary
+ */
+ public CWE getDepartmentCode() {
+ CWE retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-13: "Department Code" - creates it if necessary
+ */
+ public CWE getFt113_DepartmentCode() {
+ CWE retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-14: "Health Plan ID" - creates it if necessary
+ */
+ public CWE getHealthPlanID() {
+ CWE retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-14: "Health Plan ID" - creates it if necessary
+ */
+ public CWE getFt114_HealthPlanID() {
+ CWE retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-15: "Insurance Amount" - creates it if necessary
+ */
+ public CP getInsuranceAmount() {
+ CP retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-15: "Insurance Amount" - creates it if necessary
+ */
+ public CP getFt115_InsuranceAmount() {
+ CP retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-16: "Assigned Patient Location" - creates it if necessary
+ */
+ public PL getAssignedPatientLocation() {
+ PL retVal = this.getTypedField(16, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-16: "Assigned Patient Location" - creates it if necessary
+ */
+ public PL getFt116_AssignedPatientLocation() {
+ PL retVal = this.getTypedField(16, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-17: "Fee Schedule" - creates it if necessary
+ */
+ public CWE getFeeSchedule() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-17: "Fee Schedule" - creates it if necessary
+ */
+ public CWE getFt117_FeeSchedule() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-18: "Patient Type" - creates it if necessary
+ */
+ public CWE getPatientType() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-18: "Patient Type" - creates it if necessary
+ */
+ public CWE getFt118_PatientType() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Diagnosis Code - FT1 (FT1-19).
+ */
+ public CWE[] getDiagnosisCodeFT1() {
+ CWE[] retVal = this.getTypedField(19, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Diagnosis Code - FT1 (FT1-19).
+ */
+ public CWE[] getFt119_DiagnosisCodeFT1() {
+ CWE[] retVal = this.getTypedField(19, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Diagnosis Code - FT1 (FT1-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getDiagnosisCodeFT1Reps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-19: "Diagnosis Code - FT1" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getDiagnosisCodeFT1(int rep) {
+ CWE retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-19: "Diagnosis Code - FT1" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getFt119_DiagnosisCodeFT1(int rep) {
+ CWE retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Diagnosis Code - FT1 (FT1-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt119_DiagnosisCodeFT1Reps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-19: "Diagnosis Code - FT1" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertDiagnosisCodeFT1(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-19: "Diagnosis Code - FT1" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertFt119_DiagnosisCodeFT1(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-19: "Diagnosis Code - FT1" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeDiagnosisCodeFT1(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-19: "Diagnosis Code - FT1" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeFt119_DiagnosisCodeFT1(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(19, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Performed By Code (FT1-20).
+ */
+ public XCN[] getPerformedByCode() {
+ XCN[] retVal = this.getTypedField(20, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Performed By Code (FT1-20).
+ */
+ public XCN[] getFt120_PerformedByCode() {
+ XCN[] retVal = this.getTypedField(20, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Performed By Code (FT1-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPerformedByCodeReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-20: "Performed By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPerformedByCode(int rep) {
+ XCN retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-20: "Performed By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getFt120_PerformedByCode(int rep) {
+ XCN retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Performed By Code (FT1-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt120_PerformedByCodeReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-20: "Performed By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPerformedByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-20: "Performed By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertFt120_PerformedByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-20: "Performed By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePerformedByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-20: "Performed By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeFt120_PerformedByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(20, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Ordered By Code (FT1-21).
+ */
+ public XCN[] getOrderedByCode() {
+ XCN[] retVal = this.getTypedField(21, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Ordered By Code (FT1-21).
+ */
+ public XCN[] getFt121_OrderedByCode() {
+ XCN[] retVal = this.getTypedField(21, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Ordered By Code (FT1-21).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getOrderedByCodeReps() {
+ return this.getReps(21);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-21: "Ordered By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getOrderedByCode(int rep) {
+ XCN retVal = this.getTypedField(21, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-21: "Ordered By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getFt121_OrderedByCode(int rep) {
+ XCN retVal = this.getTypedField(21, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Ordered By Code (FT1-21).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt121_OrderedByCodeReps() {
+ return this.getReps(21);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-21: "Ordered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertOrderedByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(21, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-21: "Ordered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertFt121_OrderedByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(21, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-21: "Ordered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeOrderedByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(21, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-21: "Ordered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeFt121_OrderedByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(21, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * FT1-22: "Unit Cost" - creates it if necessary
+ */
+ public CP getUnitCost() {
+ CP retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-22: "Unit Cost" - creates it if necessary
+ */
+ public CP getFt122_UnitCost() {
+ CP retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-23: "Filler Order Number" - creates it if necessary
+ */
+ public EI getFillerOrderNumber() {
+ EI retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-23: "Filler Order Number" - creates it if necessary
+ */
+ public EI getFt123_FillerOrderNumber() {
+ EI retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Entered By Code (FT1-24).
+ */
+ public XCN[] getEnteredByCode() {
+ XCN[] retVal = this.getTypedField(24, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Entered By Code (FT1-24).
+ */
+ public XCN[] getFt124_EnteredByCode() {
+ XCN[] retVal = this.getTypedField(24, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Entered By Code (FT1-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getEnteredByCodeReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-24: "Entered By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getEnteredByCode(int rep) {
+ XCN retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-24: "Entered By Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getFt124_EnteredByCode(int rep) {
+ XCN retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Entered By Code (FT1-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt124_EnteredByCodeReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-24: "Entered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertEnteredByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-24: "Entered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertFt124_EnteredByCode(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-24: "Entered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeEnteredByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-24: "Entered By Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeFt124_EnteredByCode(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(24, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * FT1-25: "Procedure Code" - creates it if necessary
+ */
+ public CNE getProcedureCode() {
+ CNE retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-25: "Procedure Code" - creates it if necessary
+ */
+ public CNE getFt125_ProcedureCode() {
+ CNE retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Procedure Code Modifier (FT1-26).
+ */
+ public CNE[] getProcedureCodeModifier() {
+ CNE[] retVal = this.getTypedField(26, new CNE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Procedure Code Modifier (FT1-26).
+ */
+ public CNE[] getFt126_ProcedureCodeModifier() {
+ CNE[] retVal = this.getTypedField(26, new CNE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Procedure Code Modifier (FT1-26).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getProcedureCodeModifierReps() {
+ return this.getReps(26);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-26: "Procedure Code Modifier" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CNE getProcedureCodeModifier(int rep) {
+ CNE retVal = this.getTypedField(26, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-26: "Procedure Code Modifier" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CNE getFt126_ProcedureCodeModifier(int rep) {
+ CNE retVal = this.getTypedField(26, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Procedure Code Modifier (FT1-26).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt126_ProcedureCodeModifierReps() {
+ return this.getReps(26);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-26: "Procedure Code Modifier" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CNE insertProcedureCodeModifier(int rep) throws HL7Exception {
+ return (CNE) super.insertRepetition(26, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-26: "Procedure Code Modifier" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CNE insertFt126_ProcedureCodeModifier(int rep) throws HL7Exception {
+ return (CNE) super.insertRepetition(26, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-26: "Procedure Code Modifier" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CNE removeProcedureCodeModifier(int rep) throws HL7Exception {
+ return (CNE) super.removeRepetition(26, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-26: "Procedure Code Modifier" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CNE removeFt126_ProcedureCodeModifier(int rep) throws HL7Exception {
+ return (CNE) super.removeRepetition(26, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * FT1-27: "Advanced Beneficiary Notice Code" - creates it if necessary
+ */
+ public CWE getAdvancedBeneficiaryNoticeCode() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-27: "Advanced Beneficiary Notice Code" - creates it if necessary
+ */
+ public CWE getFt127_AdvancedBeneficiaryNoticeCode() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-28: "Medically Necessary Duplicate Procedure Reason" - creates it if necessary
+ */
+ public CWE getMedicallyNecessaryDuplicateProcedureReason() {
+ CWE retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-28: "Medically Necessary Duplicate Procedure Reason" - creates it if necessary
+ */
+ public CWE getFt128_MedicallyNecessaryDuplicateProcedureReason() {
+ CWE retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-29: "NDC Code" - creates it if necessary
+ */
+ public CWE getNDCCode() {
+ CWE retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-29: "NDC Code" - creates it if necessary
+ */
+ public CWE getFt129_NDCCode() {
+ CWE retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-30: "Payment Reference ID" - creates it if necessary
+ */
+ public CX getPaymentReferenceID() {
+ CX retVal = this.getTypedField(30, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-30: "Payment Reference ID" - creates it if necessary
+ */
+ public CX getFt130_PaymentReferenceID() {
+ CX retVal = this.getTypedField(30, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Transaction Reference Key (FT1-31).
+ */
+ public SI[] getTransactionReferenceKey() {
+ SI[] retVal = this.getTypedField(31, new SI[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Transaction Reference Key (FT1-31).
+ */
+ public SI[] getFt131_TransactionReferenceKey() {
+ SI[] retVal = this.getTypedField(31, new SI[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Transaction Reference Key (FT1-31).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getTransactionReferenceKeyReps() {
+ return this.getReps(31);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-31: "Transaction Reference Key" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public SI getTransactionReferenceKey(int rep) {
+ SI retVal = this.getTypedField(31, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-31: "Transaction Reference Key" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public SI getFt131_TransactionReferenceKey(int rep) {
+ SI retVal = this.getTypedField(31, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Transaction Reference Key (FT1-31).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt131_TransactionReferenceKeyReps() {
+ return this.getReps(31);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-31: "Transaction Reference Key" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public SI insertTransactionReferenceKey(int rep) throws HL7Exception {
+ return (SI) super.insertRepetition(31, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-31: "Transaction Reference Key" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public SI insertFt131_TransactionReferenceKey(int rep) throws HL7Exception {
+ return (SI) super.insertRepetition(31, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-31: "Transaction Reference Key" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public SI removeTransactionReferenceKey(int rep) throws HL7Exception {
+ return (SI) super.removeRepetition(31, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-31: "Transaction Reference Key" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public SI removeFt131_TransactionReferenceKey(int rep) throws HL7Exception {
+ return (SI) super.removeRepetition(31, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Performing Facility (FT1-32).
+ */
+ public XON[] getPerformingFacility() {
+ XON[] retVal = this.getTypedField(32, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Performing Facility (FT1-32).
+ */
+ public XON[] getFt132_PerformingFacility() {
+ XON[] retVal = this.getTypedField(32, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Performing Facility (FT1-32).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPerformingFacilityReps() {
+ return this.getReps(32);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-32: "Performing Facility" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getPerformingFacility(int rep) {
+ XON retVal = this.getTypedField(32, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-32: "Performing Facility" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getFt132_PerformingFacility(int rep) {
+ XON retVal = this.getTypedField(32, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Performing Facility (FT1-32).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt132_PerformingFacilityReps() {
+ return this.getReps(32);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-32: "Performing Facility" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertPerformingFacility(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(32, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-32: "Performing Facility" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertFt132_PerformingFacility(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(32, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-32: "Performing Facility" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removePerformingFacility(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(32, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-32: "Performing Facility" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeFt132_PerformingFacility(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(32, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * FT1-33: "Ordering Facility" - creates it if necessary
+ */
+ public XON getOrderingFacility() {
+ XON retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-33: "Ordering Facility" - creates it if necessary
+ */
+ public XON getFt133_OrderingFacility() {
+ XON retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-34: "Item Number" - creates it if necessary
+ */
+ public CWE getItemNumber() {
+ CWE retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-34: "Item Number" - creates it if necessary
+ */
+ public CWE getFt134_ItemNumber() {
+ CWE retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-35: "Model Number" - creates it if necessary
+ */
+ public ST getModelNumber() {
+ ST retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-35: "Model Number" - creates it if necessary
+ */
+ public ST getFt135_ModelNumber() {
+ ST retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Special Processing Code (FT1-36).
+ */
+ public CWE[] getSpecialProcessingCode() {
+ CWE[] retVal = this.getTypedField(36, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Special Processing Code (FT1-36).
+ */
+ public CWE[] getFt136_SpecialProcessingCode() {
+ CWE[] retVal = this.getTypedField(36, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Special Processing Code (FT1-36).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getSpecialProcessingCodeReps() {
+ return this.getReps(36);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * FT1-36: "Special Processing Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getSpecialProcessingCode(int rep) {
+ CWE retVal = this.getTypedField(36, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * FT1-36: "Special Processing Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getFt136_SpecialProcessingCode(int rep) {
+ CWE retVal = this.getTypedField(36, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Special Processing Code (FT1-36).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFt136_SpecialProcessingCodeReps() {
+ return this.getReps(36);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-36: "Special Processing Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertSpecialProcessingCode(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(36, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * FT1-36: "Special Processing Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertFt136_SpecialProcessingCode(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(36, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-36: "Special Processing Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeSpecialProcessingCode(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(36, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * FT1-36: "Special Processing Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeFt136_SpecialProcessingCode(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(36, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * FT1-37: "Clinic Code" - creates it if necessary
+ */
+ public CWE getClinicCode() {
+ CWE retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-37: "Clinic Code" - creates it if necessary
+ */
+ public CWE getFt137_ClinicCode() {
+ CWE retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-38: "Referral Number" - creates it if necessary
+ */
+ public CX getReferralNumber() {
+ CX retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-38: "Referral Number" - creates it if necessary
+ */
+ public CX getFt138_ReferralNumber() {
+ CX retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-39: "Authorization Number" - creates it if necessary
+ */
+ public CX getAuthorizationNumber() {
+ CX retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-39: "Authorization Number" - creates it if necessary
+ */
+ public CX getFt139_AuthorizationNumber() {
+ CX retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-40: "Service Provider Taxonomy Code" - creates it if necessary
+ */
+ public CWE getServiceProviderTaxonomyCode() {
+ CWE retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-40: "Service Provider Taxonomy Code" - creates it if necessary
+ */
+ public CWE getFt140_ServiceProviderTaxonomyCode() {
+ CWE retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-41: "Revenue Code" - creates it if necessary
+ */
+ public CWE getRevenueCode() {
+ CWE retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-41: "Revenue Code" - creates it if necessary
+ */
+ public CWE getFt141_RevenueCode() {
+ CWE retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-42: "Prescription Number" - creates it if necessary
+ */
+ public ST getPrescriptionNumber() {
+ ST retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-42: "Prescription Number" - creates it if necessary
+ */
+ public ST getFt142_PrescriptionNumber() {
+ ST retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * FT1-43: "NDC Qty and UOM" - creates it if necessary
+ */
+ public CQ getNDCQtyAndUOM() {
+ CQ retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * FT1-43: "NDC Qty and UOM" - creates it if necessary
+ */
+ public CQ getFt143_NDCQtyAndUOM() {
+ CQ retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+
+
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new ST(getMessage());
+ case 2: return new ST(getMessage());
+ case 3: return new DR(getMessage());
+ case 4: return new DTM(getMessage());
+ case 5: return new CWE(getMessage());
+ case 6: return new CWE(getMessage());
+ case 7: return new ST(getMessage());
+ case 8: return new ST(getMessage());
+ case 9: return new NM(getMessage());
+ case 10: return new CP(getMessage());
+ case 11: return new CP(getMessage());
+ case 12: return new CWE(getMessage());
+ case 13: return new CWE(getMessage());
+ case 14: return new CP(getMessage());
+ case 15: return new PL(getMessage());
+ case 16: return new CWE(getMessage());
+ case 17: return new CWE(getMessage());
+ case 18: return new CWE(getMessage());
+ case 19: return new XCN(getMessage());
+ case 20: return new XCN(getMessage());
+ case 21: return new CP(getMessage());
+ case 22: return new EI(getMessage());
+ case 23: return new XCN(getMessage());
+ case 24: return new CNE(getMessage());
+ case 25: return new CNE(getMessage());
+ case 26: return new CWE(getMessage());
+ case 27: return new CWE(getMessage());
+ case 28: return new CWE(getMessage());
+ case 29: return new CX(getMessage());
+ case 30: return new SI(getMessage());
+ case 31: return new XON(getMessage());
+ case 32: return new XON(getMessage());
+ case 33: return new CWE(getMessage());
+ case 34: return new ST(getMessage());
+ case 35: return new CWE(getMessage());
+ case 36: return new CWE(getMessage());
+ case 37: return new CX(getMessage());
+ case 38: return new CX(getMessage());
+ case 39: return new CWE(getMessage());
+ case 40: return new CWE(getMessage());
+ case 41: return new ST(getMessage());
+ case 42: return new CQ(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java
new file mode 100644
index 00000000000..88cb1cce330
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN1.java
@@ -0,0 +1,2591 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 IN1 message segment (Insurance).
+ * This segment has the following fields:
+ *
+ * - IN1-1: Set ID - IN1 (SI)
+ *
- IN1-2: Health Plan ID (CWE)
+ *
- IN1-3: Insurance Company ID (CX) repeating
+ *
- IN1-4: Insurance Company Name (XON) optional repeating
+ *
- IN1-5: Insurance Company Address (XAD) optional repeating
+ *
- IN1-6: Insurance Co Contact Person (XPN) optional repeating
+ *
- IN1-7: Insurance Co Phone Number (XTN) optional repeating
+ *
- IN1-8: Group Number (ST) optional
+ *
- IN1-9: Group Name (XON) optional repeating
+ *
- IN1-10: Insured's Group Emp ID (CX) optional repeating
+ *
- IN1-11: Insured's Group Emp Name (XON) optional repeating
+ *
- IN1-12: Plan Effective Date (DT) optional
+ *
- IN1-13: Plan Expiration Date (DT) optional
+ *
- IN1-14: Authorization Information (AUI) optional
+ *
- IN1-15: Plan Type (CWE) optional
+ *
- IN1-16: Name Of Insured (XPN) optional repeating
+ *
- IN1-17: Insured's Relationship To Patient (CWE) optional
+ *
- IN1-18: Insured's Date Of Birth (DTM) optional
+ *
- IN1-19: Insured's Address (XAD) optional repeating
+ *
- IN1-20: Assignment Of Benefits (CWE) optional
+ *
- IN1-21: Coordination Of Benefits (CWE) optional
+ *
- IN1-22: Coord Of Ben. Priority (ST) optional
+ *
- IN1-23: Notice Of Admission Flag (ID) optional
+ *
- IN1-24: Notice Of Admission Date (DT) optional
+ *
- IN1-25: Report Of Eligibility Flag (ID) optional
+ *
- IN1-26: Report Of Eligibility Date (DT) optional
+ *
- IN1-27: Release Information Code (CWE) optional
+ *
- IN1-28: Pre-Admit Cert (PAC) (ST) optional
+ *
- IN1-29: Verification Date/Time (DTM) optional
+ *
- IN1-30: Verification By (XCN) optional repeating
+ *
- IN1-31: Type Of Agreement Code (CWE) optional
+ *
- IN1-32: Billing Status (CWE) optional
+ *
- IN1-33: Lifetime Reserve Days (NM) optional
+ *
- IN1-34: Delay Before L.R. Day (NM) optional
+ *
- IN1-35: Company Plan Code (CWE) optional
+ *
- IN1-36: Policy Number (ST) optional
+ *
- IN1-37: Policy Deductible (CP) optional
+ *
- IN1-38: Policy Limit - Amount (CP) optional
+ *
- IN1-39: Policy Limit - Days (NM) optional
+ *
- IN1-40: Room Rate - Semi-Private (CP) optional
+ *
- IN1-41: Room Rate - Private (CP) optional
+ *
- IN1-42: Insured's Employment Status (CWE) optional
+ *
- IN1-43: Insured's Administrative Sex (CWE) optional
+ *
- IN1-44: Insured's Employer's Address (XAD) optional repeating
+ *
- IN1-45: Verification Status (ST) optional
+ *
- IN1-46: Prior Insurance Plan ID (CWE) optional
+ *
- IN1-47: Coverage Type (CWE) optional
+ *
- IN1-48: Handicap (CWE) optional
+ *
- IN1-49: Insured's ID Number (CX) optional repeating
+ *
- IN1-50: Signature Code (CWE) optional
+ *
- IN1-51: Signature Code Date (DT) optional
+ *
- IN1-52: Insured's Birth Place (ST) optional
+ *
- IN1-53: VIP Indicator (CWE) optional
+ *
- IN1-54: External Health Plan Identifiers (CX) optional repeating
+ *
- IN1-55: Insurance Action Code (ID) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class IN1 extends AbstractSegment {
+
+ /**
+ * Creates a new IN1 segment
+ */
+ public IN1(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - IN1");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Health Plan ID");
+ this.add(CX.class, true, 0, 0, new Object[]{ getMessage() }, "Insurance Company ID");
+ this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Company Name");
+ this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Company Address");
+ this.add(XPN.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Co Contact Person");
+ this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Insurance Co Phone Number");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Group Number");
+ this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Group Name");
+ this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Group Emp ID");
+ this.add(XON.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Group Emp Name");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Effective Date");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Expiration Date");
+ this.add(AUI.class, false, 1, 0, new Object[]{ getMessage() }, "Authorization Information");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Plan Type");
+ this.add(XPN.class, false, 0, 0, new Object[]{ getMessage() }, "Name Of Insured");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Relationship To Patient");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Date Of Birth");
+ this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Address");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Assignment Of Benefits");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Coordination Of Benefits");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Coord Of Ben. Priority");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Notice Of Admission Flag");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Notice Of Admission Date");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Report Of Eligibility Flag");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Report Of Eligibility Date");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Release Information Code");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Pre-Admit Cert (PAC)");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Verification Date/Time");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Verification By");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Type Of Agreement Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Billing Status");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Lifetime Reserve Days");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Delay Before L.R. Day");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Company Plan Code");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Number");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Deductible");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Limit - Amount");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Policy Limit - Days");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Room Rate - Semi-Private");
+ this.add(CP.class, false, 1, 0, new Object[]{ getMessage() }, "Room Rate - Private");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Employment Status");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Administrative Sex");
+ this.add(XAD.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's Employer's Address");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Verification Status");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Insurance Plan ID");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Coverage Type");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Handicap");
+ this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "Insured's ID Number");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Signature Code");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Signature Code Date");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Insured's Birth Place");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "VIP Indicator");
+ this.add(CX.class, false, 0, 0, new Object[]{ getMessage() }, "External Health Plan Identifiers");
+ this.add(ID.class, false, 1, 0, new Object[]{ getMessage() }, "Insurance Action Code");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating IN1 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-1: "Set ID - IN1" - creates it if necessary
+ */
+ public SI getSetIDIN1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-1: "Set ID - IN1" - creates it if necessary
+ */
+ public SI getIn11_SetIDIN1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-2: "Health Plan ID" - creates it if necessary
+ */
+ public CWE getInsurancePlanID() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-2: "Health Plan ID" - creates it if necessary
+ */
+ public CWE getIn12_InsurancePlanID() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Company ID (IN1-3).
+ */
+ public CX[] getInsuranceCompanyID() {
+ CX[] retVal = this.getTypedField(3, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Company ID (IN1-3).
+ */
+ public CX[] getIn13_InsuranceCompanyID() {
+ CX[] retVal = this.getTypedField(3, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company ID (IN1-3).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuranceCompanyIDReps() {
+ return this.getReps(3);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-3: "Insurance Company ID" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getInsuranceCompanyID(int rep) {
+ CX retVal = this.getTypedField(3, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-3: "Insurance Company ID" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getIn13_InsuranceCompanyID(int rep) {
+ CX retVal = this.getTypedField(3, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company ID (IN1-3).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn13_InsuranceCompanyIDReps() {
+ return this.getReps(3);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-3: "Insurance Company ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertInsuranceCompanyID(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(3, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-3: "Insurance Company ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertIn13_InsuranceCompanyID(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(3, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-3: "Insurance Company ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeInsuranceCompanyID(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(3, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-3: "Insurance Company ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeIn13_InsuranceCompanyID(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(3, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insurance Company Name (IN1-4).
+ */
+ public XON[] getInsuranceCompanyName() {
+ XON[] retVal = this.getTypedField(4, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Company Name (IN1-4).
+ */
+ public XON[] getIn14_InsuranceCompanyName() {
+ XON[] retVal = this.getTypedField(4, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company Name (IN1-4).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuranceCompanyNameReps() {
+ return this.getReps(4);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-4: "Insurance Company Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getInsuranceCompanyName(int rep) {
+ XON retVal = this.getTypedField(4, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-4: "Insurance Company Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getIn14_InsuranceCompanyName(int rep) {
+ XON retVal = this.getTypedField(4, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company Name (IN1-4).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn14_InsuranceCompanyNameReps() {
+ return this.getReps(4);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-4: "Insurance Company Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertInsuranceCompanyName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(4, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-4: "Insurance Company Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertIn14_InsuranceCompanyName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(4, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-4: "Insurance Company Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeInsuranceCompanyName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(4, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-4: "Insurance Company Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeIn14_InsuranceCompanyName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(4, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insurance Company Address (IN1-5).
+ */
+ public XAD[] getInsuranceCompanyAddress() {
+ XAD[] retVal = this.getTypedField(5, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Company Address (IN1-5).
+ */
+ public XAD[] getIn15_InsuranceCompanyAddress() {
+ XAD[] retVal = this.getTypedField(5, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company Address (IN1-5).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuranceCompanyAddressReps() {
+ return this.getReps(5);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-5: "Insurance Company Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getInsuranceCompanyAddress(int rep) {
+ XAD retVal = this.getTypedField(5, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-5: "Insurance Company Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getIn15_InsuranceCompanyAddress(int rep) {
+ XAD retVal = this.getTypedField(5, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Company Address (IN1-5).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn15_InsuranceCompanyAddressReps() {
+ return this.getReps(5);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-5: "Insurance Company Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertInsuranceCompanyAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(5, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-5: "Insurance Company Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertIn15_InsuranceCompanyAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(5, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-5: "Insurance Company Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeInsuranceCompanyAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(5, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-5: "Insurance Company Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeIn15_InsuranceCompanyAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(5, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insurance Co Contact Person (IN1-6).
+ */
+ public XPN[] getInsuranceCoContactPerson() {
+ XPN[] retVal = this.getTypedField(6, new XPN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Co Contact Person (IN1-6).
+ */
+ public XPN[] getIn16_InsuranceCoContactPerson() {
+ XPN[] retVal = this.getTypedField(6, new XPN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Co Contact Person (IN1-6).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuranceCoContactPersonReps() {
+ return this.getReps(6);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-6: "Insurance Co Contact Person" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XPN getInsuranceCoContactPerson(int rep) {
+ XPN retVal = this.getTypedField(6, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-6: "Insurance Co Contact Person" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XPN getIn16_InsuranceCoContactPerson(int rep) {
+ XPN retVal = this.getTypedField(6, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Co Contact Person (IN1-6).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn16_InsuranceCoContactPersonReps() {
+ return this.getReps(6);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-6: "Insurance Co Contact Person" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN insertInsuranceCoContactPerson(int rep) throws HL7Exception {
+ return (XPN) super.insertRepetition(6, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-6: "Insurance Co Contact Person" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN insertIn16_InsuranceCoContactPerson(int rep) throws HL7Exception {
+ return (XPN) super.insertRepetition(6, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-6: "Insurance Co Contact Person" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN removeInsuranceCoContactPerson(int rep) throws HL7Exception {
+ return (XPN) super.removeRepetition(6, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-6: "Insurance Co Contact Person" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN removeIn16_InsuranceCoContactPerson(int rep) throws HL7Exception {
+ return (XPN) super.removeRepetition(6, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insurance Co Phone Number (IN1-7).
+ */
+ public XTN[] getInsuranceCoPhoneNumber() {
+ XTN[] retVal = this.getTypedField(7, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insurance Co Phone Number (IN1-7).
+ */
+ public XTN[] getIn17_InsuranceCoPhoneNumber() {
+ XTN[] retVal = this.getTypedField(7, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Co Phone Number (IN1-7).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuranceCoPhoneNumberReps() {
+ return this.getReps(7);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-7: "Insurance Co Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getInsuranceCoPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(7, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-7: "Insurance Co Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getIn17_InsuranceCoPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(7, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insurance Co Phone Number (IN1-7).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn17_InsuranceCoPhoneNumberReps() {
+ return this.getReps(7);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-7: "Insurance Co Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertInsuranceCoPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(7, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-7: "Insurance Co Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertIn17_InsuranceCoPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(7, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-7: "Insurance Co Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeInsuranceCoPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(7, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-7: "Insurance Co Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeIn17_InsuranceCoPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(7, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-8: "Group Number" - creates it if necessary
+ */
+ public ST getGroupNumber() {
+ ST retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-8: "Group Number" - creates it if necessary
+ */
+ public ST getIn18_GroupNumber() {
+ ST retVal = this.getTypedField(8, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Group Name (IN1-9).
+ */
+ public XON[] getGroupName() {
+ XON[] retVal = this.getTypedField(9, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Group Name (IN1-9).
+ */
+ public XON[] getIn19_GroupName() {
+ XON[] retVal = this.getTypedField(9, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Group Name (IN1-9).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getGroupNameReps() {
+ return this.getReps(9);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-9: "Group Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getGroupName(int rep) {
+ XON retVal = this.getTypedField(9, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-9: "Group Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getIn19_GroupName(int rep) {
+ XON retVal = this.getTypedField(9, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Group Name (IN1-9).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn19_GroupNameReps() {
+ return this.getReps(9);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-9: "Group Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertGroupName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(9, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-9: "Group Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertIn19_GroupName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(9, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-9: "Group Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeGroupName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(9, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-9: "Group Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeIn19_GroupName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(9, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insured's Group Emp ID (IN1-10).
+ */
+ public CX[] getInsuredSGroupEmpID() {
+ CX[] retVal = this.getTypedField(10, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Group Emp ID (IN1-10).
+ */
+ public CX[] getIn110_InsuredSGroupEmpID() {
+ CX[] retVal = this.getTypedField(10, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Group Emp ID (IN1-10).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuredSGroupEmpIDReps() {
+ return this.getReps(10);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-10: "Insured's Group Emp ID" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getInsuredSGroupEmpID(int rep) {
+ CX retVal = this.getTypedField(10, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-10: "Insured's Group Emp ID" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getIn110_InsuredSGroupEmpID(int rep) {
+ CX retVal = this.getTypedField(10, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Group Emp ID (IN1-10).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn110_InsuredSGroupEmpIDReps() {
+ return this.getReps(10);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-10: "Insured's Group Emp ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertInsuredSGroupEmpID(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(10, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-10: "Insured's Group Emp ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertIn110_InsuredSGroupEmpID(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(10, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-10: "Insured's Group Emp ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeInsuredSGroupEmpID(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(10, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-10: "Insured's Group Emp ID" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeIn110_InsuredSGroupEmpID(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(10, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Insured's Group Emp Name (IN1-11).
+ */
+ public XON[] getInsuredSGroupEmpName() {
+ XON[] retVal = this.getTypedField(11, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Group Emp Name (IN1-11).
+ */
+ public XON[] getIn111_InsuredSGroupEmpName() {
+ XON[] retVal = this.getTypedField(11, new XON[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Group Emp Name (IN1-11).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuredSGroupEmpNameReps() {
+ return this.getReps(11);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-11: "Insured's Group Emp Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getInsuredSGroupEmpName(int rep) {
+ XON retVal = this.getTypedField(11, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-11: "Insured's Group Emp Name" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XON getIn111_InsuredSGroupEmpName(int rep) {
+ XON retVal = this.getTypedField(11, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Group Emp Name (IN1-11).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn111_InsuredSGroupEmpNameReps() {
+ return this.getReps(11);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-11: "Insured's Group Emp Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertInsuredSGroupEmpName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(11, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-11: "Insured's Group Emp Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON insertIn111_InsuredSGroupEmpName(int rep) throws HL7Exception {
+ return (XON) super.insertRepetition(11, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-11: "Insured's Group Emp Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeInsuredSGroupEmpName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(11, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-11: "Insured's Group Emp Name" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XON removeIn111_InsuredSGroupEmpName(int rep) throws HL7Exception {
+ return (XON) super.removeRepetition(11, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-12: "Plan Effective Date" - creates it if necessary
+ */
+ public DT getPlanEffectiveDate() {
+ DT retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-12: "Plan Effective Date" - creates it if necessary
+ */
+ public DT getIn112_PlanEffectiveDate() {
+ DT retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-13: "Plan Expiration Date" - creates it if necessary
+ */
+ public DT getPlanExpirationDate() {
+ DT retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-13: "Plan Expiration Date" - creates it if necessary
+ */
+ public DT getIn113_PlanExpirationDate() {
+ DT retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-14: "Authorization Information" - creates it if necessary
+ */
+ public AUI getAuthorizationInformation() {
+ AUI retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-14: "Authorization Information" - creates it if necessary
+ */
+ public AUI getIn114_AuthorizationInformation() {
+ AUI retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-15: "Plan Type" - creates it if necessary
+ */
+ public CWE getPlanType() {
+ CWE retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-15: "Plan Type" - creates it if necessary
+ */
+ public CWE getIn115_PlanType() {
+ CWE retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Name Of Insured (IN1-16).
+ */
+ public XPN[] getNameOfInsured() {
+ XPN[] retVal = this.getTypedField(16, new XPN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Name Of Insured (IN1-16).
+ */
+ public XPN[] getIn116_NameOfInsured() {
+ XPN[] retVal = this.getTypedField(16, new XPN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Name Of Insured (IN1-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getNameOfInsuredReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-16: "Name Of Insured" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XPN getNameOfInsured(int rep) {
+ XPN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-16: "Name Of Insured" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XPN getIn116_NameOfInsured(int rep) {
+ XPN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Name Of Insured (IN1-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn116_NameOfInsuredReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-16: "Name Of Insured" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN insertNameOfInsured(int rep) throws HL7Exception {
+ return (XPN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-16: "Name Of Insured" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN insertIn116_NameOfInsured(int rep) throws HL7Exception {
+ return (XPN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-16: "Name Of Insured" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN removeNameOfInsured(int rep) throws HL7Exception {
+ return (XPN) super.removeRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-16: "Name Of Insured" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XPN removeIn116_NameOfInsured(int rep) throws HL7Exception {
+ return (XPN) super.removeRepetition(16, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-17: "Insured's Relationship To Patient" - creates it if necessary
+ */
+ public CWE getInsuredSRelationshipToPatient() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-17: "Insured's Relationship To Patient" - creates it if necessary
+ */
+ public CWE getIn117_InsuredSRelationshipToPatient() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-18: "Insured's Date Of Birth" - creates it if necessary
+ */
+ public DTM getInsuredSDateOfBirth() {
+ DTM retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-18: "Insured's Date Of Birth" - creates it if necessary
+ */
+ public DTM getIn118_InsuredSDateOfBirth() {
+ DTM retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Address (IN1-19).
+ */
+ public XAD[] getInsuredSAddress() {
+ XAD[] retVal = this.getTypedField(19, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Address (IN1-19).
+ */
+ public XAD[] getIn119_InsuredSAddress() {
+ XAD[] retVal = this.getTypedField(19, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Address (IN1-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuredSAddressReps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-19: "Insured's Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getInsuredSAddress(int rep) {
+ XAD retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-19: "Insured's Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getIn119_InsuredSAddress(int rep) {
+ XAD retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Address (IN1-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn119_InsuredSAddressReps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-19: "Insured's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertInsuredSAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-19: "Insured's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertIn119_InsuredSAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-19: "Insured's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeInsuredSAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-19: "Insured's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeIn119_InsuredSAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(19, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-20: "Assignment Of Benefits" - creates it if necessary
+ */
+ public CWE getAssignmentOfBenefits() {
+ CWE retVal = this.getTypedField(20, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-20: "Assignment Of Benefits" - creates it if necessary
+ */
+ public CWE getIn120_AssignmentOfBenefits() {
+ CWE retVal = this.getTypedField(20, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-21: "Coordination Of Benefits" - creates it if necessary
+ */
+ public CWE getCoordinationOfBenefits() {
+ CWE retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-21: "Coordination Of Benefits" - creates it if necessary
+ */
+ public CWE getIn121_CoordinationOfBenefits() {
+ CWE retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-22: "Coord Of Ben. Priority" - creates it if necessary
+ */
+ public ST getCoordOfBenPriority() {
+ ST retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-22: "Coord Of Ben. Priority" - creates it if necessary
+ */
+ public ST getIn122_CoordOfBenPriority() {
+ ST retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-23: "Notice Of Admission Flag" - creates it if necessary
+ */
+ public ID getNoticeOfAdmissionFlag() {
+ ID retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-23: "Notice Of Admission Flag" - creates it if necessary
+ */
+ public ID getIn123_NoticeOfAdmissionFlag() {
+ ID retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-24: "Notice Of Admission Date" - creates it if necessary
+ */
+ public DT getNoticeOfAdmissionDate() {
+ DT retVal = this.getTypedField(24, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-24: "Notice Of Admission Date" - creates it if necessary
+ */
+ public DT getIn124_NoticeOfAdmissionDate() {
+ DT retVal = this.getTypedField(24, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-25: "Report Of Eligibility Flag" - creates it if necessary
+ */
+ public ID getReportOfEligibilityFlag() {
+ ID retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-25: "Report Of Eligibility Flag" - creates it if necessary
+ */
+ public ID getIn125_ReportOfEligibilityFlag() {
+ ID retVal = this.getTypedField(25, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-26: "Report Of Eligibility Date" - creates it if necessary
+ */
+ public DT getReportOfEligibilityDate() {
+ DT retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-26: "Report Of Eligibility Date" - creates it if necessary
+ */
+ public DT getIn126_ReportOfEligibilityDate() {
+ DT retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-27: "Release Information Code" - creates it if necessary
+ */
+ public CWE getReleaseInformationCode() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-27: "Release Information Code" - creates it if necessary
+ */
+ public CWE getIn127_ReleaseInformationCode() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-28: "Pre-Admit Cert (PAC)" - creates it if necessary
+ */
+ public ST getPreAdmitCert() {
+ ST retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-28: "Pre-Admit Cert (PAC)" - creates it if necessary
+ */
+ public ST getIn128_PreAdmitCert() {
+ ST retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-29: "Verification Date/Time" - creates it if necessary
+ */
+ public DTM getVerificationDateTime() {
+ DTM retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-29: "Verification Date/Time" - creates it if necessary
+ */
+ public DTM getIn129_VerificationDateTime() {
+ DTM retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Verification By (IN1-30).
+ */
+ public XCN[] getVerificationBy() {
+ XCN[] retVal = this.getTypedField(30, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Verification By (IN1-30).
+ */
+ public XCN[] getIn130_VerificationBy() {
+ XCN[] retVal = this.getTypedField(30, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Verification By (IN1-30).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getVerificationByReps() {
+ return this.getReps(30);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-30: "Verification By" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getVerificationBy(int rep) {
+ XCN retVal = this.getTypedField(30, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-30: "Verification By" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getIn130_VerificationBy(int rep) {
+ XCN retVal = this.getTypedField(30, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Verification By (IN1-30).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn130_VerificationByReps() {
+ return this.getReps(30);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-30: "Verification By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertVerificationBy(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(30, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-30: "Verification By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertIn130_VerificationBy(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(30, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-30: "Verification By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeVerificationBy(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(30, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-30: "Verification By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeIn130_VerificationBy(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(30, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-31: "Type Of Agreement Code" - creates it if necessary
+ */
+ public CWE getTypeOfAgreementCode() {
+ CWE retVal = this.getTypedField(31, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-31: "Type Of Agreement Code" - creates it if necessary
+ */
+ public CWE getIn131_TypeOfAgreementCode() {
+ CWE retVal = this.getTypedField(31, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-32: "Billing Status" - creates it if necessary
+ */
+ public CWE getBillingStatus() {
+ CWE retVal = this.getTypedField(32, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-32: "Billing Status" - creates it if necessary
+ */
+ public CWE getIn132_BillingStatus() {
+ CWE retVal = this.getTypedField(32, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-33: "Lifetime Reserve Days" - creates it if necessary
+ */
+ public NM getLifetimeReserveDays() {
+ NM retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-33: "Lifetime Reserve Days" - creates it if necessary
+ */
+ public NM getIn133_LifetimeReserveDays() {
+ NM retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-34: "Delay Before L.R. Day" - creates it if necessary
+ */
+ public NM getDelayBeforeLRDay() {
+ NM retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-34: "Delay Before L.R. Day" - creates it if necessary
+ */
+ public NM getIn134_DelayBeforeLRDay() {
+ NM retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-35: "Company Plan Code" - creates it if necessary
+ */
+ public CWE getCompanyPlanCode() {
+ CWE retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-35: "Company Plan Code" - creates it if necessary
+ */
+ public CWE getIn135_CompanyPlanCode() {
+ CWE retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-36: "Policy Number" - creates it if necessary
+ */
+ public ST getPolicyNumber() {
+ ST retVal = this.getTypedField(36, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-36: "Policy Number" - creates it if necessary
+ */
+ public ST getIn136_PolicyNumber() {
+ ST retVal = this.getTypedField(36, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-37: "Policy Deductible" - creates it if necessary
+ */
+ public CP getPolicyDeductible() {
+ CP retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-37: "Policy Deductible" - creates it if necessary
+ */
+ public CP getIn137_PolicyDeductible() {
+ CP retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-38: "Policy Limit - Amount" - creates it if necessary
+ */
+ public CP getPolicyLimitAmount() {
+ CP retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-38: "Policy Limit - Amount" - creates it if necessary
+ */
+ public CP getIn138_PolicyLimitAmount() {
+ CP retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-39: "Policy Limit - Days" - creates it if necessary
+ */
+ public NM getPolicyLimitDays() {
+ NM retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-39: "Policy Limit - Days" - creates it if necessary
+ */
+ public NM getIn139_PolicyLimitDays() {
+ NM retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-40: "Room Rate - Semi-Private" - creates it if necessary
+ */
+ public CP getRoomRateSemiPrivate() {
+ CP retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-40: "Room Rate - Semi-Private" - creates it if necessary
+ */
+ public CP getIn140_RoomRateSemiPrivate() {
+ CP retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-41: "Room Rate - Private" - creates it if necessary
+ */
+ public CP getRoomRatePrivate() {
+ CP retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-41: "Room Rate - Private" - creates it if necessary
+ */
+ public CP getIn141_RoomRatePrivate() {
+ CP retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-42: "Insured's Employment Status" - creates it if necessary
+ */
+ public CWE getInsuredSEmploymentStatus() {
+ CWE retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-42: "Insured's Employment Status" - creates it if necessary
+ */
+ public CWE getIn142_InsuredSEmploymentStatus() {
+ CWE retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-43: "Insured's Administrative Sex" - creates it if necessary
+ */
+ public CWE getInsuredSAdministrativeSex() {
+ CWE retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-43: "Insured's Administrative Sex" - creates it if necessary
+ */
+ public CWE getIn143_InsuredSAdministrativeSex() {
+ CWE retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Employer's Address (IN1-44).
+ */
+ public XAD[] getInsuredSEmployerSAddress() {
+ XAD[] retVal = this.getTypedField(44, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's Employer's Address (IN1-44).
+ */
+ public XAD[] getIn144_InsuredSEmployerSAddress() {
+ XAD[] retVal = this.getTypedField(44, new XAD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Employer's Address (IN1-44).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuredSEmployerSAddressReps() {
+ return this.getReps(44);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-44: "Insured's Employer's Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getInsuredSEmployerSAddress(int rep) {
+ XAD retVal = this.getTypedField(44, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-44: "Insured's Employer's Address" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XAD getIn144_InsuredSEmployerSAddress(int rep) {
+ XAD retVal = this.getTypedField(44, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's Employer's Address (IN1-44).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn144_InsuredSEmployerSAddressReps() {
+ return this.getReps(44);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-44: "Insured's Employer's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertInsuredSEmployerSAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(44, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-44: "Insured's Employer's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD insertIn144_InsuredSEmployerSAddress(int rep) throws HL7Exception {
+ return (XAD) super.insertRepetition(44, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-44: "Insured's Employer's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeInsuredSEmployerSAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(44, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-44: "Insured's Employer's Address" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XAD removeIn144_InsuredSEmployerSAddress(int rep) throws HL7Exception {
+ return (XAD) super.removeRepetition(44, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-45: "Verification Status" - creates it if necessary
+ */
+ public ST getVerificationStatus() {
+ ST retVal = this.getTypedField(45, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-45: "Verification Status" - creates it if necessary
+ */
+ public ST getIn145_VerificationStatus() {
+ ST retVal = this.getTypedField(45, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-46: "Prior Insurance Plan ID" - creates it if necessary
+ */
+ public CWE getPriorInsurancePlanID() {
+ CWE retVal = this.getTypedField(46, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-46: "Prior Insurance Plan ID" - creates it if necessary
+ */
+ public CWE getIn146_PriorInsurancePlanID() {
+ CWE retVal = this.getTypedField(46, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-47: "Coverage Type" - creates it if necessary
+ */
+ public CWE getCoverageType() {
+ CWE retVal = this.getTypedField(47, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-47: "Coverage Type" - creates it if necessary
+ */
+ public CWE getIn147_CoverageType() {
+ CWE retVal = this.getTypedField(47, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-48: "Handicap" - creates it if necessary
+ */
+ public CWE getHandicap() {
+ CWE retVal = this.getTypedField(48, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-48: "Handicap" - creates it if necessary
+ */
+ public CWE getIn148_Handicap() {
+ CWE retVal = this.getTypedField(48, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's ID Number (IN1-49).
+ */
+ public CX[] getInsuredSIDNumber() {
+ CX[] retVal = this.getTypedField(49, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Insured's ID Number (IN1-49).
+ */
+ public CX[] getIn149_InsuredSIDNumber() {
+ CX[] retVal = this.getTypedField(49, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's ID Number (IN1-49).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getInsuredSIDNumberReps() {
+ return this.getReps(49);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-49: "Insured's ID Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getInsuredSIDNumber(int rep) {
+ CX retVal = this.getTypedField(49, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-49: "Insured's ID Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getIn149_InsuredSIDNumber(int rep) {
+ CX retVal = this.getTypedField(49, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Insured's ID Number (IN1-49).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn149_InsuredSIDNumberReps() {
+ return this.getReps(49);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-49: "Insured's ID Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertInsuredSIDNumber(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(49, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-49: "Insured's ID Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertIn149_InsuredSIDNumber(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(49, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-49: "Insured's ID Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeInsuredSIDNumber(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(49, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-49: "Insured's ID Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeIn149_InsuredSIDNumber(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(49, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN1-50: "Signature Code" - creates it if necessary
+ */
+ public CWE getSignatureCode() {
+ CWE retVal = this.getTypedField(50, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-50: "Signature Code" - creates it if necessary
+ */
+ public CWE getIn150_SignatureCode() {
+ CWE retVal = this.getTypedField(50, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-51: "Signature Code Date" - creates it if necessary
+ */
+ public DT getSignatureCodeDate() {
+ DT retVal = this.getTypedField(51, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-51: "Signature Code Date" - creates it if necessary
+ */
+ public DT getIn151_SignatureCodeDate() {
+ DT retVal = this.getTypedField(51, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-52: "Insured's Birth Place" - creates it if necessary
+ */
+ public ST getInsuredSBirthPlace() {
+ ST retVal = this.getTypedField(52, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-52: "Insured's Birth Place" - creates it if necessary
+ */
+ public ST getIn152_InsuredSBirthPlace() {
+ ST retVal = this.getTypedField(52, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN1-53: "VIP Indicator" - creates it if necessary
+ */
+ public CWE getVIPIndicator() {
+ CWE retVal = this.getTypedField(53, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-53: "VIP Indicator" - creates it if necessary
+ */
+ public CWE getIn153_VIPIndicator() {
+ CWE retVal = this.getTypedField(53, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of External Health Plan Identifiers (IN1-54).
+ */
+ public CX[] getExternalHealthPlanIdentifiers() {
+ CX[] retVal = this.getTypedField(54, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of External Health Plan Identifiers (IN1-54).
+ */
+ public CX[] getIn154_ExternalHealthPlanIdentifiers() {
+ CX[] retVal = this.getTypedField(54, new CX[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of External Health Plan Identifiers (IN1-54).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getExternalHealthPlanIdentifiersReps() {
+ return this.getReps(54);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN1-54: "External Health Plan Identifiers" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getExternalHealthPlanIdentifiers(int rep) {
+ CX retVal = this.getTypedField(54, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN1-54: "External Health Plan Identifiers" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CX getIn154_ExternalHealthPlanIdentifiers(int rep) {
+ CX retVal = this.getTypedField(54, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of External Health Plan Identifiers (IN1-54).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn154_ExternalHealthPlanIdentifiersReps() {
+ return this.getReps(54);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-54: "External Health Plan Identifiers" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertExternalHealthPlanIdentifiers(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(54, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN1-54: "External Health Plan Identifiers" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX insertIn154_ExternalHealthPlanIdentifiers(int rep) throws HL7Exception {
+ return (CX) super.insertRepetition(54, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-54: "External Health Plan Identifiers" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeExternalHealthPlanIdentifiers(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(54, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN1-54: "External Health Plan Identifiers" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CX removeIn154_ExternalHealthPlanIdentifiers(int rep) throws HL7Exception {
+ return (CX) super.removeRepetition(54, rep);
+ }
+
+
+ /**
+ * Returns
+ * IN1-55: "Insurance Action Code" - creates it if necessary
+ */
+ public ID getInsuranceActionCode() {
+ ID retVal = this.getTypedField(55, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN1-55: "Insurance Action Code" - creates it if necessary
+ */
+ public ID getIn155_InsuranceActionCode() {
+ ID retVal = this.getTypedField(55, 0);
+ return retVal;
+ }
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new CWE(getMessage());
+ case 2: return new CX(getMessage());
+ case 3: return new XON(getMessage());
+ case 4: return new XAD(getMessage());
+ case 5: return new XPN(getMessage());
+ case 6: return new XTN(getMessage());
+ case 7: return new ST(getMessage());
+ case 8: return new XON(getMessage());
+ case 9: return new CX(getMessage());
+ case 10: return new XON(getMessage());
+ case 11: return new DT(getMessage());
+ case 12: return new DT(getMessage());
+ case 13: return new AUI(getMessage());
+ case 14: return new CWE(getMessage());
+ case 15: return new XPN(getMessage());
+ case 16: return new CWE(getMessage());
+ case 17: return new DTM(getMessage());
+ case 18: return new XAD(getMessage());
+ case 19: return new CWE(getMessage());
+ case 20: return new CWE(getMessage());
+ case 21: return new ST(getMessage());
+ case 22: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 23: return new DT(getMessage());
+ case 24: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 25: return new DT(getMessage());
+ case 26: return new CWE(getMessage());
+ case 27: return new ST(getMessage());
+ case 28: return new DTM(getMessage());
+ case 29: return new XCN(getMessage());
+ case 30: return new CWE(getMessage());
+ case 31: return new CWE(getMessage());
+ case 32: return new NM(getMessage());
+ case 33: return new NM(getMessage());
+ case 34: return new CWE(getMessage());
+ case 35: return new ST(getMessage());
+ case 36: return new CP(getMessage());
+ case 37: return new CP(getMessage());
+ case 38: return new NM(getMessage());
+ case 39: return new CP(getMessage());
+ case 40: return new CP(getMessage());
+ case 41: return new CWE(getMessage());
+ case 42: return new CWE(getMessage());
+ case 43: return new XAD(getMessage());
+ case 44: return new ST(getMessage());
+ case 45: return new CWE(getMessage());
+ case 46: return new CWE(getMessage());
+ case 47: return new CWE(getMessage());
+ case 48: return new CX(getMessage());
+ case 49: return new CWE(getMessage());
+ case 50: return new DT(getMessage());
+ case 51: return new ST(getMessage());
+ case 52: return new CWE(getMessage());
+ case 53: return new CX(getMessage());
+ case 54: return new ID(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java
new file mode 100644
index 00000000000..102be847e20
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/IN3.java
@@ -0,0 +1,1415 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 IN3 message segment (Insurance Additional Information, Certification).
+ * This segment has the following fields:
+ *
+ * - IN3-1: Set ID - IN3 (SI)
+ *
- IN3-2: Certification Number (CX) optional
+ *
- IN3-3: Certified By (XCN) optional repeating
+ *
- IN3-4: Certification Required (ID) optional
+ *
- IN3-5: Penalty (MOP) optional
+ *
- IN3-6: Certification Date/Time (DTM) optional
+ *
- IN3-7: Certification Modify Date/Time (DTM) optional
+ *
- IN3-8: Operator (XCN) optional repeating
+ *
- IN3-9: Certification Begin Date (DT) optional
+ *
- IN3-10: Certification End Date (DT) optional
+ *
- IN3-11: Days (DTN) optional
+ *
- IN3-12: Non-Concur Code/Description (CWE) optional
+ *
- IN3-13: Non-Concur Effective Date/Time (DTM) optional
+ *
- IN3-14: Physician Reviewer (XCN) optional repeating
+ *
- IN3-15: Certification Contact (ST) optional
+ *
- IN3-16: Certification Contact Phone Number (XTN) optional repeating
+ *
- IN3-17: Appeal Reason (CWE) optional
+ *
- IN3-18: Certification Agency (CWE) optional
+ *
- IN3-19: Certification Agency Phone Number (XTN) optional repeating
+ *
- IN3-20: Pre-Certification Requirement (ICD) optional repeating
+ *
- IN3-21: Case Manager (ST) optional
+ *
- IN3-22: Second Opinion Date (DT) optional
+ *
- IN3-23: Second Opinion Status (CWE) optional
+ *
- IN3-24: Second Opinion Documentation Received (CWE) optional repeating
+ *
- IN3-25: Second Opinion Physician (XCN) optional repeating
+ *
- IN3-26: Certification Type (CWE) optional
+ *
- IN3-27: Certification Category (CWE) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class IN3 extends AbstractSegment {
+
+ /**
+ * Creates a new IN3 segment
+ */
+ public IN3(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, true, 1, 4, new Object[]{ getMessage() }, "Set ID - IN3");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Number");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Certified By");
+ this.add(ID.class, false, 1, 1, new Object[]{ getMessage(), Integer.valueOf(136) }, "Certification Required");
+ this.add(MOP.class, false, 1, 0, new Object[]{ getMessage() }, "Penalty");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Date/Time");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Modify Date/Time");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Operator");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Begin Date");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Certification End Date");
+ this.add(DTN.class, false, 1, 0, new Object[]{ getMessage() }, "Days");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Non-Concur Code/Description");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Non-Concur Effective Date/Time");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Physician Reviewer");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Contact");
+ this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Certification Contact Phone Number");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Appeal Reason");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Agency");
+ this.add(XTN.class, false, 0, 0, new Object[]{ getMessage() }, "Certification Agency Phone Number");
+ this.add(ICD.class, false, 0, 0, new Object[]{ getMessage() }, "Pre-Certification Requirement");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Case Manager");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Second Opinion Date");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Second Opinion Status");
+ this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Second Opinion Documentation Received");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Second Opinion Physician");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Type");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Certification Category");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating IN3 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-1: "Set ID - IN3" - creates it if necessary
+ */
+ public SI getSetIDIN3() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-1: "Set ID - IN3" - creates it if necessary
+ */
+ public SI getIn31_SetIDIN3() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-2: "Certification Number" - creates it if necessary
+ */
+ public CX getCertificationNumber() {
+ CX retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-2: "Certification Number" - creates it if necessary
+ */
+ public CX getIn32_CertificationNumber() {
+ CX retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certified By (IN3-3).
+ */
+ public XCN[] getCertifiedBy() {
+ XCN[] retVal = this.getTypedField(3, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certified By (IN3-3).
+ */
+ public XCN[] getIn33_CertifiedBy() {
+ XCN[] retVal = this.getTypedField(3, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Certified By (IN3-3).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getCertifiedByReps() {
+ return this.getReps(3);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-3: "Certified By" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getCertifiedBy(int rep) {
+ XCN retVal = this.getTypedField(3, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-3: "Certified By" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getIn33_CertifiedBy(int rep) {
+ XCN retVal = this.getTypedField(3, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Certified By (IN3-3).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn33_CertifiedByReps() {
+ return this.getReps(3);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-3: "Certified By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertCertifiedBy(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(3, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-3: "Certified By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertIn33_CertifiedBy(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(3, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-3: "Certified By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeCertifiedBy(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(3, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-3: "Certified By" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeIn33_CertifiedBy(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(3, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3-4: "Certification Required" - creates it if necessary
+ */
+ public ID getCertificationRequired() {
+ ID retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-4: "Certification Required" - creates it if necessary
+ */
+ public ID getIn34_CertificationRequired() {
+ ID retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-5: "Penalty" - creates it if necessary
+ */
+ public MOP getPenalty() {
+ MOP retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-5: "Penalty" - creates it if necessary
+ */
+ public MOP getIn35_Penalty() {
+ MOP retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-6: "Certification Date/Time" - creates it if necessary
+ */
+ public DTM getCertificationDateTime() {
+ DTM retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-6: "Certification Date/Time" - creates it if necessary
+ */
+ public DTM getIn36_CertificationDateTime() {
+ DTM retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-7: "Certification Modify Date/Time" - creates it if necessary
+ */
+ public DTM getCertificationModifyDateTime() {
+ DTM retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-7: "Certification Modify Date/Time" - creates it if necessary
+ */
+ public DTM getIn37_CertificationModifyDateTime() {
+ DTM retVal = this.getTypedField(7, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Operator (IN3-8).
+ */
+ public XCN[] getOperator() {
+ XCN[] retVal = this.getTypedField(8, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Operator (IN3-8).
+ */
+ public XCN[] getIn38_Operator() {
+ XCN[] retVal = this.getTypedField(8, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Operator (IN3-8).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getOperatorReps() {
+ return this.getReps(8);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-8: "Operator" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getOperator(int rep) {
+ XCN retVal = this.getTypedField(8, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-8: "Operator" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getIn38_Operator(int rep) {
+ XCN retVal = this.getTypedField(8, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Operator (IN3-8).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn38_OperatorReps() {
+ return this.getReps(8);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-8: "Operator" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertOperator(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(8, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-8: "Operator" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertIn38_Operator(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(8, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-8: "Operator" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeOperator(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(8, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-8: "Operator" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeIn38_Operator(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(8, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3-9: "Certification Begin Date" - creates it if necessary
+ */
+ public DT getCertificationBeginDate() {
+ DT retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-9: "Certification Begin Date" - creates it if necessary
+ */
+ public DT getIn39_CertificationBeginDate() {
+ DT retVal = this.getTypedField(9, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-10: "Certification End Date" - creates it if necessary
+ */
+ public DT getCertificationEndDate() {
+ DT retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-10: "Certification End Date" - creates it if necessary
+ */
+ public DT getIn310_CertificationEndDate() {
+ DT retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-11: "Days" - creates it if necessary
+ */
+ public DTN getDays() {
+ DTN retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-11: "Days" - creates it if necessary
+ */
+ public DTN getIn311_Days() {
+ DTN retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-12: "Non-Concur Code/Description" - creates it if necessary
+ */
+ public CWE getNonConcurCodeDescription() {
+ CWE retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-12: "Non-Concur Code/Description" - creates it if necessary
+ */
+ public CWE getIn312_NonConcurCodeDescription() {
+ CWE retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-13: "Non-Concur Effective Date/Time" - creates it if necessary
+ */
+ public DTM getNonConcurEffectiveDateTime() {
+ DTM retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-13: "Non-Concur Effective Date/Time" - creates it if necessary
+ */
+ public DTM getIn313_NonConcurEffectiveDateTime() {
+ DTM retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Physician Reviewer (IN3-14).
+ */
+ public XCN[] getPhysicianReviewer() {
+ XCN[] retVal = this.getTypedField(14, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Physician Reviewer (IN3-14).
+ */
+ public XCN[] getIn314_PhysicianReviewer() {
+ XCN[] retVal = this.getTypedField(14, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Physician Reviewer (IN3-14).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPhysicianReviewerReps() {
+ return this.getReps(14);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-14: "Physician Reviewer" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPhysicianReviewer(int rep) {
+ XCN retVal = this.getTypedField(14, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-14: "Physician Reviewer" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getIn314_PhysicianReviewer(int rep) {
+ XCN retVal = this.getTypedField(14, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Physician Reviewer (IN3-14).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn314_PhysicianReviewerReps() {
+ return this.getReps(14);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-14: "Physician Reviewer" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPhysicianReviewer(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(14, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-14: "Physician Reviewer" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertIn314_PhysicianReviewer(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(14, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-14: "Physician Reviewer" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePhysicianReviewer(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(14, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-14: "Physician Reviewer" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeIn314_PhysicianReviewer(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(14, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3-15: "Certification Contact" - creates it if necessary
+ */
+ public ST getCertificationContact() {
+ ST retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-15: "Certification Contact" - creates it if necessary
+ */
+ public ST getIn315_CertificationContact() {
+ ST retVal = this.getTypedField(15, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certification Contact Phone Number (IN3-16).
+ */
+ public XTN[] getCertificationContactPhoneNumber() {
+ XTN[] retVal = this.getTypedField(16, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certification Contact Phone Number (IN3-16).
+ */
+ public XTN[] getIn316_CertificationContactPhoneNumber() {
+ XTN[] retVal = this.getTypedField(16, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Certification Contact Phone Number (IN3-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getCertificationContactPhoneNumberReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-16: "Certification Contact Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getCertificationContactPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-16: "Certification Contact Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getIn316_CertificationContactPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(16, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Certification Contact Phone Number (IN3-16).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn316_CertificationContactPhoneNumberReps() {
+ return this.getReps(16);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-16: "Certification Contact Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertCertificationContactPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-16: "Certification Contact Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertIn316_CertificationContactPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-16: "Certification Contact Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeCertificationContactPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(16, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-16: "Certification Contact Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeIn316_CertificationContactPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(16, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3-17: "Appeal Reason" - creates it if necessary
+ */
+ public CWE getAppealReason() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-17: "Appeal Reason" - creates it if necessary
+ */
+ public CWE getIn317_AppealReason() {
+ CWE retVal = this.getTypedField(17, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-18: "Certification Agency" - creates it if necessary
+ */
+ public CWE getCertificationAgency() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-18: "Certification Agency" - creates it if necessary
+ */
+ public CWE getIn318_CertificationAgency() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certification Agency Phone Number (IN3-19).
+ */
+ public XTN[] getCertificationAgencyPhoneNumber() {
+ XTN[] retVal = this.getTypedField(19, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Certification Agency Phone Number (IN3-19).
+ */
+ public XTN[] getIn319_CertificationAgencyPhoneNumber() {
+ XTN[] retVal = this.getTypedField(19, new XTN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Certification Agency Phone Number (IN3-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getCertificationAgencyPhoneNumberReps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-19: "Certification Agency Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getCertificationAgencyPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-19: "Certification Agency Phone Number" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XTN getIn319_CertificationAgencyPhoneNumber(int rep) {
+ XTN retVal = this.getTypedField(19, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Certification Agency Phone Number (IN3-19).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn319_CertificationAgencyPhoneNumberReps() {
+ return this.getReps(19);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-19: "Certification Agency Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertCertificationAgencyPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-19: "Certification Agency Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN insertIn319_CertificationAgencyPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.insertRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-19: "Certification Agency Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeCertificationAgencyPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(19, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-19: "Certification Agency Phone Number" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XTN removeIn319_CertificationAgencyPhoneNumber(int rep) throws HL7Exception {
+ return (XTN) super.removeRepetition(19, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Pre-Certification Requirement (IN3-20).
+ */
+ public ICD[] getPreCertificationRequirement() {
+ ICD[] retVal = this.getTypedField(20, new ICD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Pre-Certification Requirement (IN3-20).
+ */
+ public ICD[] getIn320_PreCertificationRequirement() {
+ ICD[] retVal = this.getTypedField(20, new ICD[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Pre-Certification Requirement (IN3-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPreCertificationRequirementReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-20: "Pre-Certification Requirement" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public ICD getPreCertificationRequirement(int rep) {
+ ICD retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-20: "Pre-Certification Requirement" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public ICD getIn320_PreCertificationRequirement(int rep) {
+ ICD retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Pre-Certification Requirement (IN3-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn320_PreCertificationRequirementReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-20: "Pre-Certification Requirement" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ICD insertPreCertificationRequirement(int rep) throws HL7Exception {
+ return (ICD) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-20: "Pre-Certification Requirement" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ICD insertIn320_PreCertificationRequirement(int rep) throws HL7Exception {
+ return (ICD) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-20: "Pre-Certification Requirement" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ICD removePreCertificationRequirement(int rep) throws HL7Exception {
+ return (ICD) super.removeRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-20: "Pre-Certification Requirement" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public ICD removeIn320_PreCertificationRequirement(int rep) throws HL7Exception {
+ return (ICD) super.removeRepetition(20, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * IN3-21: "Case Manager" - creates it if necessary
+ */
+ public ST getCaseManager() {
+ ST retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-21: "Case Manager" - creates it if necessary
+ */
+ public ST getIn321_CaseManager() {
+ ST retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-22: "Second Opinion Date" - creates it if necessary
+ */
+ public DT getSecondOpinionDate() {
+ DT retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-22: "Second Opinion Date" - creates it if necessary
+ */
+ public DT getIn322_SecondOpinionDate() {
+ DT retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * IN3-23: "Second Opinion Status" - creates it if necessary
+ */
+ public CWE getSecondOpinionStatus() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-23: "Second Opinion Status" - creates it if necessary
+ */
+ public CWE getIn323_SecondOpinionStatus() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Second Opinion Documentation Received (IN3-24).
+ */
+ public CWE[] getSecondOpinionDocumentationReceived() {
+ CWE[] retVal = this.getTypedField(24, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Second Opinion Documentation Received (IN3-24).
+ */
+ public CWE[] getIn324_SecondOpinionDocumentationReceived() {
+ CWE[] retVal = this.getTypedField(24, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Second Opinion Documentation Received (IN3-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getSecondOpinionDocumentationReceivedReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-24: "Second Opinion Documentation Received" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getSecondOpinionDocumentationReceived(int rep) {
+ CWE retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-24: "Second Opinion Documentation Received" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getIn324_SecondOpinionDocumentationReceived(int rep) {
+ CWE retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Second Opinion Documentation Received (IN3-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn324_SecondOpinionDocumentationReceivedReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-24: "Second Opinion Documentation Received" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertSecondOpinionDocumentationReceived(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-24: "Second Opinion Documentation Received" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertIn324_SecondOpinionDocumentationReceived(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-24: "Second Opinion Documentation Received" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeSecondOpinionDocumentationReceived(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-24: "Second Opinion Documentation Received" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeIn324_SecondOpinionDocumentationReceived(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(24, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Second Opinion Physician (IN3-25).
+ */
+ public XCN[] getSecondOpinionPhysician() {
+ XCN[] retVal = this.getTypedField(25, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Second Opinion Physician (IN3-25).
+ */
+ public XCN[] getIn325_SecondOpinionPhysician() {
+ XCN[] retVal = this.getTypedField(25, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Second Opinion Physician (IN3-25).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getSecondOpinionPhysicianReps() {
+ return this.getReps(25);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * IN3-25: "Second Opinion Physician" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getSecondOpinionPhysician(int rep) {
+ XCN retVal = this.getTypedField(25, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * IN3-25: "Second Opinion Physician" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getIn325_SecondOpinionPhysician(int rep) {
+ XCN retVal = this.getTypedField(25, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Second Opinion Physician (IN3-25).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getIn325_SecondOpinionPhysicianReps() {
+ return this.getReps(25);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-25: "Second Opinion Physician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertSecondOpinionPhysician(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(25, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * IN3-25: "Second Opinion Physician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertIn325_SecondOpinionPhysician(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(25, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-25: "Second Opinion Physician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeSecondOpinionPhysician(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(25, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * IN3-25: "Second Opinion Physician" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeIn325_SecondOpinionPhysician(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(25, rep);
+ }
+
+
+ /**
+ * Returns
+ * IN3-26: "Certification Type" - creates it if necessary
+ */
+ public CWE getCertificationType() {
+ CWE retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-26: "Certification Type" - creates it if necessary
+ */
+ public CWE getIn326_CertificationType() {
+ CWE retVal = this.getTypedField(26, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns
+ * IN3-27: "Certification Category" - creates it if necessary
+ */
+ public CWE getCertificationCategory() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * IN3-27: "Certification Category" - creates it if necessary
+ */
+ public CWE getIn327_CertificationCategory() {
+ CWE retVal = this.getTypedField(27, 0);
+ return retVal;
+ }
+
+
+
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new CX(getMessage());
+ case 2: return new XCN(getMessage());
+ case 3: return new ID(getMessage(), Integer.valueOf( 136 ));
+ case 4: return new MOP(getMessage());
+ case 5: return new DTM(getMessage());
+ case 6: return new DTM(getMessage());
+ case 7: return new XCN(getMessage());
+ case 8: return new DT(getMessage());
+ case 9: return new DT(getMessage());
+ case 10: return new DTN(getMessage());
+ case 11: return new CWE(getMessage());
+ case 12: return new DTM(getMessage());
+ case 13: return new XCN(getMessage());
+ case 14: return new ST(getMessage());
+ case 15: return new XTN(getMessage());
+ case 16: return new CWE(getMessage());
+ case 17: return new CWE(getMessage());
+ case 18: return new XTN(getMessage());
+ case 19: return new ICD(getMessage());
+ case 20: return new ST(getMessage());
+ case 21: return new DT(getMessage());
+ case 22: return new CWE(getMessage());
+ case 23: return new CWE(getMessage());
+ case 24: return new XCN(getMessage());
+ case 25: return new CWE(getMessage());
+ case 26: return new CWE(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java
index 62cadcc8df1..a0fdba7704a 100644
--- a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/NTE.java
@@ -72,7 +72,7 @@ public NTE(Group parent, ModelClassFactory factory) {
private void init(ModelClassFactory factory) {
try {
this.add(SI.class, false, 1, 0, new Object[]{getMessage()}, "Set ID - NTE");
- this.add(ID.class, false, 1, 1, new Object[]{getMessage(), Integer.valueOf(105)}, "Source of Comment");
+ this.add(ID.class, false, 1, 0, new Object[]{getMessage(), Integer.valueOf(105)}, "Source of Comment");
this.add(FT.class, false, 0, 0, new Object[]{getMessage()}, "Comment");
this.add(CWE.class, false, 1, 0, new Object[]{getMessage()}, "Comment Type");
this.add(XCN.class, false, 1, 0, new Object[]{getMessage()}, "Entered By");
diff --git a/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java
new file mode 100644
index 00000000000..ce8e9a2827e
--- /dev/null
+++ b/prime-router/src/main/java/fhirengine/translation/hl7/structures/fhirinventory/segment/PV1.java
@@ -0,0 +1,2395 @@
+/*
+ * This class is an auto-generated source file for a HAPI
+ * HL7 v2.x standard structure class.
+ *
+ * For more information, visit: http://hl7api.sourceforge.net/
+ *
+ * The contents of this file are subject to the Mozilla Public License Version 1.1
+ * (the "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at http://www.mozilla.org/MPL/
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
+ * specific language governing rights and limitations under the License.
+ *
+ * The Original Code is "[file_name]". Description:
+ * "[one_line_description]"
+ *
+ * The Initial Developer of the Original Code is University Health Network. Copyright (C)
+ * 2012. All Rights Reserved.
+ *
+ * Contributor(s): ______________________________________.
+ *
+ * Alternatively, the contents of this file may be used under the terms of the
+ * GNU General Public License (the "GPL"), in which case the provisions of the GPL are
+ * applicable instead of those above. If you wish to allow use of your version of this
+ * file only under the terms of the GPL and not to allow others to use your version
+ * of this file under the MPL, indicate your decision by deleting the provisions above
+ * and replace them with the notice and other provisions required by the GPL License.
+ * If you do not delete the provisions above, a recipient may use your version of
+ * this file under either the MPL or the GPL.
+ *
+ */
+
+
+package fhirengine.translation.hl7.structures.fhirinventory.segment;
+
+// import ca.uhn.hl7v2.model.v27.group.*;
+import ca.uhn.hl7v2.model.v27.datatype.*;
+import ca.uhn.hl7v2.HL7Exception;
+import ca.uhn.hl7v2.parser.ModelClassFactory;
+import ca.uhn.hl7v2.parser.DefaultModelClassFactory;
+import ca.uhn.hl7v2.model.AbstractMessage;
+import ca.uhn.hl7v2.model.Group;
+import ca.uhn.hl7v2.model.Type;
+import ca.uhn.hl7v2.model.AbstractSegment;
+import ca.uhn.hl7v2.model.Varies;
+
+
+/**
+ *Represents an HL7 PV1 message segment (Patient Visit).
+ * This segment has the following fields:
+ *
+ * - PV1-1: Set ID - PV1 (SI) optional
+ *
- PV1-2: Patient Class (CWE)
+ *
- PV1-3: Assigned Patient Location (PL) optional
+ *
- PV1-4: Admission Type (CWE) optional
+ *
- PV1-5: Preadmit Number (CX) optional
+ *
- PV1-6: Prior Patient Location (PL) optional
+ *
- PV1-7: Attending Doctor (XCN) optional repeating
+ *
- PV1-8: Referring Doctor (XCN) optional repeating
+ *
- PV1-9: Consulting Doctor (XCN) optional repeating
+ *
- PV1-10: Hospital Service (CWE) optional
+ *
- PV1-11: Temporary Location (PL) optional
+ *
- PV1-12: Preadmit Test Indicator (CWE) optional
+ *
- PV1-13: Re-admission Indicator (CWE) optional
+ *
- PV1-14: Admit Source (CWE) optional
+ *
- PV1-15: Ambulatory Status (CWE) optional repeating
+ *
- PV1-16: VIP Indicator (CWE) optional
+ *
- PV1-17: Admitting Doctor (XCN) optional repeating
+ *
- PV1-18: Patient Type (CWE) optional
+ *
- PV1-19: Visit Number (CX) optional
+ *
- PV1-20: Financial Class (FC) optional repeating
+ *
- PV1-21: Charge Price Indicator (CWE) optional
+ *
- PV1-22: Courtesy Code (CWE) optional
+ *
- PV1-23: Credit Rating (CWE) optional
+ *
- PV1-24: Contract Code (CWE) optional repeating
+ *
- PV1-25: Contract Effective Date (DT) optional repeating
+ *
- PV1-26: Contract Amount (NM) optional repeating
+ *
- PV1-27: Contract Period (NM) optional repeating
+ *
- PV1-28: Interest Code (CWE) optional
+ *
- PV1-29: Transfer to Bad Debt Code (CWE) optional
+ *
- PV1-30: Transfer to Bad Debt Date (DT) optional
+ *
- PV1-31: Bad Debt Agency Code (CWE) optional
+ *
- PV1-32: Bad Debt Transfer Amount (NM) optional
+ *
- PV1-33: Bad Debt Recovery Amount (NM) optional
+ *
- PV1-34: Delete Account Indicator (CWE) optional
+ *
- PV1-35: Delete Account Date (DT) optional
+ *
- PV1-36: Discharge Disposition (CWE) optional
+ *
- PV1-37: Discharged to Location (DLD) optional
+ *
- PV1-38: Diet Type (CWE) optional
+ *
- PV1-39: Servicing Facility (CWE) optional
+ *
- PV1-40: Bed Status (CWE) optional
+ *
- PV1-41: Account Status (CWE) optional
+ *
- PV1-42: Pending Location (PL) optional
+ *
- PV1-43: Prior Temporary Location (PL) optional
+ *
- PV1-44: Admit Date/Time (DTM) optional
+ *
- PV1-45: Discharge Date/Time (DTM) optional repeating
+ *
- PV1-46: Current Patient Balance (NM) optional
+ *
- PV1-47: Total Charges (NM) optional
+ *
- PV1-48: Total Adjustments (NM) optional
+ *
- PV1-49: Total Payments (NM) optional
+ *
- PV1-50: Alternate Visit ID (CX) optional
+ *
- PV1-51: Visit Indicator (CWE) optional
+ *
- PV1-52: Other Healthcare Provider (XCN) optional repeating
+ *
- PV1-53: Service Episode Description (ST) optional
+ *
- PV1-54: Service Episode Identifier (CX) optional
+ *
+ */
+@SuppressWarnings("unused")
+public class PV1 extends AbstractSegment {
+
+ /**
+ * Creates a new PV1 segment
+ */
+ public PV1(Group parent, ModelClassFactory factory) {
+ super(parent, factory);
+ init(factory);
+ }
+
+ private void init(ModelClassFactory factory) {
+ try {
+ this.add(SI.class, false, 1, 4, new Object[]{ getMessage() }, "Set ID - PV1");
+ this.add(CWE.class, true, 1, 0, new Object[]{ getMessage() }, "Patient Class");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Assigned Patient Location");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Admission Type");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Preadmit Number");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Patient Location");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Attending Doctor");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Referring Doctor");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Consulting Doctor");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Hospital Service");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Temporary Location");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Preadmit Test Indicator");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Re-admission Indicator");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Admit Source");
+ this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Ambulatory Status");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "VIP Indicator");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Admitting Doctor");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Patient Type");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Visit Number");
+ this.add(FC.class, false, 0, 0, new Object[]{ getMessage() }, "Financial Class");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Charge Price Indicator");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Courtesy Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Credit Rating");
+ this.add(CWE.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Code");
+ this.add(DT.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Effective Date");
+ this.add(NM.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Amount");
+ this.add(NM.class, false, 0, 0, new Object[]{ getMessage() }, "Contract Period");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Interest Code");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Transfer to Bad Debt Code");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Transfer to Bad Debt Date");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Agency Code");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Transfer Amount");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Bad Debt Recovery Amount");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Delete Account Indicator");
+ this.add(DT.class, false, 1, 0, new Object[]{ getMessage() }, "Delete Account Date");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Discharge Disposition");
+ this.add(DLD.class, false, 1, 0, new Object[]{ getMessage() }, "Discharged to Location");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Diet Type");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Servicing Facility");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Bed Status");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Account Status");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Pending Location");
+ this.add(PL.class, false, 1, 0, new Object[]{ getMessage() }, "Prior Temporary Location");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Admit Date/Time");
+ this.add(DTM.class, false, 1, 0, new Object[]{ getMessage() }, "Discharge Date/Time");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Current Patient Balance");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Charges");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Adjustments");
+ this.add(NM.class, false, 1, 0, new Object[]{ getMessage() }, "Total Payments");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Alternate Visit ID");
+ this.add(CWE.class, false, 1, 0, new Object[]{ getMessage() }, "Visit Indicator");
+ this.add(XCN.class, false, 0, 0, new Object[]{ getMessage() }, "Other Healthcare Provider");
+ this.add(ST.class, false, 1, 0, new Object[]{ getMessage() }, "Service Episode Description");
+ this.add(CX.class, false, 1, 0, new Object[]{ getMessage() }, "Service Episode Identifier");
+ } catch(HL7Exception e) {
+ log.error("Unexpected error creating PV1 - this is probably a bug in the source code generator.", e);
+ }
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-1: "Set ID - PV1" - creates it if necessary
+ */
+ public SI getSetIDPV1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-1: "Set ID - PV1" - creates it if necessary
+ */
+ public SI getPv11_SetIDPV1() {
+ SI retVal = this.getTypedField(1, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-2: "Patient Class" - creates it if necessary
+ */
+ public CWE getPatientClass() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-2: "Patient Class" - creates it if necessary
+ */
+ public CWE getPv12_PatientClass() {
+ CWE retVal = this.getTypedField(2, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-3: "Assigned Patient Location" - creates it if necessary
+ */
+ public PL getAssignedPatientLocation() {
+ PL retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-3: "Assigned Patient Location" - creates it if necessary
+ */
+ public PL getPv13_AssignedPatientLocation() {
+ PL retVal = this.getTypedField(3, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-4: "Admission Type" - creates it if necessary
+ */
+ public CWE getAdmissionType() {
+ CWE retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-4: "Admission Type" - creates it if necessary
+ */
+ public CWE getPv14_AdmissionType() {
+ CWE retVal = this.getTypedField(4, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-5: "Preadmit Number" - creates it if necessary
+ */
+ public CX getPreadmitNumber() {
+ CX retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-5: "Preadmit Number" - creates it if necessary
+ */
+ public CX getPv15_PreadmitNumber() {
+ CX retVal = this.getTypedField(5, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-6: "Prior Patient Location" - creates it if necessary
+ */
+ public PL getPriorPatientLocation() {
+ PL retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-6: "Prior Patient Location" - creates it if necessary
+ */
+ public PL getPv16_PriorPatientLocation() {
+ PL retVal = this.getTypedField(6, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Attending Doctor (PV1-7).
+ */
+ public XCN[] getAttendingDoctor() {
+ XCN[] retVal = this.getTypedField(7, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Attending Doctor (PV1-7).
+ */
+ public XCN[] getPv17_AttendingDoctor() {
+ XCN[] retVal = this.getTypedField(7, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Attending Doctor (PV1-7).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getAttendingDoctorReps() {
+ return this.getReps(7);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-7: "Attending Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getAttendingDoctor(int rep) {
+ XCN retVal = this.getTypedField(7, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-7: "Attending Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPv17_AttendingDoctor(int rep) {
+ XCN retVal = this.getTypedField(7, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Attending Doctor (PV1-7).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv17_AttendingDoctorReps() {
+ return this.getReps(7);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-7: "Attending Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertAttendingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(7, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-7: "Attending Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPv17_AttendingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(7, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-7: "Attending Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeAttendingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(7, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-7: "Attending Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePv17_AttendingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(7, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Referring Doctor (PV1-8).
+ */
+ public XCN[] getReferringDoctor() {
+ XCN[] retVal = this.getTypedField(8, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Referring Doctor (PV1-8).
+ */
+ public XCN[] getPv18_ReferringDoctor() {
+ XCN[] retVal = this.getTypedField(8, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Referring Doctor (PV1-8).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getReferringDoctorReps() {
+ return this.getReps(8);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-8: "Referring Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getReferringDoctor(int rep) {
+ XCN retVal = this.getTypedField(8, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-8: "Referring Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPv18_ReferringDoctor(int rep) {
+ XCN retVal = this.getTypedField(8, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Referring Doctor (PV1-8).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv18_ReferringDoctorReps() {
+ return this.getReps(8);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-8: "Referring Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertReferringDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(8, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-8: "Referring Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPv18_ReferringDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(8, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-8: "Referring Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeReferringDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(8, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-8: "Referring Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePv18_ReferringDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(8, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Consulting Doctor (PV1-9).
+ */
+ public XCN[] getConsultingDoctor() {
+ XCN[] retVal = this.getTypedField(9, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Consulting Doctor (PV1-9).
+ */
+ public XCN[] getPv19_ConsultingDoctor() {
+ XCN[] retVal = this.getTypedField(9, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Consulting Doctor (PV1-9).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getConsultingDoctorReps() {
+ return this.getReps(9);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-9: "Consulting Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getConsultingDoctor(int rep) {
+ XCN retVal = this.getTypedField(9, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-9: "Consulting Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPv19_ConsultingDoctor(int rep) {
+ XCN retVal = this.getTypedField(9, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Consulting Doctor (PV1-9).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv19_ConsultingDoctorReps() {
+ return this.getReps(9);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-9: "Consulting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertConsultingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(9, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-9: "Consulting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPv19_ConsultingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(9, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-9: "Consulting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeConsultingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(9, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-9: "Consulting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePv19_ConsultingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(9, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV1-10: "Hospital Service" - creates it if necessary
+ */
+ public CWE getHospitalService() {
+ CWE retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-10: "Hospital Service" - creates it if necessary
+ */
+ public CWE getPv110_HospitalService() {
+ CWE retVal = this.getTypedField(10, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-11: "Temporary Location" - creates it if necessary
+ */
+ public PL getTemporaryLocation() {
+ PL retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-11: "Temporary Location" - creates it if necessary
+ */
+ public PL getPv111_TemporaryLocation() {
+ PL retVal = this.getTypedField(11, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-12: "Preadmit Test Indicator" - creates it if necessary
+ */
+ public CWE getPreadmitTestIndicator() {
+ CWE retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-12: "Preadmit Test Indicator" - creates it if necessary
+ */
+ public CWE getPv112_PreadmitTestIndicator() {
+ CWE retVal = this.getTypedField(12, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-13: "Re-admission Indicator" - creates it if necessary
+ */
+ public CWE getReAdmissionIndicator() {
+ CWE retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-13: "Re-admission Indicator" - creates it if necessary
+ */
+ public CWE getPv113_ReAdmissionIndicator() {
+ CWE retVal = this.getTypedField(13, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-14: "Admit Source" - creates it if necessary
+ */
+ public CWE getAdmitSource() {
+ CWE retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-14: "Admit Source" - creates it if necessary
+ */
+ public CWE getPv114_AdmitSource() {
+ CWE retVal = this.getTypedField(14, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Ambulatory Status (PV1-15).
+ */
+ public CWE[] getAmbulatoryStatus() {
+ CWE[] retVal = this.getTypedField(15, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Ambulatory Status (PV1-15).
+ */
+ public CWE[] getPv115_AmbulatoryStatus() {
+ CWE[] retVal = this.getTypedField(15, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Ambulatory Status (PV1-15).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getAmbulatoryStatusReps() {
+ return this.getReps(15);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-15: "Ambulatory Status" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getAmbulatoryStatus(int rep) {
+ CWE retVal = this.getTypedField(15, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-15: "Ambulatory Status" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getPv115_AmbulatoryStatus(int rep) {
+ CWE retVal = this.getTypedField(15, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Ambulatory Status (PV1-15).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv115_AmbulatoryStatusReps() {
+ return this.getReps(15);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-15: "Ambulatory Status" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertAmbulatoryStatus(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(15, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-15: "Ambulatory Status" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertPv115_AmbulatoryStatus(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(15, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-15: "Ambulatory Status" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeAmbulatoryStatus(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(15, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-15: "Ambulatory Status" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removePv115_AmbulatoryStatus(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(15, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV1-16: "VIP Indicator" - creates it if necessary
+ */
+ public CWE getVIPIndicator() {
+ CWE retVal = this.getTypedField(16, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-16: "VIP Indicator" - creates it if necessary
+ */
+ public CWE getPv116_VIPIndicator() {
+ CWE retVal = this.getTypedField(16, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Admitting Doctor (PV1-17).
+ */
+ public XCN[] getAdmittingDoctor() {
+ XCN[] retVal = this.getTypedField(17, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Admitting Doctor (PV1-17).
+ */
+ public XCN[] getPv117_AdmittingDoctor() {
+ XCN[] retVal = this.getTypedField(17, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Admitting Doctor (PV1-17).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getAdmittingDoctorReps() {
+ return this.getReps(17);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-17: "Admitting Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getAdmittingDoctor(int rep) {
+ XCN retVal = this.getTypedField(17, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-17: "Admitting Doctor" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPv117_AdmittingDoctor(int rep) {
+ XCN retVal = this.getTypedField(17, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Admitting Doctor (PV1-17).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv117_AdmittingDoctorReps() {
+ return this.getReps(17);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-17: "Admitting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertAdmittingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(17, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-17: "Admitting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPv117_AdmittingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(17, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-17: "Admitting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeAdmittingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(17, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-17: "Admitting Doctor" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePv117_AdmittingDoctor(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(17, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV1-18: "Patient Type" - creates it if necessary
+ */
+ public CWE getPatientType() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-18: "Patient Type" - creates it if necessary
+ */
+ public CWE getPv118_PatientType() {
+ CWE retVal = this.getTypedField(18, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-19: "Visit Number" - creates it if necessary
+ */
+ public CX getVisitNumber() {
+ CX retVal = this.getTypedField(19, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-19: "Visit Number" - creates it if necessary
+ */
+ public CX getPv119_VisitNumber() {
+ CX retVal = this.getTypedField(19, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Financial Class (PV1-20).
+ */
+ public FC[] getFinancialClass() {
+ FC[] retVal = this.getTypedField(20, new FC[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Financial Class (PV1-20).
+ */
+ public FC[] getPv120_FinancialClass() {
+ FC[] retVal = this.getTypedField(20, new FC[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Financial Class (PV1-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getFinancialClassReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-20: "Financial Class" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public FC getFinancialClass(int rep) {
+ FC retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-20: "Financial Class" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public FC getPv120_FinancialClass(int rep) {
+ FC retVal = this.getTypedField(20, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Financial Class (PV1-20).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv120_FinancialClassReps() {
+ return this.getReps(20);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-20: "Financial Class" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public FC insertFinancialClass(int rep) throws HL7Exception {
+ return (FC) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-20: "Financial Class" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public FC insertPv120_FinancialClass(int rep) throws HL7Exception {
+ return (FC) super.insertRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-20: "Financial Class" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public FC removeFinancialClass(int rep) throws HL7Exception {
+ return (FC) super.removeRepetition(20, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-20: "Financial Class" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public FC removePv120_FinancialClass(int rep) throws HL7Exception {
+ return (FC) super.removeRepetition(20, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV1-21: "Charge Price Indicator" - creates it if necessary
+ */
+ public CWE getChargePriceIndicator() {
+ CWE retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-21: "Charge Price Indicator" - creates it if necessary
+ */
+ public CWE getPv121_ChargePriceIndicator() {
+ CWE retVal = this.getTypedField(21, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-22: "Courtesy Code" - creates it if necessary
+ */
+ public CWE getCourtesyCode() {
+ CWE retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-22: "Courtesy Code" - creates it if necessary
+ */
+ public CWE getPv122_CourtesyCode() {
+ CWE retVal = this.getTypedField(22, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-23: "Credit Rating" - creates it if necessary
+ */
+ public CWE getCreditRating() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-23: "Credit Rating" - creates it if necessary
+ */
+ public CWE getPv123_CreditRating() {
+ CWE retVal = this.getTypedField(23, 0);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Contract Code (PV1-24).
+ */
+ public CWE[] getContractCode() {
+ CWE[] retVal = this.getTypedField(24, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Contract Code (PV1-24).
+ */
+ public CWE[] getPv124_ContractCode() {
+ CWE[] retVal = this.getTypedField(24, new CWE[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Code (PV1-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getContractCodeReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-24: "Contract Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getContractCode(int rep) {
+ CWE retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-24: "Contract Code" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public CWE getPv124_ContractCode(int rep) {
+ CWE retVal = this.getTypedField(24, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Code (PV1-24).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv124_ContractCodeReps() {
+ return this.getReps(24);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-24: "Contract Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertContractCode(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-24: "Contract Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE insertPv124_ContractCode(int rep) throws HL7Exception {
+ return (CWE) super.insertRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-24: "Contract Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removeContractCode(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(24, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-24: "Contract Code" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public CWE removePv124_ContractCode(int rep) throws HL7Exception {
+ return (CWE) super.removeRepetition(24, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Contract Effective Date (PV1-25).
+ */
+ public DT[] getContractEffectiveDate() {
+ DT[] retVal = this.getTypedField(25, new DT[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Contract Effective Date (PV1-25).
+ */
+ public DT[] getPv125_ContractEffectiveDate() {
+ DT[] retVal = this.getTypedField(25, new DT[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Effective Date (PV1-25).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getContractEffectiveDateReps() {
+ return this.getReps(25);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-25: "Contract Effective Date" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public DT getContractEffectiveDate(int rep) {
+ DT retVal = this.getTypedField(25, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-25: "Contract Effective Date" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public DT getPv125_ContractEffectiveDate(int rep) {
+ DT retVal = this.getTypedField(25, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Effective Date (PV1-25).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv125_ContractEffectiveDateReps() {
+ return this.getReps(25);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-25: "Contract Effective Date" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DT insertContractEffectiveDate(int rep) throws HL7Exception {
+ return (DT) super.insertRepetition(25, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-25: "Contract Effective Date" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DT insertPv125_ContractEffectiveDate(int rep) throws HL7Exception {
+ return (DT) super.insertRepetition(25, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-25: "Contract Effective Date" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DT removeContractEffectiveDate(int rep) throws HL7Exception {
+ return (DT) super.removeRepetition(25, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-25: "Contract Effective Date" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DT removePv125_ContractEffectiveDate(int rep) throws HL7Exception {
+ return (DT) super.removeRepetition(25, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Contract Amount (PV1-26).
+ */
+ public NM[] getContractAmount() {
+ NM[] retVal = this.getTypedField(26, new NM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Contract Amount (PV1-26).
+ */
+ public NM[] getPv126_ContractAmount() {
+ NM[] retVal = this.getTypedField(26, new NM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Amount (PV1-26).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getContractAmountReps() {
+ return this.getReps(26);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-26: "Contract Amount" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public NM getContractAmount(int rep) {
+ NM retVal = this.getTypedField(26, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-26: "Contract Amount" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public NM getPv126_ContractAmount(int rep) {
+ NM retVal = this.getTypedField(26, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Amount (PV1-26).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv126_ContractAmountReps() {
+ return this.getReps(26);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-26: "Contract Amount" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM insertContractAmount(int rep) throws HL7Exception {
+ return (NM) super.insertRepetition(26, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-26: "Contract Amount" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM insertPv126_ContractAmount(int rep) throws HL7Exception {
+ return (NM) super.insertRepetition(26, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-26: "Contract Amount" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM removeContractAmount(int rep) throws HL7Exception {
+ return (NM) super.removeRepetition(26, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-26: "Contract Amount" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM removePv126_ContractAmount(int rep) throws HL7Exception {
+ return (NM) super.removeRepetition(26, rep);
+ }
+
+
+
+ /**
+ * Returns all repetitions of Contract Period (PV1-27).
+ */
+ public NM[] getContractPeriod() {
+ NM[] retVal = this.getTypedField(27, new NM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Contract Period (PV1-27).
+ */
+ public NM[] getPv127_ContractPeriod() {
+ NM[] retVal = this.getTypedField(27, new NM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Period (PV1-27).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getContractPeriodReps() {
+ return this.getReps(27);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-27: "Contract Period" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public NM getContractPeriod(int rep) {
+ NM retVal = this.getTypedField(27, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-27: "Contract Period" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public NM getPv127_ContractPeriod(int rep) {
+ NM retVal = this.getTypedField(27, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Contract Period (PV1-27).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv127_ContractPeriodReps() {
+ return this.getReps(27);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-27: "Contract Period" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM insertContractPeriod(int rep) throws HL7Exception {
+ return (NM) super.insertRepetition(27, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-27: "Contract Period" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM insertPv127_ContractPeriod(int rep) throws HL7Exception {
+ return (NM) super.insertRepetition(27, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-27: "Contract Period" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM removeContractPeriod(int rep) throws HL7Exception {
+ return (NM) super.removeRepetition(27, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-27: "Contract Period" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public NM removePv127_ContractPeriod(int rep) throws HL7Exception {
+ return (NM) super.removeRepetition(27, rep);
+ }
+
+
+
+
+ /**
+ * Returns
+ * PV1-28: "Interest Code" - creates it if necessary
+ */
+ public CWE getInterestCode() {
+ CWE retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-28: "Interest Code" - creates it if necessary
+ */
+ public CWE getPv128_InterestCode() {
+ CWE retVal = this.getTypedField(28, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-29: "Transfer to Bad Debt Code" - creates it if necessary
+ */
+ public CWE getTransferToBadDebtCode() {
+ CWE retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-29: "Transfer to Bad Debt Code" - creates it if necessary
+ */
+ public CWE getPv129_TransferToBadDebtCode() {
+ CWE retVal = this.getTypedField(29, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-30: "Transfer to Bad Debt Date" - creates it if necessary
+ */
+ public DT getTransferToBadDebtDate() {
+ DT retVal = this.getTypedField(30, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-30: "Transfer to Bad Debt Date" - creates it if necessary
+ */
+ public DT getPv130_TransferToBadDebtDate() {
+ DT retVal = this.getTypedField(30, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-31: "Bad Debt Agency Code" - creates it if necessary
+ */
+ public CWE getBadDebtAgencyCode() {
+ CWE retVal = this.getTypedField(31, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-31: "Bad Debt Agency Code" - creates it if necessary
+ */
+ public CWE getPv131_BadDebtAgencyCode() {
+ CWE retVal = this.getTypedField(31, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-32: "Bad Debt Transfer Amount" - creates it if necessary
+ */
+ public NM getBadDebtTransferAmount() {
+ NM retVal = this.getTypedField(32, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-32: "Bad Debt Transfer Amount" - creates it if necessary
+ */
+ public NM getPv132_BadDebtTransferAmount() {
+ NM retVal = this.getTypedField(32, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-33: "Bad Debt Recovery Amount" - creates it if necessary
+ */
+ public NM getBadDebtRecoveryAmount() {
+ NM retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-33: "Bad Debt Recovery Amount" - creates it if necessary
+ */
+ public NM getPv133_BadDebtRecoveryAmount() {
+ NM retVal = this.getTypedField(33, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-34: "Delete Account Indicator" - creates it if necessary
+ */
+ public CWE getDeleteAccountIndicator() {
+ CWE retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-34: "Delete Account Indicator" - creates it if necessary
+ */
+ public CWE getPv134_DeleteAccountIndicator() {
+ CWE retVal = this.getTypedField(34, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-35: "Delete Account Date" - creates it if necessary
+ */
+ public DT getDeleteAccountDate() {
+ DT retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-35: "Delete Account Date" - creates it if necessary
+ */
+ public DT getPv135_DeleteAccountDate() {
+ DT retVal = this.getTypedField(35, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-36: "Discharge Disposition" - creates it if necessary
+ */
+ public CWE getDischargeDisposition() {
+ CWE retVal = this.getTypedField(36, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-36: "Discharge Disposition" - creates it if necessary
+ */
+ public CWE getPv136_DischargeDisposition() {
+ CWE retVal = this.getTypedField(36, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-37: "Discharged to Location" - creates it if necessary
+ */
+ public DLD getDischargedToLocation() {
+ DLD retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-37: "Discharged to Location" - creates it if necessary
+ */
+ public DLD getPv137_DischargedToLocation() {
+ DLD retVal = this.getTypedField(37, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-38: "Diet Type" - creates it if necessary
+ */
+ public CWE getDietType() {
+ CWE retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-38: "Diet Type" - creates it if necessary
+ */
+ public CWE getPv138_DietType() {
+ CWE retVal = this.getTypedField(38, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-39: "Servicing Facility" - creates it if necessary
+ */
+ public CWE getServicingFacility() {
+ CWE retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-39: "Servicing Facility" - creates it if necessary
+ */
+ public CWE getPv139_ServicingFacility() {
+ CWE retVal = this.getTypedField(39, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-40: "Bed Status" - creates it if necessary
+ */
+ public CWE getBedStatus() {
+ CWE retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-40: "Bed Status" - creates it if necessary
+ */
+ public CWE getPv140_BedStatus() {
+ CWE retVal = this.getTypedField(40, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-41: "Account Status" - creates it if necessary
+ */
+ public CWE getAccountStatus() {
+ CWE retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-41: "Account Status" - creates it if necessary
+ */
+ public CWE getPv141_AccountStatus() {
+ CWE retVal = this.getTypedField(41, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-42: "Pending Location" - creates it if necessary
+ */
+ public PL getPendingLocation() {
+ PL retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-42: "Pending Location" - creates it if necessary
+ */
+ public PL getPv142_PendingLocation() {
+ PL retVal = this.getTypedField(42, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-43: "Prior Temporary Location" - creates it if necessary
+ */
+ public PL getPriorTemporaryLocation() {
+ PL retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-43: "Prior Temporary Location" - creates it if necessary
+ */
+ public PL getPv143_PriorTemporaryLocation() {
+ PL retVal = this.getTypedField(43, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-44: "Admit Date/Time" - creates it if necessary
+ */
+ public DTM getAdmitDateTime() {
+ DTM retVal = this.getTypedField(44, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-44: "Admit Date/Time" - creates it if necessary
+ */
+ public DTM getPv144_AdmitDateTime() {
+ DTM retVal = this.getTypedField(44, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns all repetitions of Discharge Date/Time (PV1-45).
+ */
+ public DTM[] getDischargeDateTime() {
+ DTM[] retVal = this.getTypedField(45, new DTM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Discharge Date/Time (PV1-45).
+ */
+ public DTM[] getPv145_DischargeDateTime() {
+ DTM[] retVal = this.getTypedField(45, new DTM[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Discharge Date/Time (PV1-45).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getDischargeDateTimeReps() {
+ return this.getReps(45);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-45: "Discharge Date/Time" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public DTM getDischargeDateTime(int rep) {
+ DTM retVal = this.getTypedField(45, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-45: "Discharge Date/Time" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public DTM getPv145_DischargeDateTime(int rep) {
+ DTM retVal = this.getTypedField(45, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Discharge Date/Time (PV1-45).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv145_DischargeDateTimeReps() {
+ return this.getReps(45);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-45: "Discharge Date/Time" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DTM insertDischargeDateTime(int rep) throws HL7Exception {
+ return (DTM) super.insertRepetition(45, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-45: "Discharge Date/Time" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DTM insertPv145_DischargeDateTime(int rep) throws HL7Exception {
+ return (DTM) super.insertRepetition(45, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-45: "Discharge Date/Time" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DTM removeDischargeDateTime(int rep) throws HL7Exception {
+ return (DTM) super.removeRepetition(45, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-45: "Discharge Date/Time" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public DTM removePv145_DischargeDateTime(int rep) throws HL7Exception {
+ return (DTM) super.removeRepetition(45, rep);
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-46: "Current Patient Balance" - creates it if necessary
+ */
+ public NM getCurrentPatientBalance() {
+ NM retVal = this.getTypedField(46, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-46: "Current Patient Balance" - creates it if necessary
+ */
+ public NM getPv146_CurrentPatientBalance() {
+ NM retVal = this.getTypedField(46, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-47: "Total Charges" - creates it if necessary
+ */
+ public NM getTotalCharges() {
+ NM retVal = this.getTypedField(47, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-47: "Total Charges" - creates it if necessary
+ */
+ public NM getPv147_TotalCharges() {
+ NM retVal = this.getTypedField(47, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-48: "Total Adjustments" - creates it if necessary
+ */
+ public NM getTotalAdjustments() {
+ NM retVal = this.getTypedField(48, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-48: "Total Adjustments" - creates it if necessary
+ */
+ public NM getPv148_TotalAdjustments() {
+ NM retVal = this.getTypedField(48, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-49: "Total Payments" - creates it if necessary
+ */
+ public NM getTotalPayments() {
+ NM retVal = this.getTypedField(49, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-49: "Total Payments" - creates it if necessary
+ */
+ public NM getPv149_TotalPayments() {
+ NM retVal = this.getTypedField(49, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-50: "Alternate Visit ID" - creates it if necessary
+ */
+ public CX getAlternateVisitID() {
+ CX retVal = this.getTypedField(50, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-50: "Alternate Visit ID" - creates it if necessary
+ */
+ public CX getPv150_AlternateVisitID() {
+ CX retVal = this.getTypedField(50, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-51: "Visit Indicator" - creates it if necessary
+ */
+ public CWE getVisitIndicator() {
+ CWE retVal = this.getTypedField(51, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-51: "Visit Indicator" - creates it if necessary
+ */
+ public CWE getPv151_VisitIndicator() {
+ CWE retVal = this.getTypedField(51, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns all repetitions of Other Healthcare Provider (PV1-52).
+ */
+ public XCN[] getOtherHealthcareProvider() {
+ XCN[] retVal = this.getTypedField(52, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns all repetitions of Other Healthcare Provider (PV1-52).
+ */
+ public XCN[] getPv152_OtherHealthcareProvider() {
+ XCN[] retVal = this.getTypedField(52, new XCN[0]);
+ return retVal;
+ }
+
+
+ /**
+ * Returns a count of the current number of repetitions of Other Healthcare Provider (PV1-52).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getOtherHealthcareProviderReps() {
+ return this.getReps(52);
+ }
+
+
+ /**
+ * Returns a specific repetition of
+ * PV1-52: "Other Healthcare Provider" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getOtherHealthcareProvider(int rep) {
+ XCN retVal = this.getTypedField(52, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a specific repetition of
+ * PV1-52: "Other Healthcare Provider" - creates it if necessary
+ *
+ * @param rep The repetition index (0-indexed)
+ */
+ public XCN getPv152_OtherHealthcareProvider(int rep) {
+ XCN retVal = this.getTypedField(52, rep);
+ return retVal;
+ }
+
+ /**
+ * Returns a count of the current number of repetitions of Other Healthcare Provider (PV1-52).
+ * This method does not create a repetition, so if no repetitions have currently been defined or accessed,
+ * it will return zero.
+ */
+ public int getPv152_OtherHealthcareProviderReps() {
+ return this.getReps(52);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-52: "Other Healthcare Provider" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertOtherHealthcareProvider(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(52, rep);
+ }
+
+
+ /**
+ * Inserts a repetition of
+ * PV1-52: "Other Healthcare Provider" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN insertPv152_OtherHealthcareProvider(int rep) throws HL7Exception {
+ return (XCN) super.insertRepetition(52, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-52: "Other Healthcare Provider" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removeOtherHealthcareProvider(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(52, rep);
+ }
+
+
+ /**
+ * Removes a repetition of
+ * PV1-52: "Other Healthcare Provider" at a specific index
+ *
+ * @param rep The repetition index (0-indexed)
+ * @throws HL7Exception If the rep is invalid (below 0, or too high for the allowable repetitions)
+ */
+ public XCN removePv152_OtherHealthcareProvider(int rep) throws HL7Exception {
+ return (XCN) super.removeRepetition(52, rep);
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-53: "Service Episode Description" - creates it if necessary
+ */
+ public ST getServiceEpisodeDescription() {
+ ST retVal = this.getTypedField(53, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-53: "Service Episode Description" - creates it if necessary
+ */
+ public ST getPv153_ServiceEpisodeDescription() {
+ ST retVal = this.getTypedField(53, 0);
+ return retVal;
+ }
+
+
+
+ /**
+ * Returns
+ * PV1-54: "Service Episode Identifier" - creates it if necessary
+ */
+ public CX getServiceEpisodeIdentifier() {
+ CX retVal = this.getTypedField(54, 0);
+ return retVal;
+ }
+
+ /**
+ * Returns
+ * PV1-54: "Service Episode Identifier" - creates it if necessary
+ */
+ public CX getPv154_ServiceEpisodeIdentifier() {
+ CX retVal = this.getTypedField(54, 0);
+ return retVal;
+ }
+
+
+
+
+
+ /** {@inheritDoc} */
+ protected Type createNewTypeWithoutReflection(int field) {
+ switch (field) {
+ case 0: return new SI(getMessage());
+ case 1: return new CWE(getMessage());
+ case 2: return new PL(getMessage());
+ case 3: return new CWE(getMessage());
+ case 4: return new CX(getMessage());
+ case 5: return new PL(getMessage());
+ case 6: return new XCN(getMessage());
+ case 7: return new XCN(getMessage());
+ case 8: return new XCN(getMessage());
+ case 9: return new CWE(getMessage());
+ case 10: return new PL(getMessage());
+ case 11: return new CWE(getMessage());
+ case 12: return new CWE(getMessage());
+ case 13: return new CWE(getMessage());
+ case 14: return new CWE(getMessage());
+ case 15: return new CWE(getMessage());
+ case 16: return new XCN(getMessage());
+ case 17: return new CWE(getMessage());
+ case 18: return new CX(getMessage());
+ case 19: return new FC(getMessage());
+ case 20: return new CWE(getMessage());
+ case 21: return new CWE(getMessage());
+ case 22: return new CWE(getMessage());
+ case 23: return new CWE(getMessage());
+ case 24: return new DT(getMessage());
+ case 25: return new NM(getMessage());
+ case 26: return new NM(getMessage());
+ case 27: return new CWE(getMessage());
+ case 28: return new CWE(getMessage());
+ case 29: return new DT(getMessage());
+ case 30: return new CWE(getMessage());
+ case 31: return new NM(getMessage());
+ case 32: return new NM(getMessage());
+ case 33: return new CWE(getMessage());
+ case 34: return new DT(getMessage());
+ case 35: return new CWE(getMessage());
+ case 36: return new DLD(getMessage());
+ case 37: return new CWE(getMessage());
+ case 38: return new CWE(getMessage());
+ case 39: return new CWE(getMessage());
+ case 40: return new CWE(getMessage());
+ case 41: return new PL(getMessage());
+ case 42: return new PL(getMessage());
+ case 43: return new DTM(getMessage());
+ case 44: return new DTM(getMessage());
+ case 45: return new NM(getMessage());
+ case 46: return new NM(getMessage());
+ case 47: return new NM(getMessage());
+ case 48: return new NM(getMessage());
+ case 49: return new CX(getMessage());
+ case 50: return new CWE(getMessage());
+ case 51: return new XCN(getMessage());
+ case 52: return new ST(getMessage());
+ case 53: return new CX(getMessage());
+ default: return null;
+ }
+ }
+
+
+}
+
diff --git a/prime-router/src/main/kotlin/Sender.kt b/prime-router/src/main/kotlin/Sender.kt
index bec1d3c62ea..47b3a4355cb 100644
--- a/prime-router/src/main/kotlin/Sender.kt
+++ b/prime-router/src/main/kotlin/Sender.kt
@@ -31,6 +31,7 @@ import java.time.OffsetDateTime
* @property allowDuplicates if false a duplicate submission will be rejected
* @property senderType one of four broad sender categories
* @property primarySubmissionMethod Sender preference for submission - manual or automatic
+ * @property hl7AcknowledgementEnabled should we return an HL7 ACK response if MSH.15 == "AL"?
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonTypeInfo(
@@ -59,6 +60,7 @@ abstract class Sender(
val allowDuplicates: Boolean = true,
val senderType: SenderType? = null,
val primarySubmissionMethod: PrimarySubmissionMethod? = null,
+ val hl7AcknowledgementEnabled: Boolean = false,
override var version: Int? = null,
override var createdBy: String? = null,
override var createdAt: OffsetDateTime? = null,
@@ -194,6 +196,7 @@ class UniversalPipelineSender : Sender {
allowDuplicates: Boolean = true,
senderType: SenderType? = null,
primarySubmissionMethod: PrimarySubmissionMethod? = null,
+ hl7AcknowledgementEnabled: Boolean = false,
topic: Topic,
) : super(
topic,
@@ -205,7 +208,8 @@ class UniversalPipelineSender : Sender {
processingType,
allowDuplicates,
senderType,
- primarySubmissionMethod
+ primarySubmissionMethod,
+ hl7AcknowledgementEnabled
)
constructor(copy: UniversalPipelineSender) : this(
@@ -214,6 +218,7 @@ class UniversalPipelineSender : Sender {
copy.format,
copy.customerStatus,
copy.schemaName,
+ hl7AcknowledgementEnabled = copy.hl7AcknowledgementEnabled,
topic = copy.topic,
)
diff --git a/prime-router/src/main/kotlin/azure/HttpUtilities.kt b/prime-router/src/main/kotlin/azure/HttpUtilities.kt
index a850ba02f59..9a8ae91165b 100644
--- a/prime-router/src/main/kotlin/azure/HttpUtilities.kt
+++ b/prime-router/src/main/kotlin/azure/HttpUtilities.kt
@@ -24,6 +24,7 @@ class HttpUtilities {
companion object : Logging {
const val jsonMediaType = "application/json"
const val fhirMediaType = "application/fhir+json"
+ const val hl7V2MediaType = "application/hl7-v2"
const val oldApi = "/api/reports"
const val watersApi = "/api/waters"
const val tokenApi = "/api/token"
@@ -434,6 +435,14 @@ class HttpUtilities {
return responseCode to response
}
}
+
+ /**
+ * Is status code 2xx?
+ */
+ fun HttpStatus.isSuccessful(): Boolean {
+ val status = this.value()
+ return status in 200..299
+ }
}
}
diff --git a/prime-router/src/main/kotlin/azure/ReportFunction.kt b/prime-router/src/main/kotlin/azure/ReportFunction.kt
index d923934848f..5f4d8bd0a69 100644
--- a/prime-router/src/main/kotlin/azure/ReportFunction.kt
+++ b/prime-router/src/main/kotlin/azure/ReportFunction.kt
@@ -5,7 +5,6 @@ import com.fasterxml.jackson.databind.SerializationFeature
import com.fasterxml.jackson.databind.json.JsonMapper
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule
import com.github.ajalt.clikt.core.CliktError
-import com.google.common.net.HttpHeaders
import com.microsoft.azure.functions.HttpMethod
import com.microsoft.azure.functions.HttpRequestMessage
import com.microsoft.azure.functions.HttpResponseMessage
@@ -36,11 +35,11 @@ import gov.cdc.prime.router.azure.observability.event.IReportStreamEventService
import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName
import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties
import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService
+import gov.cdc.prime.router.azure.service.SubmissionResponseBuilder
import gov.cdc.prime.router.cli.PIIRemovalCommands
import gov.cdc.prime.router.cli.ProcessFhirCommands
import gov.cdc.prime.router.common.AzureHttpUtils.getSenderIP
import gov.cdc.prime.router.common.Environment
-import gov.cdc.prime.router.common.JacksonMapperUtilities
import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder
import gov.cdc.prime.router.history.azure.SubmissionsFacade
import gov.cdc.prime.router.tokens.AuthenticatedClaims
@@ -68,13 +67,14 @@ class ReportFunction(
workflowEngine.azureEventService,
workflowEngine.reportService
),
+ private val submissionResponseBuilder: SubmissionResponseBuilder = SubmissionResponseBuilder(),
) : RequestFunction(workflowEngine),
Logging {
- enum class IngestionMethod {
- SFTP,
- REST,
- }
+ enum class IngestionMethod {
+ SFTP,
+ REST,
+ }
/**
* POST a report to the router
@@ -601,19 +601,12 @@ class ReportFunction(
SubmissionsFacade.instance.findDetailedSubmissionHistory(txn, null, actionHistory.action)
}
- val response = request.createResponseBuilder(httpStatus)
- .header(HttpHeaders.CONTENT_TYPE, "application/json")
- .body(
- JacksonMapperUtilities.allowUnknownsMapper
- .writeValueAsString(submission)
- )
- .header(
- HttpHeaders.LOCATION,
- request.uri.resolve(
- "/api/waters/report/${submission?.reportId}/history"
- ).toString()
- )
- .build()
+ val response = submissionResponseBuilder.buildResponse(
+ sender,
+ httpStatus,
+ request,
+ submission
+ )
// queue messages here after all task / action records are in
actionHistory.queueMessages(workflowEngine)
diff --git a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt
index 7596e10913f..d31404ebbe4 100644
--- a/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt
+++ b/prime-router/src/main/kotlin/azure/observability/event/ReportStreamEventData.kt
@@ -67,6 +67,9 @@ enum class ReportStreamEventProperties {
BUNDLE_DIGEST,
INGESTION_TYPE,
POISON_QUEUE_MESSAGE_ID,
+ ENRICHMENTS,
+ ORIGINAL_FORMAT,
+ TARGET_FORMAT,
;
@JsonKey
@@ -92,6 +95,7 @@ enum class ReportStreamEventName {
REPORT_NOT_PROCESSABLE,
ITEM_SENT,
PIPELINE_EXCEPTION,
+ ITEM_TRANSFORMED,
}
/**
diff --git a/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt b/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt
new file mode 100644
index 00000000000..c01f4a76fbc
--- /dev/null
+++ b/prime-router/src/main/kotlin/azure/service/SubmissionResponseBuilder.kt
@@ -0,0 +1,137 @@
+package gov.cdc.prime.router.azure.service
+
+import ca.uhn.hl7v2.model.Message
+import com.google.common.net.HttpHeaders
+import com.microsoft.azure.functions.HttpRequestMessage
+import com.microsoft.azure.functions.HttpResponseMessage
+import com.microsoft.azure.functions.HttpStatus
+import gov.cdc.prime.router.ActionLogger
+import gov.cdc.prime.router.Sender
+import gov.cdc.prime.router.azure.HttpUtilities
+import gov.cdc.prime.router.azure.HttpUtilities.Companion.isSuccessful
+import gov.cdc.prime.router.common.JacksonMapperUtilities
+import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7ACKUtils
+import gov.cdc.prime.router.fhirengine.utils.HL7Reader
+import gov.cdc.prime.router.history.DetailedSubmissionHistory
+import org.apache.logging.log4j.kotlin.Logging
+
+/**
+ * Builder class to create either JSON or HL7 response types based on the contents of the
+ * submitted reports
+ */
+class SubmissionResponseBuilder(
+ private val hL7ACKUtils: HL7ACKUtils = HL7ACKUtils(),
+) : Logging {
+
+ /**
+ * Builds a response to send to the client after submitting a report
+ *
+ * This will be an HL7 ACK response given the client has enabled it and requested it. It will otherwise
+ * default to our default JSON response
+ */
+ fun buildResponse(
+ sender: Sender,
+ responseStatus: HttpStatus,
+ request: HttpRequestMessage,
+ submission: DetailedSubmissionHistory?,
+ ): HttpResponseMessage {
+ // Azure handles all headers as lowercase
+ val contentType = request.headers[HttpHeaders.CONTENT_TYPE.lowercase()]
+ val requestBody = request.body
+ return when (val responseType = determineResponseType(sender, responseStatus, contentType, requestBody)) {
+ is HL7ResponseType -> {
+ logger.info("Returning ACK response")
+ val responseBody = hL7ACKUtils.generateOutgoingACKMessage(responseType.message)
+ request.createResponseBuilder(responseStatus)
+ .header(HttpHeaders.CONTENT_TYPE, HttpUtilities.hl7V2MediaType)
+ .body(responseBody)
+ .build()
+ }
+ is JsonResponseType -> {
+ val responseBody = JacksonMapperUtilities
+ .allowUnknownsMapper
+ .writeValueAsString(submission)
+ request
+ .createResponseBuilder(responseStatus)
+ .header(HttpHeaders.CONTENT_TYPE, HttpUtilities.jsonMediaType)
+ .body(responseBody)
+ .header(
+ HttpHeaders.LOCATION,
+ request.uri.resolve(
+ "/api/waters/report/${submission?.reportId}/history"
+ ).toString()
+ )
+ .build()
+ }
+ }
+ }
+
+ /**
+ * Figures out in what format we should respond to a submission with
+ *
+ * @return SubmissionResponseType the response type defined in this file
+ */
+ private fun determineResponseType(
+ sender: Sender,
+ responseStatus: HttpStatus,
+ contentType: String?,
+ requestBody: String?,
+ ): SubmissionResponseType {
+ val maybeACKMessage = hl7SuccessResponseRequired(sender, responseStatus, contentType, requestBody)
+ return when {
+ maybeACKMessage != null -> HL7ResponseType(maybeACKMessage)
+ else -> JsonResponseType
+ }
+ }
+
+ /**
+ * This function will return true if the following conditions are met:
+ * - The sender has the "hl7AcknowledgementEnabled" field set to true
+ * - The HL7 message has been processed successfully
+ * - The submitted HL7 contains MSH.15 == "AL"
+ * - The submitted HL7 is not a batch message
+ *
+ * @return HL7 message if ACK required or null otherwise
+ */
+ private fun hl7SuccessResponseRequired(
+ sender: Sender,
+ responseStatus: HttpStatus,
+ contentType: String?,
+ requestBody: String?,
+ ): Message? {
+ val acceptAcknowledgmentTypeRespondValues = setOf("AL") // AL means "Always"
+ return if (
+ sender.hl7AcknowledgementEnabled &&
+ responseStatus.isSuccessful() &&
+ contentType == HttpUtilities.hl7V2MediaType &&
+ requestBody != null
+ ) {
+ val hl7Reader = HL7Reader(ActionLogger())
+ val messages = hl7Reader.getMessages(requestBody)
+ val isBatch = hl7Reader.isBatch(requestBody, messages.size)
+
+ if (!isBatch && messages.size == 1) {
+ val message = messages.first()
+ val acceptAcknowledgementType = HL7Reader.getAcceptAcknowledgmentType(message)
+ val ackResponseRequired = acceptAcknowledgmentTypeRespondValues.contains(acceptAcknowledgementType)
+ if (ackResponseRequired) {
+ message
+ } else {
+ null
+ }
+ } else {
+ null
+ }
+ } else {
+ null
+ }
+ }
+}
+
+/**
+ * Rather than an enum, we have used a hierarchy that allows an HL7 response type to hold onto the already
+ * parsed message during our check of MSH.15 to avoid doing that work twice.
+ */
+private sealed interface SubmissionResponseType
+private data class HL7ResponseType(val message: Message) : SubmissionResponseType
+private data object JsonResponseType : SubmissionResponseType
\ No newline at end of file
diff --git a/prime-router/src/main/kotlin/common/Environment.kt b/prime-router/src/main/kotlin/common/Environment.kt
index 2cae4d3c817..012305920dd 100644
--- a/prime-router/src/main/kotlin/common/Environment.kt
+++ b/prime-router/src/main/kotlin/common/Environment.kt
@@ -103,12 +103,22 @@ enum class Environment(
/**
* Checks if the current environment is the local environment.
+ *
* @return true if local environment, false otherwise
*/
fun isLocal(): Boolean {
return get() == LOCAL
}
+ /**
+ * Checks if the current environment is the production environment.
+ *
+ * @return true if production environment, false otherwise
+ */
+ fun isProd(): Boolean {
+ return get() == PROD
+ }
+
/**
* Time zone to use for ReportStream. Note that Azure runs on UTC, so this forces our local runs to also be UTC.
*/
diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt
index d32ad4269c7..04cb5a563f1 100644
--- a/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt
+++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIREngine.kt
@@ -171,7 +171,7 @@ abstract class FHIREngine(
blobAccess ?: BlobAccess(),
azureEventService ?: AzureEventServiceImpl(),
reportService ?: ReportService(),
- ReportStreamEventService(
+ reportEventService ?: ReportStreamEventService(
databaseAccess ?: databaseAccessSingleton,
azureEventService ?: AzureEventServiceImpl(),
reportService ?: ReportService()
diff --git a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt
index 674ea533330..5364a806886 100644
--- a/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt
+++ b/prime-router/src/main/kotlin/fhirengine/engine/FHIRTranslator.kt
@@ -6,6 +6,7 @@ import ca.uhn.hl7v2.model.Segment
import ca.uhn.hl7v2.util.Terser
import fhirengine.engine.CustomFhirPathFunctions
import fhirengine.engine.CustomTranslationFunctions
+import gov.cdc.prime.reportstream.shared.BlobUtils
import gov.cdc.prime.reportstream.shared.QueueMessage
import gov.cdc.prime.router.ActionLogger
import gov.cdc.prime.router.CustomerStatus
@@ -21,16 +22,21 @@ import gov.cdc.prime.router.azure.DatabaseAccess
import gov.cdc.prime.router.azure.Event
import gov.cdc.prime.router.azure.db.Tables
import gov.cdc.prime.router.azure.db.enums.TaskAction
+import gov.cdc.prime.router.azure.observability.bundleDigest.BundleDigestExtractor
+import gov.cdc.prime.router.azure.observability.bundleDigest.FhirPathBundleDigestLabResultExtractorStrategy
import gov.cdc.prime.router.azure.observability.context.MDCUtils
import gov.cdc.prime.router.azure.observability.context.withLoggingContext
import gov.cdc.prime.router.azure.observability.event.AzureEventService
import gov.cdc.prime.router.azure.observability.event.AzureEventServiceImpl
import gov.cdc.prime.router.azure.observability.event.IReportStreamEventService
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties
import gov.cdc.prime.router.common.Environment
import gov.cdc.prime.router.fhirengine.config.HL7TranslationConfig
import gov.cdc.prime.router.fhirengine.translation.hl7.FhirToHl7Context
import gov.cdc.prime.router.fhirengine.translation.hl7.FhirToHl7Converter
import gov.cdc.prime.router.fhirengine.translation.hl7.FhirTransformer
+import gov.cdc.prime.router.fhirengine.translation.hl7.utils.CustomContext
import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7Utils.defaultHl7EncodingFiveChars
import gov.cdc.prime.router.fhirengine.translation.hl7.utils.HL7Utils.defaultHl7EncodingFourChars
import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder
@@ -113,12 +119,13 @@ class FHIRTranslator(
): FHIREngineRunResult {
logger.trace("Preparing to send original message")
val originalReport = reportService.getRootReport(message.reportId)
- val bodyBytes = BlobAccess.downloadBlobAsByteArray(originalReport.bodyUrl)
+ val bodyAsString =
+ BlobAccess.downloadBlob(originalReport.bodyUrl, BlobUtils.digestToString(originalReport.blobDigest))
// get a Report from the message
val (report, event, blobInfo) = Report.generateReportAndUploadBlob(
Event.EventAction.SEND,
- bodyBytes,
+ bodyAsString.toByteArray(),
listOf(message.reportId),
receiver,
this.metadata,
@@ -148,10 +155,9 @@ class FHIRTranslator(
actionHistory: ActionHistory,
): FHIREngineRunResult {
logger.trace("Preparing to send translated message")
- val bodyBytes =
- getByteArrayFromBundle(
- receiver, FhirTranscoder.decode(BlobAccess.downloadBlob(message.blobURL, message.digest))
- )
+ val originalReport = reportService.getRootReport(message.reportId)
+ val bundle = FhirTranscoder.decode(BlobAccess.downloadBlob(message.blobURL, message.digest))
+ val bodyBytes = getByteArrayFromBundle(receiver, bundle)
val (report, event, blobInfo) = Report.generateReportAndUploadBlob(
Event.EventAction.BATCH,
@@ -163,6 +169,35 @@ class FHIRTranslator(
topic = message.topic
)
+ val bundleDigestExtractor = BundleDigestExtractor(
+ FhirPathBundleDigestLabResultExtractorStrategy(
+ CustomContext(
+ bundle,
+ bundle,
+ mutableMapOf(),
+ CustomFhirPathFunctions()
+ )
+ )
+ )
+ reportEventService.sendItemEvent(
+ eventName = ReportStreamEventName.ITEM_TRANSFORMED,
+ childReport = report,
+ pipelineStepName = TaskAction.translate
+ ) {
+ parentReportId(message.reportId)
+ params(
+ mapOf(
+ ReportStreamEventProperties.RECEIVER_NAME to receiver.fullName,
+ ReportStreamEventProperties.BUNDLE_DIGEST
+ to bundleDigestExtractor.generateDigest(bundle),
+ ReportStreamEventProperties.ORIGINAL_FORMAT to originalReport.bodyFormat,
+ ReportStreamEventProperties.TARGET_FORMAT to receiver.translation.format.name,
+ ReportStreamEventProperties.ENRICHMENTS to listOf(receiver.translation.schemaName)
+ )
+ )
+ trackingId(bundle)
+ }
+
return FHIREngineRunResult(
event,
report,
diff --git a/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt b/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt
new file mode 100644
index 00000000000..57f6c632396
--- /dev/null
+++ b/prime-router/src/main/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtils.kt
@@ -0,0 +1,68 @@
+package gov.cdc.prime.router.fhirengine.translation.hl7.utils
+
+import ca.uhn.hl7v2.model.Message
+import ca.uhn.hl7v2.model.v251.message.ACK
+import gov.cdc.prime.router.common.Environment
+import gov.cdc.prime.router.fhirengine.utils.HL7Reader
+import java.time.Clock
+import java.util.Calendar
+import java.util.Date
+import java.util.TimeZone
+import java.util.UUID
+
+/**
+ * Helper class to generate HL7 ACK response
+ */
+class HL7ACKUtils(
+ private val clock: Clock = Clock.systemUTC(),
+) {
+
+ /**
+ * Creates the output ACK message according to the spec defined in #16394
+ *
+ * It will read an incoming message and copy some values over to their required locations
+ *
+ * It will always output HL7 2.5.1 regardless of the version of the incoming HL7 message
+ */
+ fun generateOutgoingACKMessage(incomingACKMessage: Message): String {
+ val outgoingAck = ACK()
+
+ val ackMsh = outgoingAck.msh
+ ackMsh.msh1_FieldSeparator.value = "|"
+ ackMsh.msh2_EncodingCharacters.value = "^~\\&"
+ ackMsh.msh3_SendingApplication.parse("ReportStream")
+ ackMsh.msh4_SendingFacility.parse("CDC")
+ ackMsh.msh5_ReceivingApplication.parse(HL7Reader.getSendingApplication(incomingACKMessage))
+ ackMsh.msh6_ReceivingFacility.parse(HL7Reader.getSendingFacility(incomingACKMessage))
+ ackMsh.msh7_DateTimeOfMessage.time.setValue(getTimestamp())
+ ackMsh.msh9_MessageType.parse("ACK")
+ ackMsh.msh10_MessageControlID.parse(UUID.randomUUID().toString())
+ ackMsh.msh11_ProcessingID.parse(if (Environment.isProd()) "P" else "T")
+ ackMsh.msh12_VersionID.versionID.parse("2.5.1")
+ ackMsh.msh15_AcceptAcknowledgmentType.parse("NE")
+ ackMsh.msh16_ApplicationAcknowledgmentType.parse("NE")
+
+ val ackMsa = outgoingAck.msa
+ ackMsa.msa1_AcknowledgmentCode.parse("CA")
+ ackMsa.msa2_MessageControlID.parse(HL7Reader.getMessageControlId(incomingACKMessage))
+
+ return outgoingAck.toString()
+ }
+
+ /**
+ * HL7 library requires old Java date libraries, so we do the conversion here.
+ *
+ * We must directly specify the UTC timezone or else the HL7 library will use
+ * your machines local timezone.
+ */
+ private fun getTimestamp(): Calendar {
+ val instant = clock.instant()
+ val date = Date.from(instant)
+
+ val calendar = Calendar.getInstance()
+ calendar.time = date
+ calendar.timeZone = TimeZone.getTimeZone("UTC")
+
+ return calendar
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt
index 95a9244fa21..aa48c011d8f 100644
--- a/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt
+++ b/prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt
@@ -13,6 +13,8 @@ import ca.uhn.hl7v2.util.Hl7InputStreamMessageStringIterator
import ca.uhn.hl7v2.util.Terser
import ca.uhn.hl7v2.validation.ValidationException
import ca.uhn.hl7v2.validation.impl.ValidationContextFactory
+import fhirengine.translation.hl7.structures.fhirinventory.message.OML_O21
+import fhirengine.translation.hl7.structures.fhirinventory.message.ORM_O01
import fhirengine.translation.hl7.structures.fhirinventory.message.ORU_R01
import fhirengine.utils.ReportStreamCanonicalModelClassFactory
import gov.cdc.prime.router.ActionLogger
@@ -21,7 +23,6 @@ import org.apache.commons.lang3.exception.ExceptionUtils
import org.apache.logging.log4j.Level
import org.apache.logging.log4j.kotlin.Logging
import java.util.Date
-import ca.uhn.hl7v2.model.v251.message.OML_O21 as v251_OML_O21
import ca.uhn.hl7v2.model.v251.message.ORU_R01 as v251_ORU_R01
import ca.uhn.hl7v2.model.v251.segment.MSH as v251_MSH
import ca.uhn.hl7v2.model.v27.message.ORU_R01 as v27_ORU_R01
@@ -139,11 +140,6 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging {
)
}
}
- "OML" -> {
- return listOf(
- v251_OML_O21::class.java
- )
- }
else -> {
logger.warn(
"${messageProfile.typeID} did not have any mapped message model classes, " +
@@ -301,6 +297,18 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging {
ValidationContextFactory.noValidation(),
ReportStreamCanonicalModelClassFactory(ORU_R01::class.java),
)
+ } else if (hl7MessageType?.msh93 == "OML_O21") {
+ DefaultHapiContext(
+ ParserConfiguration(),
+ ValidationContextFactory.noValidation(),
+ ReportStreamCanonicalModelClassFactory(OML_O21::class.java),
+ )
+ } else if (hl7MessageType?.msh93 == "ORM_O01") {
+ DefaultHapiContext(
+ ParserConfiguration(),
+ ValidationContextFactory.noValidation(),
+ ReportStreamCanonicalModelClassFactory(ORM_O01::class.java),
+ )
} else {
DefaultHapiContext(ValidationContextFactory.noValidation())
}
@@ -424,5 +432,53 @@ class HL7Reader(private val actionLogger: ActionLogger) : Logging {
else -> null
}
}
+
+ /**
+ * Reads MSH.3 which is the Sending Application field
+ */
+ fun getSendingApplication(message: Message): String? {
+ return when (val structure = message[MSH_SEGMENT_NAME]) {
+ is NIST_MSH -> structure.msh3_SendingApplication.encode()
+ is v27_MSH -> structure.msh3_SendingApplication.encode()
+ is v251_MSH -> structure.msh3_SendingApplication.encode()
+ else -> null
+ }
+ }
+
+ /**
+ * Reads MSH.4 which is the Sending Facility field
+ */
+ fun getSendingFacility(message: Message): String? {
+ return when (val structure = message[MSH_SEGMENT_NAME]) {
+ is NIST_MSH -> structure.msh4_SendingFacility.encode()
+ is v27_MSH -> structure.msh4_SendingFacility.encode()
+ is v251_MSH -> structure.msh4_SendingFacility.encode()
+ else -> null
+ }
+ }
+
+ /**
+ * Reads MSH.10 which is the Message Control ID field
+ */
+ fun getMessageControlId(message: Message): String? {
+ return when (val structure = message[MSH_SEGMENT_NAME]) {
+ is NIST_MSH -> structure.msh10_MessageControlID.encode()
+ is v27_MSH -> structure.msh10_MessageControlID.encode()
+ is v251_MSH -> structure.msh10_MessageControlID.encode()
+ else -> null
+ }
+ }
+
+ /**
+ * Reads MSH.15 which is the Accept Acknowledgment Type field
+ */
+ fun getAcceptAcknowledgmentType(message: Message): String? {
+ return when (val structure = message[MSH_SEGMENT_NAME]) {
+ is NIST_MSH -> structure.msh15_AcceptAcknowledgmentType.encode()
+ is v27_MSH -> structure.msh15_AcceptAcknowledgmentType.encode()
+ is v251_MSH -> structure.msh15_AcceptAcknowledgmentType.encode()
+ else -> null
+ }
+ }
}
}
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml
index d59be416ead..408334e10f3 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-base.yml
@@ -1,9 +1,11 @@
# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-hl7Class: ca.uhn.hl7v2.model.v251.message.OML_O21
+hl7Class: ca.uhn.hl7v2.model.v27.message.OML_O21
+
constants:
# Prefix for RS custom extension URLs
rsext: '"https://reportstream.cdc.gov/fhir/StructureDefinition/"'
+
elements:
- name: message-headers
condition: >
@@ -15,63 +17,25 @@ elements:
schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/MSH.yml
- name: software-segment
- condition: 'Bundle.entry.resource.ofType(MessageHeader).exists()'
+ resource: 'Bundle.entry.resource.ofType(Provenance).where(entity.exists()).entity.what.resolve()'
+ schema: classpath:/metadata/hl7_mapping/resources/Device/SFT.yml
+
+ - name: software-segment-legacy
+ condition: >
+ Bundle.entry.resource.ofType(MessageHeader).exists() and
+ (Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists() or
+ Bundle.entry.resource.ofType(Provenance).exists().not())
resource: 'Bundle.entry.resource.ofType(MessageHeader)'
schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/SFT.yml
- - name: patient-information
- resource: 'Bundle.entry.resource.ofType(Patient)'
- condition: '%resource.count() = 1'
- required: true
- constants:
- hl7SegmentGroup: '/PATIENT'
- schema: classpath:/metadata/hl7_mapping/common/patient.yml
-
- - name: patient-contact
- resource: 'Bundle.entry.resource.ofType(Patient).contact'
- condition: '%resource.exists()'
- constants:
- hl7SegmentGroup: '/PATIENT'
- schema: classpath:/metadata/hl7_mapping/common/patient-contact.yml
-
- - name: patient-visit
- resource: 'Bundle.entry.resource.ofType(Encounter)'
+ - name: patient-base
condition: '%resource.count() = 1'
- constants:
- hl7SegmentGroup: '/PATIENT/PATIENT_VISIT'
- schema: classpath:/metadata/hl7_mapping/common/patient-visit.yml
-
- - name: order
- resource: Bundle.entry.resource.ofType(ServiceRequest)
- condition: '%resource.count() > 0'
- required: true
- schema: classpath:/metadata/hl7_mapping/OML_O21/base/service-request-order.yml
- constants:
- hl7SegmentGroup: '/ORDER'
+ resource: 'Bundle.entry.resource.ofType(Patient)'
+ resourceIndex: patientIndex
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml
- - name: order-observation-request
- resource: Bundle.entry.resource.ofType(ServiceRequest)
- condition: '%resource.count() > 0'
- required: true
- constants:
- hl7SegmentGroup: '/ORDER/OBSERVATION_REQUEST'
- schema: classpath:/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml
+ - name: order-base
+ resource: 'Bundle.entry.resource.ofType(ServiceRequest).where(subject.resolve().id = %resource.entry.resource.ofType(Patient).id)'
resourceIndex: orderIndex
-
- - name: order-observation-result
- resource: Bundle.entry.resource.ofType(Observation)
- condition: '%resource.count() > 0'
- required: true
- schema: classpath:/metadata/hl7_mapping/common/observation-result.yml
- constants:
- hl7SegmentGroup: '/ORDER/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})'
- hl7OBXField: '%{hl7SegmentGroup}/OBX'
- resourceIndex: resultIndex
-
- - name: order-specimen
- resource: Bundle.entry.resource.ofType(Specimen)
- condition: '%resource.count() = 1'
required: true
- schema: classpath:/metadata/hl7_mapping/common/specimen.yml
- constants:
- hl7SpecimenFieldPath: /ORDER/OBSERVATION_REQUEST/SPECIMEN/SPM
\ No newline at end of file
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/order-base.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml
new file mode 100644
index 00000000000..d9c02000ec8
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/OML_O21-test.yml
@@ -0,0 +1,8 @@
+# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+hl7Class: ca.uhn.hl7v2.model.v27.message.OML_O21
+
+extends: classpath:/metadata/hl7_mapping/OML_O21/OML_O21-base.yml
+elements:
+ - name: message-headers
+ condition: 'true'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml
new file mode 100644
index 00000000000..ddc67b83b82
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml
@@ -0,0 +1,17 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: observation-request
+ required: true
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml
+
+ - name: observation-request-observation
+ resource: '%resource.supportingInfo.resolve().ofType(Observation).where(subject.resolve().id = %resource.subject.resolve().id)'
+ resourceIndex: observationIndex
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml
+
+ - name: observation-request-specimen
+ resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "SPM") | %resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).exists().not())'
+ resourceIndex: specimenIndex
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml
new file mode 100644
index 00000000000..52bd72bc31e
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request.yml
@@ -0,0 +1,22 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: observation-request-service-request
+ required: true
+ schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml
+ constants:
+ obrFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBR'
+
+ - name: observation-request-specimen
+ resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR")'
+ schema: classpath:/metadata/hl7_mapping/resources/Specimen/OBR.yml
+ constants:
+ obrFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBR'
+
+ - name: observation-request-note
+ resource: '%resource.note'
+ resourceIndex: noteIndex
+ schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml
+ constants:
+ hl7NotePath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml
new file mode 100644
index 00000000000..27470c8de9f
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation/observation.yml
@@ -0,0 +1,26 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: observation-result
+ resource: '%resource'
+ required: false
+ schema: classpath:/metadata/hl7_mapping/resources/Observation/OBX.yml
+ constants:
+ hl7OBXField: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})/OBX'
+ hl7ObservationPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})'
+ resultIndex: observationIndex
+
+ - name: observation-result-note
+ resource: '%resource.note'
+ resourceIndex: noteIndex
+ schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml
+ constants:
+ hl7NotePath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{observationIndex})'
+
+# todo
+# - name: observation-participation-information
+# resource: '%observationPath.device.resolve().where(udiCarrier.exists())'
+# schema: classpath:/metadata/hl7_mapping/resources/Device/PRT.yml
+# constants:
+# hl7SegmentGroup: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/OBSERVATION(%{resultIndex})'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml
new file mode 100644
index 00000000000..a9a3399d765
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/observation-request/specimen/specimen.yml
@@ -0,0 +1,16 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: specimen
+ required: true
+ schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPM.yml
+ constants:
+ hl7SpecimenFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/SPECIMEN(%{specimenIndex})/SPM'
+ resultIndex: specimenIndex
+
+ - name: specimen-extension
+ resource: '%resource.extension(%`rsext-spm-specimen`)'
+ schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPMExtension.yml
+ constants:
+ hl7SpecimenFieldPath: '/ORDER(%{orderIndex})/OBSERVATION_REQUEST/SPECIMEN(%{specimenIndex})/SPM'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml
new file mode 100644
index 00000000000..9a1d8a742a7
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/order/order-base.yml
@@ -0,0 +1,12 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: common-order
+ required: true
+ schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml
+ constants:
+ hl7Order: '/ORDER(%{orderIndex})/ORC'
+
+ - name: observation-request-observation
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/order/observation-request/observation-request-base.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml
new file mode 100644
index 00000000000..24512264df5
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-base.yml
@@ -0,0 +1,12 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: patient
+ required: true
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient.yml
+
+ - name: patient-visit
+ condition: '%resource.count() = 1'
+ resource: 'Bundle.entry.resource.ofType(Encounter)'
+ schema: classpath:/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml
new file mode 100644
index 00000000000..ac3742c8b38
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient-visit.yml
@@ -0,0 +1,16 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: encounter-pv1
+ condition: '%resource.count() = 1'
+ required: true
+ schema: classpath:/metadata/hl7_mapping/resources/Encounter/PV1.yml
+ constants:
+ hl7PV1Field: '/PATIENT/PATIENT_VISIT/PV1'
+
+ - name: encounter-pv2
+ condition: '%resource.count() = 1'
+ schema: classpath:/metadata/hl7_mapping/resources/Encounter/PV2.yml
+ constants:
+ hl7PV2Field: '/PATIENT/PATIENT_VISIT/PV2'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml
new file mode 100644
index 00000000000..66f367574b7
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/patient/patient.yml
@@ -0,0 +1,35 @@
+# $schema: ./../../../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+constants:
+ hl7SegmentGroup: '/PATIENT'
+
+elements:
+
+ - name: patient-identification
+ condition: '%resource.count() = 1'
+ required: true
+ schema: classpath:/metadata/hl7_mapping/resources/Patient/PID.yml
+
+ - name: patient-identification-extensions
+ resource: '%resource.extension(%`rsext-pid-patient`)'
+ schema: classpath:/metadata/hl7_mapping/resources/Patient/PIDExtension.yml
+
+ - name: additional-demographics
+ condition: '%resource.count() = 1'
+ schema: classpath:/metadata/hl7_mapping/resources/Patient/PD1.yml
+
+ - name: additional-demographics-extensions
+ resource: '%resource.extension(%`rsext-pd1-patient-additional-demographic`)'
+ schema: classpath:/metadata/hl7_mapping/resources/Patient/PD1Extension.yml
+
+ - name: patient-note
+ resource: '%resource.extension(%`rsext-patient-notes`).value'
+ resourceIndex: noteIndex
+ schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml
+ constants:
+ hl7NotePath: '%{hl7SegmentGroup}'
+
+ - name: related-person-nk1
+ resource: 'Bundle.entry.resource.ofType(RelatedPerson).where(extension(%`rsext-hl7v2Segment`).value = "NK1" and patient.resolve().id = %resource.id)'
+ resourceIndex: relatedPersonIndex
+ schema: classpath:/metadata/hl7_mapping/resources/RelatedPerson/NK1.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml
deleted file mode 100644
index ed3027c53c3..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order-observation.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-constants:
- fieldPath: '%{hl7SegmentGroup}/OBR'
-elements:
- - name: observation-request
- schema: classpath:/metadata/hl7_mapping/common/observation-request.yml
-
- - name: order-observation-date-time-start
- condition: '%rootResource.entry.resource.ofType(Specimen).collection.collected.exists()'
- value: [ '%rootResource.entry.resource.ofType(Specimen).collection.collected' ]
- hl7Spec: [ '%{fieldPath}-7' ]
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml
deleted file mode 100644
index 24c6f82d521..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/base/service-request-order.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-constants:
- hl7ORCField: '%{hl7SegmentGroup}/ORC'
-elements:
- - name: order-control
- value: [ '"NW"' ]
- required: true
- hl7Spec: [ '%{hl7ORCField}-1' ]
-
- - name: order-placer-order-number
- resource: >
- %resource.identifier.where(type.coding.system = 'http://terminology.hl7.org/CodeSystem/v2-0203')
- .where(type.coding.code = 'PLAC')
- condition: '%resource.count() > 0'
- constants:
- entityIdFieldPath: '%{hl7ORCField}(%{entityIdIndex})-2'
- resourceIndex: entityIdIndex
- schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml
-
- - name: order-status
- value: [ '%resource.status' ]
- valueSet:
- values:
- revoked: CA
- completed: CM
- entered-in-error: ER
- on-hold: HD
- active: IP
- hl7Spec: [ '%{hl7ORCField}-5' ]
-
- - name: order-date-time-of-transaction
- resource: '%resource.authoredOn'
- constants:
- dtmFieldPath: '%{hl7ORCField}-9'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: ordering-facility-name
- resource: '%resource.requester.resolve().organization.resolve()'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml
- constants:
- hl7OrgField: '%{hl7ORCField}-21'
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md b/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md
deleted file mode 100644
index 9c27ced798d..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/OML_O21/deprecated.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Deprecated location
-
-Use of this location for mapping schema is deprecated. Please see
-the [Mapping schema file structure](../../../docs/design/design/mapping-schemas.md) design document to review current
-mapping schema structure guidelines. New work should follow the new design as much as possible. When mapping work is
-completed, this directory should be removed.
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml
index d30c96c3e37..1b4e0adf9c4 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/ORU_R01-base.yml
@@ -4,7 +4,9 @@ hl7Class: ca.uhn.hl7v2.model.v27.message.ORU_R01
constants:
# Prefix for RS custom extension URLs
rsext: '"https://reportstream.cdc.gov/fhir/StructureDefinition/"'
+
elements:
+
- name: message-header
condition: >
Bundle.entry.resource.ofType(MessageHeader).exists() and
@@ -20,12 +22,11 @@ elements:
- name: software-segment-legacy
condition: >
- Bundle.entry.resource.ofType(MessageHeader).exists()
- and Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists()
+ Bundle.entry.resource.ofType(MessageHeader).exists() and
+ Bundle.entry.resource.ofType(MessageHeader).source.extension(%`rsext-software-vendor-org`).exists()
resource: 'Bundle.entry.resource.ofType(MessageHeader)'
schema: classpath:/metadata/hl7_mapping/resources/MessageHeader/SFT.yml
-
- name: patient-result
resource: 'Bundle.entry.resource.ofType(Patient)'
resourceIndex: patientIndex
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml
index a444932e335..ead6385b7e7 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/order-observation.yml
@@ -5,15 +5,29 @@ elements:
- name: common-order-service-request
resource: '%resource.basedOn.resolve()'
schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml
+ constants:
+ hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC
- name: common-order-diagnostic-report
resource: '%resource'
schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/ORC.yml
+ constants:
+ hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC
- name: observation-request-service-request
resource: '%resource.basedOn.resolve()'
schema: classpath:/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml
+ constants:
+ obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR'
+
+ - name: observation-request-specimen
+ resource: '%resource.specimen.resolve().where(extension(%`rsext-hl7v2Segment`).value = "OBR")'
+ schema: classpath:/metadata/hl7_mapping/resources/Specimen/OBR.yml
+ constants:
+ obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR'
- name: observation-request-diagnostic-report
resource: '%resource'
- schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml
\ No newline at end of file
+ schema: classpath:/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml
+ constants:
+ obrFieldPath: '/PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml
index 7a2cf358086..69b62b6981f 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/base/patient-result/order-observation/specimen.yml
@@ -7,7 +7,7 @@ elements:
- name: specimen
resource: '%resource'
- resourceIndex: specimenIndex
+ resourceIndex: resultIndex
schema: classpath:/metadata/hl7_mapping/resources/Specimen/SPM.yml
# constants:
# performerOrganization: '%resource.basedOn.resolve().performer.resolve()'
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md b/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md
deleted file mode 100644
index 9c27ced798d..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/ORU_R01/deprecated.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Deprecated location
-
-Use of this location for mapping schema is deprecated. Please see
-the [Mapping schema file structure](../../../docs/design/design/mapping-schemas.md) design document to review current
-mapping schema structure guidelines. New work should follow the new design as much as possible. When mapping work is
-completed, this directory should be removed.
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml
deleted file mode 100644
index 7d3a478a09c..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-# Identifier to EI mapping
-elements:
- - name: entity-identifier
- value: [ '%deidentifiedValue', '%resource.value' ]
- hl7Spec: [ '%{entityIdFieldPath}-1' ]
-
- - name: entity-namespace-id
- value:
- - '%resource.extension(%`rsext-namespace-id`).value'
- - '%resource.system.getId()'
- - '%resource.system'
- hl7Spec: [ '%{entityIdFieldPath}-2' ]
-
- - name: entity-universal-id
- value: [ '%resource.extension(%`rsext-universal-id`).value.getId()' ]
- hl7Spec: [ '%{entityIdFieldPath}-3' ]
-
- - name: entity-id-type
- value: [ '%resource.extension(%`rsext-universal-id`).value.getIdType()' ]
- hl7Spec: [ '%{entityIdFieldPath}-4' ]
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml
deleted file mode 100644
index 78af906ba4b..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-elements:
- # FHIR Spec does not support "=" and "<>" comparators, so those are in an extension
- - name: observation-value-sn-comparator-1
- condition: '%resource.numerator.comparator.exists().not()'
- value: [ '%resource.numerator.extension(%`rsext-comparator`).value' ]
- hl7Spec: [ '%{hl7OBXField}-5-1' ]
-
- - name: observation-value-sn-comparator-2
- condition: '%resource.numerator.comparator.exists()'
- value: [ '%resource.numerator.comparator' ]
- hl7Spec: [ '%{hl7OBXField}-5-1' ]
-
- - name: observation-value-sn-value
- value: [ '%resource.numerator.value' ]
- hl7Spec: [ '%{hl7OBXField}-5-2' ]
-
- - name: observation-value-sn-separator
- value: [ '%resource.numerator.extension(%`rsext-separator`).value' ]
- hl7Spec: [ '%{hl7OBXField}-5-3' ]
-
- - name: observation-value-sn-denominator
- value: [ '%resource.denominator.value' ]
- hl7Spec: [ '%{hl7OBXField}-5-4' ]
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml
index 73d244c0ebd..9b57e009243 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xad-extended-address.yml
@@ -53,4 +53,4 @@ elements:
condition: '%resource.exists()'
schema: classpath:/metadata/hl7_mapping/resources/Patient/DR.yml
constants:
- hl7DRField: '%{hl7XADField}-10'
\ No newline at end of file
+ hl7DRField: '%{hl7XADField}-12'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml
deleted file mode 100644
index 011cf65f009..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/datatype/xon-organization.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-elements:
- - name: xon-organization-name
- value: [ '%resource.name' ]
- hl7Spec: [ '%{hl7OrgField}-1' ]
-
- - name: xon-organization-name-type
- resource: '%resource.extension(%`rsext-organization-name-type`)'
- condition: '%resource.exists()'
- value: [ '%resource.value.code' ]
- hl7Spec: [ '%{hl7OrgField}-2' ]
-
- - name: xon-assigning-authority
- resource: '%resource.identifier.extension(%`rsext-assigning-authority`)'
- constants:
- hl7HDField: '%{hl7OrgField}-6'
- # cannot use %`rext due to mix of constant and fhirpath substitution syntax
- namespaceExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"'
- universalIdExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"'
- universalIdTypeExtName: '"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type"'
- schema: classpath:/metadata/hl7_mapping/common/datatype/hd-hierarchic-designator.yml
-
- - name: xon-organization-id-type
- resource: '%resource.identifier.type.where(coding.system = ''http://terminology.hl7.org/CodeSystem/v2-0203'')'
- condition: '%resource.exists()'
- value: [ '%resource.coding[0].code' ]
- hl7Spec: [ '%{hl7OrgField}-7' ]
-
- - name: xon-assigning-facility
- resource: '%resource.identifier.extension(%`rsext-assigning-facility`).value.resolve()'
- constants:
- hl7HDField: '%{hl7OrgField}-8'
- schema: classpath:/metadata/hl7_mapping/resources/Location/HD.yml
-
- - name: xon-name-representation-code
- value: [ '%resource.identifier.extension(%`rsext-name-representation-code`).value' ]
- hl7Spec: [ '%{hl7OrgField}-9' ]
-
- - name: xon-organization-id
- value: [ '%resource.identifier[0].value' ]
- hl7Spec: [ '%{hl7OrgField}-10' ]
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml
deleted file mode 100644
index 6152def7b86..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-request.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-elements:
- - name: set-id
- value: [ '%orderIndex + 1' ]
- hl7Spec: [ '%{fieldPath}-1' ]
-
- - name: placer-order-number
- resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "placer-order-number")'
- constants:
- eiFieldPath: '%{fieldPath}(%{entityIdIndex})-2'
- schema: classpath:/metadata/hl7_mapping/datatypes/identifier-extension/EI.yml
- resourceIndex: entityIdIndex
-
- - name: filler-order
- resource: '%resource.identifier.where(type.coding.code = "FILL")'
- condition: '%resource.exists()'
- constants:
- entityIdFieldPath: '%{fieldPath}(%{entityIdIndex})-3'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml
- resourceIndex: entityIdIndex
-
- - name: universal-service
- resource: '%resource.code'
- constants:
- cweFieldPath: '%{fieldPath}-4'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: result-interpreter
- resource: '%resource.resultsInterpreter.resolve()'
- constants:
- hl7NDLField: '%{fieldPath}-32'
- schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml
-
- - name: technician
- resource: '%resource.performer.resolve().where(extension("http://hl7.org/fhir/StructureDefinition/event-performerFunction").value.coding.code = "SPRF")'
- constants:
- hl7NDLField: '%{fieldPath}-34'
- schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml
-
- - name: transcriptionist
- resource: '%resource.performer.resolve().where(extension("http://hl7.org/fhir/StructureDefinition/event-performerFunction").value.coding.code = "TRANS")'
- constants:
- hl7NDLField: '%{fieldPath}-35'
- schema: classpath:/metadata/hl7_mapping/resources/PractitionerRole/NDL.yml
-
- - name: alternate-placer-order-number
- resource: '%service.identifier.where(extension(%`rsext-hl7-use`).value = "alternate-placer-identifier" )'
- constants:
- cxField: '%{fieldPath}-53'
- schema: classpath:/metadata/hl7_mapping/datatypes/identifier/CX.yml
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml
deleted file mode 100644
index 5808edbc66d..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/observation-result.yml
+++ /dev/null
@@ -1,259 +0,0 @@
-# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-elements:
- - name: result-set-id
- value: [ '%resultIndex + 1' ]
- hl7Spec: [ '%{hl7OBXField}-1' ]
-
- - name: result-value-type-st
- condition: '%resource.value.exists() and %resource.value.is(string)'
- value: [ '"ST"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-dt
- condition: '%resource.value.exists() and %resource.value.is(dateTime)'
- value: [ '"DT"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-ce
- resource: '%resource.value'
- condition: 'false'
- # This element remains here for usage in receiver-transforms
- value: [ '"CE"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-cwe
- resource: '%resource.value'
- condition: '%resource.exists() and %resource.is(CodeableConcept)'
- # Note that for v.2.5 and earlier, CWE is not officially in-spec, but is widely used. If a receiver requires
- # CE, that should be handled via receiver transform
- value: [ '"CWE"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-sn
- condition: '%resource.value.exists() and %resource.value.is(Ratio)'
- value: [ '"SN"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-nm
- condition: >
- %resource.value.exists() and
- %resource.value.is(Quantity) and
- %resource.value.where(extension(%`rsext-cwe-quantity`)).exists().not()
- value: [ '"NM"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: result-value-type-na
- condition: >
- %resource.value.exists() and
- %resource.value.is(Quantity) and
- %resource.value.where(extension(%`rsext-cwe-quantity`)).exists()
- value: [ '"NA"' ]
- hl7Spec: [ '%{hl7OBXField}-2' ]
-
- - name: observation-identifier-code
- resource: '%resource.code'
- constants:
- cweFieldPath: '%{hl7OBXField}-3'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: observation-value-sub-id
- value: [ '%resource.extension(%`rsext-sub-id`).value' ]
- hl7Spec: [ '%{hl7OBXField}-4' ]
-
- - name: observation-value-st
- condition: '%resource.value.exists() and %resource.value is string'
- value: [ '%resource.value' ]
- hl7Spec: [ '%{hl7OBXField}-5' ]
-
- - name: observation-value-dateTime
- condition: '%context.value.exists() and %context.value is dateTime'
- resource: '%resource.value'
- constants:
- dtmFieldPath: '%{hl7OBXField}-5'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: observation-value-cwe
- resource: '%resource.value'
- condition: '%resource.exists() and %resource is CodeableConcept'
- constants:
- cweFieldPath: '%{hl7OBXField}-5'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: observation-value-quantity
- condition: '%resource.value.exists() and %resource.value is Quantity'
- value: [ '%resource.value.value' ]
- hl7Spec: [ '%{hl7OBXField}-5' ]
-
- - name: observation-value-numeric
- resource: '%resource.value'
- condition: '%resource.exists() and %resource is Ratio'
- schema: classpath:/metadata/hl7_mapping/common/datatype/sn-structured-numeric.yml
-
- - name: observation-units-identifier
- condition: >
- %context.where(extension(%`rsext-units`)).exists() and
- %context.value.where(extension(%`rsext-cwe-quantity`)).exists().not()
- resource: '%resource.extension(%`rsext-units`).value'
- constants:
- cweFieldPath: '%{hl7OBXField}-6'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: observation-units-identifier
- condition: >
- %context.value.exists() and
- %context.value.is(Quantity) and
- %context.value.where(extension(%`rsext-cwe-quantity`)).exists() and
- %context.value.extension(%`rsext-cwe-quantity`).value.where(extension(%`rsext-hl7v2Name`).value = "units").exists()
- resource: '%resource.value.extension(%`rsext-cwe-quantity`).value'
- constants:
- cweField: '%{hl7OBXField}-6'
- schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
-
- - name: observation-reference-range
- value: [ '%resource.referenceRange.text' ]
- hl7Spec: [ '%{hl7OBXField}-7' ]
-
- - name: observation-abnormal-flag
- resource: '%resource.interpretation'
- constants:
- cweFieldPath: '%{hl7OBXField}-8'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: observation-result-status
- value: [ '%resource.status' ]
- condition: '%resource.dataAbsentReason.exists().not() or %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").code = "unknown"'
- hl7Spec: [ '%{hl7OBXField}-11' ]
- valueSet:
- values:
- registered: I
- preliminary: P
- final: F
- corrected: C
- amended: C
- entered-in-error: W
-
- - name: observation-result-status-cancelled
- value: [ "'X'" ]
- condition: '%resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").exists() and %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "identifier").code = "cannot-be-obtained"'
- hl7Spec: [ '%{hl7OBXField}-11' ]
-
- - name: observation-result-status-not-asked
- value: [ "'N'" ]
- condition: '%resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "alternate identifier").exists() and %resource.dataAbsentReason.coding.where(extension(%`rsext-code-index-name`).value = "alternate identifier").code = "not-asked"'
- hl7Spec: [ '%{hl7OBXField}-11' ]
-
-
- - name: observation-date-time
- resource: '%resource.effective'
- constants:
- dtmFieldPath: '%{hl7OBXField}-14'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: observation-producer-id
- resource: '%resource.extension(%`rsext-producer-id`).value'
- constants:
- ceFieldPath: '%{hl7OBXField}-15'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-element.yml
-
- - name: observation-producer-id-identifier
- resource: '%resource.extension(%`rsext-producer-id`).value.resolve()'
- value: [ '%resource.identifier[0].value' ]
- hl7Spec: [ '%{hl7OBXField}-15-1' ]
-
- - name: observation-producer-id-text
- resource: '%resource.extension(%`rsext-producer-id`).value.resolve()'
- value: [ '%resource.name' ]
- hl7Spec: [ '%{hl7OBXField}-15-2' ]
-
- - name: observation-producer-id-system
- resource: '%resource.extension(%`rsext-producer-id`).value.resolve().identifier.extension(%`rsext-coding-system`).value'
- value: [ '%resource.coding.code' ]
- hl7Spec: [ '%{hl7OBXField}-15-3' ]
-
- - name: responsible-observer
- resource: '%resource.performer.resolve().practitioner.resolve()'
- condition: '%resource.identifier.type.coding.code="responsibleObserver"'
- constants:
- hl7XCNField: '%{hl7OBXField}-16'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xcn-contact.yml
- resourceIndex: contactIndex
-
- - name: observation-method
- resource: '%resource.method'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
- constants:
- cweFieldPath: '%{hl7OBXField}-17'
-
- - name: equipment-instance-identifier
- resource: '%resource.device.resolve().identifier'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ei-entity-identifier.yml
- constants:
- entityIdFieldPath: '%{hl7OBXField}-18'
-
- - name: analysis-date-time
- resource: '%resource.issued'
- constants:
- dtmFieldPath: '%{hl7OBXField}-19'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: performing-organization-name-pracrole
- condition: >
- Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).exists() and
- (Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.exists() or
- Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.identifier.type.coding.code="MDIR")
- resource: '%resource.performer.resolve().ofType(PractitionerRole).organization.resolve()'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml
- constants:
- hl7OrgField: '%{hl7OBXField}-23'
-
- - name: performing-organization-name-non-pracrole
- condition: 'Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(Organization).exists()'
- resource: '%resource.performer.resolve().ofType(Organization)'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xon-organization.yml
- constants:
- hl7OrgField: '%{hl7OBXField}-23'
-
- - name: performing-organization-address-pracrole
- condition: >
- Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).exists() and
- (Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.exists() or
- Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(PractitionerRole).practitioner.identifier.type.coding.code="MDIR")
- resource: '%resource.performer.resolve().ofType(PractitionerRole).organization.resolve().address'
- constants:
- hl7AddressField: '%{hl7OBXField}-24'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xad-extended-address.yml
- resourceIndex: contactIndex
-
- - name: performing-organization-address-non-pracrole
- condition: 'Bundle.entry.resource.ofType(Observation).performer.resolve().ofType(Organization).exists()'
- resource: '%resource.performer.resolve().ofType(Organization).address'
- constants:
- hl7AddressField: '%{hl7OBXField}-24'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xad-extended-address.yml
- resourceIndex: contactIndex
-
- # This is technically incorrect as this should be using the PractitionerRole instead
- # It works because the HL7 -> FHIR mapping sets the same value on the practitioner
- # It cannot be changed at this time because this is the shape of the FHIR that SR sends in
- - name: performing-organization-director
- resource: '%resource.performer.resolve().practitioner.resolve()'
- condition: '%resource.identifier.type.coding.code="MDIR"'
- constants:
- hl7XCNField: '%{hl7OBXField}-25'
- schema: classpath:/metadata/hl7_mapping/common/datatype/xcn-contact.yml
- resourceIndex: contactIndex
-
- - name: observation-aoe-identifier
- condition: '%resource.meta.tag.code="AOE"'
- value: [ '"QST"' ]
- hl7Spec: [ '%{hl7OBXField}-29' ]
-
-
- - name: observation-note
- condition: '%context.note.exists()'
- resource: '%resource.note'
- schema: classpath:/metadata/hl7_mapping/datatypes/annotation/NTE.yml
- resourceIndex: noteIndex
- constants:
- hl7NotePath: '%{hl7SegmentGroup}'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml b/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml
deleted file mode 100644
index eca87775b5d..00000000000
--- a/prime-router/src/main/resources/metadata/hl7_mapping/common/specimen.yml
+++ /dev/null
@@ -1,147 +0,0 @@
-# $schema: ./../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-
-elements:
- - name: specimen-set-id
- value: [ '"1"' ]
- hl7Spec: [ '%{hl7SpecimenFieldPath}-1' ]
-
- - name: specimen-identifier
- resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-placer")'
- condition: '%resource.exists()'
- constants:
- eipFieldPath: '%{hl7SpecimenFieldPath}-2'
- schema: classpath:/metadata/hl7_mapping/datatypes/identifier-placerAssignedIdentifier/EIP.yml
-
- - name: specimen-identifier-backup
- resource: '%resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-filler")'
- condition: >
- %resource.identifier.where(extension(%`rsext-hl7-use`).value = "specimen-id-placer").exists().not() and
- %resource.exists()
- constants:
- eipFieldPath: '%{hl7SpecimenFieldPath}-2'
- schema: classpath:/metadata/hl7_mapping/datatypes/identifier-fillerAssignedIdentifier/EIP.yml
-
- - name: specimen-type
- resource: '%resource.type'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-4'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-type-modifier
- resource: '%resource.extension(%`rsext-specimen-type-modifier`).value'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-5'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-additives
- resource: '%resource.container.additive[0]'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-6'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-collection-method
- resource: '%resource.collection.method'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-7'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-source-site
- resource: '%resource.collection.bodySite'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-8'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-source-site-modifier
- resource: '%resource.collection.extension(%`rsext-specimen-source-site-modifier`).value'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-9'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-role
- value: [ '""' ]
- hl7Spec: [ '%{hl7SpecimenFieldPath}-11' ]
-
- - name: specimen-collection-amount
- resource: '%resource.collection.quantity'
- constants:
- cqFieldPath: '%{hl7SpecimenFieldPath}-12'
- schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml
-
- - name: specimen-description
- resource: '%resource.note.where(extension(%`rsext-hl7v2Name`).exists().not())'
- value: [ '%resource.text' ]
- hl7Spec: [ '%{hl7SpecimenFieldPath}-14' ]
-
- - name: specimen-collection-time
- condition: '%context.collection.collected.exists() and %context.collection.collected is dateTime'
- resource: '%resource.collection.collected'
- constants:
- dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: specimen-observation-date-time-start
- condition: '%context.collection.collected.exists() and %context.collection.collected is Period'
- resource: '%resource.collection.collected.start'
- constants:
- dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- # Alternative to getting specimen collection time from DiagnosticReport instead
- - name: specimen-collection-time-diagnostic
- condition: '%context.collection.collected.exists().not()'
- resource: '%diagnostic.effective'
- constants:
- dtmFieldPath: '%{hl7SpecimenFieldPath}-17-1'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: specimen-observation-date-time-end
- condition: '%context.collection.collected.exists() and %context.collection.collected is Period'
- resource: '%resource.collection.collected.end'
- constants:
- dtmFieldPath: '%{hl7SpecimenFieldPath}-17-2'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: specimen-received-time
- condition: '%context.receivedTime.exists() and %context.receivedTime is dateTime'
- resource: '%resource.receivedTime'
- constants:
- dtmFieldPath: '%{hl7SpecimenFieldPath}-18'
- schema: classpath:/metadata/hl7_mapping/datatypes/dateTime/DTMorDT.yml
-
- - name: specimen-reject-reason
- value: [ '""' ]
- hl7Spec: [ '%{hl7SpecimenFieldPath}-21' ]
-
- - name: specimen-condition
- resource: '%resource.condition'
- condition: '%resource.exists()'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-24'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-number-of-containers
- resource: '%resource.container.specimenQuantity'
- condition: '%resource.exists()'
- value: [ '%resource.value' ]
- hl7Spec: [ '%{hl7SpecimenFieldPath}-26' ]
-
- - name: specimen-container-type
- resource: '%resource.container.type'
- constants:
- cweFieldPath: '%{hl7SpecimenFieldPath}-27'
- schema: classpath:/metadata/hl7_mapping/common/datatype/ce-coded-with-exceptions.yml
-
- - name: specimen-observation-result-with-aoe
- resource: '%service.supportingInfo.resolve().where(specimen.id = Bundle.entry.resource.ofType(Specimen).id and (meta.exists().not() or meta.tag.code != "AOE"))'
- schema: classpath:/metadata/hl7_mapping/resources/Observation/OBX.yml
- resourceIndex: specimenObservationIndex
- constants:
- hl7ObservationPath: '/PATIENT_RESULT/ORDER_OBSERVATION(%{orderIndex})/SPECIMEN(%{specimenIndex})/SPECIMEN_OBSERVATION'
- hl7OBXField: '/PATIENT_RESULT/ORDER_OBSERVATION(%{orderIndex})/SPECIMEN(%{specimenIndex})/SPECIMEN_OBSERVATION(%{specimenObservationIndex})/OBX'
- observation: '%service.supportingInfo.resolve().where(specimen.id = Bundle.entry.resource.ofType(Specimen).id)[%specimenObservationIndex]'
- resultIndex: '%specimenObservationIndex'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml
index 796415372f4..ab59f1508f9 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/DiagnosticReport/OBR.yml
@@ -1,8 +1,5 @@
# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-constants:
- obrFieldPath: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR
-
elements:
- name: observation-datetime
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml
index b00993240e2..7ef010ffcab 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Observation/OBXValue.yml
@@ -22,7 +22,6 @@ elements:
value: [ '%resource.value.extension(%`rsext-hl7v2-date-time`).value' ]
hl7Spec: [ '%{hl7OBXField}-5' ]
-
- name: obx-value-vr-1
condition: '%context.extension(%`rsext-obx-observation`).extension.where(url = "OBX.2").value = "VR"'
value: [ '%resource.value.split("-").first()' ]
@@ -98,7 +97,6 @@ elements:
constants:
hl7NRField: '%{hl7OBXField}-5'
-
- name: obx-value-nm
condition: '%context.extension(%`rsext-obx-observation`).extension.where(url = "OBX.2").value = "NM"'
value: [ '%resource.value.value' ]
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml
index 9e560a5a30a..115dd498471 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBR.yml
@@ -1,8 +1,5 @@
# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-constants:
- obrFieldPath: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/OBR
-
elements:
- name: set-id
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml
index e5b361e7939..32279b850ed 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/OBRExtension.yml
@@ -16,6 +16,20 @@ elements:
constants:
eiFieldPath: '%{obrFieldPath}-3'
+ - name: observation-collected-datetime-start
+ value: [ '%resource.extension.where(url = "OBR.7").value.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-7' ]
+
+ - name: observation-collected-datetime-end
+ value: [ '%resource.extension.where(url = "OBR.8").value.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-8' ]
+
+ - name: specimen-collection-volume
+ resource: '%resource.extension.where(url = "OBR.9").value'
+ schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml
+ constants:
+ cqFieldPath: '%{obrFieldPath}-9'
+
- name: collector-identifier
resource: '%resource.extension.where(url = "OBR.10").value.resolve()'
schema: classpath:/metadata/hl7_mapping/resources/Practitioner/XCN.yml
@@ -39,6 +53,38 @@ elements:
constants:
cweField: '%{obrFieldPath}-13'
+ - name: specimen-received-datetime
+ value: [ '%resource.extension.where(url = "OBR.14").value.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-14' ]
+
+ - name: specimen-source-name
+ resource: '%resource.extension.where(url = "OBR.15.1").value'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-1'
+
+ - name: specimen-source-additives
+ resource: '%resource.extension.where(url = "OBR.15.2").value'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-2'
+
+ - name: specimen-source-collection-method-freetext
+ value: [ '%resource.extension.where(url = "OBR.15.3").value' ]
+ hl7Spec: [ '%{obrFieldPath}-15-3' ]
+
+ - name: specimen-source-body-site
+ resource: '%resource.extension.where(url = "OBR.15.4").value'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-4'
+
+ - name: specimen-source-collection-method-code
+ resource: '%resource.extension.where(url = "OBR.15.6").value'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-6'
+
- name: call-back-phone-number-obr-from-extension
condition: '%context.requester.where(extension(%`rsext-callback-number`).value.extension(%`rsext-hl7v2Field`).value[%telecomIndex] = "OBR.17").exists().not()'
resource: '%resource.extension.where(url = "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number").value'
@@ -128,7 +174,6 @@ elements:
cneFieldPath: '%{obrFieldPath}-45(%{cweIndex})'
resourceIndex: cweIndex
-
- name: medically-necessary-duplicate-procedure
resource: '%resource.extension.where(url = "OBR.48").value'
schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml
index 4c8879dbe65..f815c352171 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/ServiceRequest/ORC.yml
@@ -1,8 +1,5 @@
# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
-constants:
- hl7Order: /PATIENT_RESULT(%{patientIndex})/ORDER_OBSERVATION(%{orderIndex})/ORC
-
elements:
- name: order-control
hl7Spec: [ '%{hl7Order}-1' ]
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml
new file mode 100644
index 00000000000..150592ba484
--- /dev/null
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/OBR.yml
@@ -0,0 +1,56 @@
+# $schema: ./../../../../../../../metadata/json_schema/fhir/fhir-to-hl7-mapping.json
+
+elements:
+
+ - name: observation-collected-datetime
+ condition: '%resource.collection.collected.is(dateTime)'
+ value: [ '%resource.collection.collected.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-7' ]
+
+ - name: observation-collected-period-start
+ condition: '%resource.collection.collected.is(Period)'
+ value: [ '%resource.collection.collected.start.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-7' ]
+
+ - name: observation-collected-period-end
+ condition: '%resource.collection.collected.is(Period)'
+ value: [ '%resource.collection.collected.end.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-8' ]
+
+ - name: specimen-collection-volume
+ resource: '%resource.collection.quantity'
+ constants:
+ cqFieldPath: '%{obrFieldPath}-9'
+ schema: classpath:/metadata/hl7_mapping/datatypes/Quantity/CQ.yml
+
+ - name: specimen-received-datetime
+ value: [ '%resource.receivedTime.extension(%`rsext-hl7v2-date-time`).value' ]
+ hl7Spec: [ '%{obrFieldPath}-14' ]
+
+ - name: specimen-source-name
+ resource: '%resource.type'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-1'
+
+ - name: specimen-source-additives
+ resource: '%resource.container.additive'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-2'
+
+ - name: specimen-source-collection-method-freetext
+ value: [ '%resource.note.where(extension(%`rsext-hl7v2Component`).value = "OBR.15.3").text' ]
+ hl7Spec: [ '%{obrFieldPath}-15-3' ]
+
+ - name: specimen-source-body-site
+ resource: '%resource.collection.bodySite'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-4'
+
+ - name: specimen-source-collection-method-code
+ resource: '%resource.condition'
+ schema: classpath:/metadata/hl7_mapping/datatypes/codeableConcept/CWE.yml
+ constants:
+ cweField: '%{obrFieldPath}-15-6'
\ No newline at end of file
diff --git a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml
index da3436062e2..d15dc6f2226 100644
--- a/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml
+++ b/prime-router/src/main/resources/metadata/hl7_mapping/resources/Specimen/SPM.yml
@@ -2,7 +2,7 @@
elements:
- name: specimen-set-id
- value: [ '"1"' ]
+ value: [ '%resultIndex + 1' ]
hl7Spec: [ '%{hl7SpecimenFieldPath}-1' ]
- name: specimen-identifier
diff --git a/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt b/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt
index 33ac1482980..a1f9de7b660 100644
--- a/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt
+++ b/prime-router/src/test/kotlin/azure/ReportFunctionTests.kt
@@ -39,7 +39,9 @@ import gov.cdc.prime.router.UniversalPipelineReceiver
import gov.cdc.prime.router.UniversalPipelineSender
import gov.cdc.prime.router.azure.BlobAccess.BlobContainerMetadata
import gov.cdc.prime.router.azure.db.enums.TaskAction
+import gov.cdc.prime.router.azure.db.tables.pojos.Action
import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService
import gov.cdc.prime.router.cli.GetMultipleSettings
import gov.cdc.prime.router.cli.PIIRemovalCommands
import gov.cdc.prime.router.cli.ProcessFhirCommands
@@ -50,8 +52,10 @@ import gov.cdc.prime.router.tokens.AuthenticatedClaims
import gov.cdc.prime.router.tokens.AuthenticationType
import gov.cdc.prime.router.unittest.UnitTestUtils
import io.ktor.utils.io.core.toByteArray
+import io.mockk.Runs
import io.mockk.clearAllMocks
import io.mockk.every
+import io.mockk.just
import io.mockk.mockk
import io.mockk.mockkClass
import io.mockk.mockkConstructor
@@ -1163,7 +1167,8 @@ class ReportFunctionTests {
true,
Sender.SenderType.facility,
Sender.PrimarySubmissionMethod.manual,
- Topic.FULL_ELR
+ false,
+ Topic.FULL_ELR,
)
val receiver = Receiver(
"full-elr",
@@ -1201,4 +1206,79 @@ class ReportFunctionTests {
)
assert(receiverReturned!!.name == receiver.name)
}
+
+ @Test
+ fun `return ack if requested and enabled`() {
+ val mockEngine = mockk()
+ val mockActionHistory = mockk(relaxed = true)
+ val mockReportStreamEventService = mockk(relaxed = true)
+ val mockSettings = mockk()
+ val mockReceiver = mockk()
+ val mockAction = mockk()
+ val mockDb = mockk()
+ mockkObject(BlobAccess.Companion)
+ mockkObject(SubmissionReceiver.Companion)
+
+ val sender = UniversalPipelineSender(
+ name = "Test Sender",
+ organizationName = "org",
+ format = MimeFormat.HL7,
+ hl7AcknowledgementEnabled = true,
+ topic = Topic.FULL_ELR,
+ )
+ val report = Report(
+ Schema(name = "one", topic = Topic.TEST, elements = listOf(Element("a"), Element("b"))), listOf(),
+ sources = listOf(ClientSource("myOrg", "myClient")),
+ metadata = UnitTestUtils.simpleMetadata
+ )
+ val submission = DetailedSubmissionHistory(
+ 1,
+ TaskAction.receive,
+ OffsetDateTime.now(),
+ reports = mutableListOf(),
+ logs = emptyList()
+ )
+
+ every { mockEngine.settings } returns mockSettings
+ every { mockSettings.findSender(any()) } returns sender
+ every { BlobAccess.Companion.getBlobConnection(any()) } returns "testconnection"
+ every { SubmissionReceiver.getSubmissionReceiver(any(), any(), any()) } returns mockReceiver
+ every {
+ mockReceiver.validateAndMoveToProcessing(
+ any(), any(), any(), any(), any(), any(), any(), any(), any()
+ )
+ } returns report
+ every { mockEngine.recordAction(any()) } just Runs
+ every { mockActionHistory.action } returns mockAction
+ every { mockAction.actionId } returns 5
+ every { mockEngine.db } returns mockDb
+ // I don't agree with ktlint on this one
+ every {
+ mockDb.transactReturning(
+ any<
+ (
+ DataAccessTransaction,
+ ) -> DetailedSubmissionHistory?
+ >()
+ )
+ } returns submission
+
+ val reportFunction = ReportFunction(mockEngine, mockActionHistory, mockReportStreamEventService)
+
+ val body = """
+ MSH|^~\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE
+ """.trimIndent()
+
+ val req = MockHttpRequestMessage(body)
+ req.httpHeaders += mapOf(
+ "client" to "Test Sender",
+ "content-length" to body.length.toString(),
+ "content-type" to "application/hl7-v2"
+ )
+
+ val response = reportFunction.run(req)
+
+ assertThat(response.status).isEqualTo(HttpStatus.CREATED)
+ assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.hl7V2MediaType)
+ }
}
\ No newline at end of file
diff --git a/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt b/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt
new file mode 100644
index 00000000000..08824d7c0d8
--- /dev/null
+++ b/prime-router/src/test/kotlin/azure/service/SubmissionResponseBuilderTest.kt
@@ -0,0 +1,112 @@
+package gov.cdc.prime.router.azure.service
+
+import assertk.assertThat
+import assertk.assertions.isEqualTo
+import com.google.common.net.HttpHeaders
+import com.microsoft.azure.functions.HttpRequestMessage
+import com.microsoft.azure.functions.HttpStatus
+import gov.cdc.prime.router.CustomerStatus
+import gov.cdc.prime.router.MimeFormat
+import gov.cdc.prime.router.Topic
+import gov.cdc.prime.router.UniversalPipelineSender
+import gov.cdc.prime.router.azure.HttpUtilities
+import gov.cdc.prime.router.azure.MockHttpRequestMessage
+import gov.cdc.prime.router.azure.db.enums.TaskAction
+import gov.cdc.prime.router.history.DetailedSubmissionHistory
+import java.time.OffsetDateTime
+import kotlin.test.Test
+
+class SubmissionResponseBuilderTest {
+
+ inner class Fixture {
+ val sender = UniversalPipelineSender(
+ "test",
+ "phd",
+ MimeFormat.HL7,
+ CustomerStatus.ACTIVE,
+ topic = Topic.FULL_ELR,
+ hl7AcknowledgementEnabled = true
+ )
+ val submission = DetailedSubmissionHistory(
+ 1,
+ TaskAction.receive,
+ OffsetDateTime.now(),
+ reports = mutableListOf(),
+ logs = emptyList()
+ )
+
+ @Suppress("ktlint:standard:max-line-length")
+ val ackHL7 = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE"
+
+ @Suppress("ktlint:standard:max-line-length")
+ val noAckHL7 = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||NE|NE"
+
+ val batchHL7 = """
+ FHS|^~\&|||0.0.0.0.1|0.0.0.0.1|202201042030-0800
+ BHS|^~\&|||0.0.0.0.1|0.0.0.0.1|202201042030-0800
+ $ackHL7
+ """.trimIndent()
+
+ // default clock since we are not comparing HL7 in this test file
+ val builder = SubmissionResponseBuilder()
+
+ fun buildRequest(
+ contentType: String = HttpUtilities.hl7V2MediaType,
+ content: String,
+ ): HttpRequestMessage {
+ val request = MockHttpRequestMessage(
+ content = content
+ )
+ request.httpHeaders[HttpHeaders.CONTENT_TYPE.lowercase()] = contentType
+ return request
+ }
+ }
+
+ @Test
+ fun `build ACK response when enabled for sender and correct conditions `() {
+ val f = Fixture()
+
+ val request = f.buildRequest(content = f.ackHL7)
+
+ val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission)
+
+ assertThat(response.status).isEqualTo(HttpStatus.CREATED)
+ assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.hl7V2MediaType)
+ }
+
+ @Test
+ fun `build JSON response when enabled for sender but HL7 does not request it`() {
+ val f = Fixture()
+
+ val request = f.buildRequest(content = f.noAckHL7)
+
+ val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission)
+
+ assertThat(response.status).isEqualTo(HttpStatus.CREATED)
+ assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType)
+ }
+
+ @Test
+ fun `build JSON response when enabled for sender but is a batch message`() {
+ val f = Fixture()
+
+ val request = f.buildRequest(content = f.batchHL7)
+
+ val response = f.builder.buildResponse(f.sender, HttpStatus.CREATED, request, f.submission)
+
+ assertThat(response.status).isEqualTo(HttpStatus.CREATED)
+ assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType)
+ }
+
+ @Test
+ fun `build JSON response when processing was unsuccessful`() {
+ val f = Fixture()
+
+ val request = f.buildRequest(content = f.batchHL7)
+
+ val response = f.builder.buildResponse(f.sender, HttpStatus.BAD_REQUEST, request, f.submission)
+
+ assertThat(response.status).isEqualTo(HttpStatus.BAD_REQUEST)
+ assertThat(response.getHeader(HttpHeaders.CONTENT_TYPE)).isEqualTo(HttpUtilities.jsonMediaType)
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt
index 45f03b9514e..9a3aaf1c8b8 100644
--- a/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt
+++ b/prime-router/src/test/kotlin/common/UniversalPipelineTestUtils.kt
@@ -3,6 +3,7 @@ package gov.cdc.prime.router.common
import assertk.assertThat
import assertk.assertions.hasSize
import assertk.assertions.isEqualTo
+import gov.cdc.prime.reportstream.shared.BlobUtils.sha256Digest
import gov.cdc.prime.router.ClientSource
import gov.cdc.prime.router.CustomerStatus
import gov.cdc.prime.router.DeepOrganization
@@ -69,11 +70,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT|||
@Suppress("ktlint:standard:max-line-length")
const val cleanHL7RecordConverted =
- """{"resourceType":"Bundle","id":"1721779095041066000.8124ea86-afeb-4eb2-8971-312b9fb7acb8","meta":{"lastUpdated":"2024-07-23T16:58:15.045-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6"}}],"sender":{"reference":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","resource":{"resourceType":"Organization","id":"1721779095075059000.2189c9cf-ee89-4de1-8af1-01eeb203cdd7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","resource":{"resourceType":"Organization","id":"1721779095101182000.6e9c378b-5357-4439-94fd-b578715648a6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","resource":{"resourceType":"Provenance","id":"1721779095325537000.37c25033-9e7b-483a-9ca2-8b553244c297","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478"}}],"entity":[{"role":"source","what":{"reference":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10"}}]}},{"fullUrl":"Organization/1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","resource":{"resourceType":"Organization","id":"1721779095324867000.5b5c3704-8a2b-439b-a8a6-06e32fb78478","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","resource":{"resourceType":"Organization","id":"1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","resource":{"resourceType":"Device","id":"1721779095327982000.a98928b3-e99b-4463-bada-b6a596c9cc10","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721779095327814000.ff76d2f4-c7e3-45ba-82e1-d1778702925f"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","resource":{"resourceType":"Provenance","id":"1721779095333009000.bd411d6d-f4cf-4c49-9cae-25b4358d5611","recorded":"2024-07-23T16:58:15Z","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/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117"}}]}},{"fullUrl":"Organization/1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","resource":{"resourceType":"Organization","id":"1721779095332702000.dfbfd358-15e6-4037-8ef7-77545accb117","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"}]}},{"fullUrl":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","resource":{"resourceType":"Patient","id":"1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":[ "Kareem", "Millie" ]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":[ "688 Leighann Inlet" ],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","resource":{"resourceType":"Organization","id":"1721779095337788000.9966802f-37aa-4c6c-9461-a485310d483b","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","resource":{"resourceType":"Provenance","id":"1721779095355228000.9beb413b-8721-4221-8c79-499e20f2fd92","target":[{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"}],"recorded":"2024-07-23T16:58:15Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","resource":{"resourceType":"Observation","id":"1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","resource":{"resourceType":"Organization","id":"1721779095358794000.776ae6de-798b-4a27-89af-8771c788f848","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","resource":{"resourceType":"Observation","id":"1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","resource":{"resourceType":"Observation","id":"1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","resource":{"resourceType":"Observation","id":"1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","resource":{"resourceType":"Observation","id":"1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","resource":{"resourceType":"Specimen","id":"1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","resource":{"resourceType":"Specimen","id":"1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","resource":{"resourceType":"ServiceRequest","id":"1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19"}}},{"fullUrl":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","resource":{"resourceType":"Practitioner","id":"1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","resource":{"resourceType":"Organization","id":"1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","resource":{"resourceType":"PractitionerRole","id":"1721779095484855000.d07abc10-62fa-445b-81df-1af193f5ce19","practitioner":{"reference":"Practitioner/1721779095485842000.c16c7a09-63f3-4753-bfd4-bb6e0f02ff83"},"organization":{"reference":"Organization/1721779095486628000.7773205f-e9e1-49eb-bdf2-c4d80deb3306"}}},{"fullUrl":"Organization/1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","resource":{"resourceType":"Organization","id":"1721779095488185000.0eaf9feb-254d-4235-9dff-638105263d37","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","resource":{"resourceType":"Practitioner","id":"1721779095489764000.87471747-2300-4260-9bc7-805b7451df4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"Practitioner/1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","resource":{"resourceType":"Practitioner","id":"1721779095490784000.d8a5e4d6-6caf-408d-901a-a862fbf57a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"DiagnosticReport/1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","resource":{"resourceType":"DiagnosticReport","id":"1721779095495254000.5cb1dfe6-8ed3-49c3-8a98-021226380faf","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721779095491622000.c8739469-89a0-4296-8bbb-1a8f4dca313f"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721779095352871000.43ab1a5e-ddca-4454-baea-5a67fc67b3f1"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721779095483785000.68cef163-56b4-4da6-8e30-b61983c02e6b"},{"reference":"Specimen/1721779095482081000.c3758a54-eb20-4694-b925-cc7d24bfbbba"}],"result":[{"reference":"Observation/1721779095357939000.85aa77e7-a8a3-41a0-bb83-3a8c7d94e52c"},{"reference":"Observation/1721779095361252000.86286d65-9e75-4f1b-9712-350c93666cfc"},{"reference":"Observation/1721779095363292000.adbb0dcd-2367-475c-af73-95f96044ec62"},{"reference":"Observation/1721779095365380000.f1fb38e0-5df0-4aca-9854-423bbf2bf6ae"},{"reference":"Observation/1721779095367165000.2ec02035-fd7f-4224-8fb4-416456c43445"}]}}]}"""
+ """{"resourceType":"Bundle","id":"1731632467807559000.a6efb49c-5d6e-4b1b-93e4-549807228adf","meta":{"lastUpdated":"2024-11-14T17:01:07.811-08:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5","resource":{"resourceType":"MessageHeader","id":"1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232"}}],"sender":{"reference":"Organization/1731632467838107000.a435dcab-9207-4715-8520-982466e8f850"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1731632467838107000.a435dcab-9207-4715-8520-982466e8f850","resource":{"resourceType":"Organization","id":"1731632467838107000.a435dcab-9207-4715-8520-982466e8f850","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232","resource":{"resourceType":"Organization","id":"1731632467857404000.4b17fbe3-f469-4d47-b624-b3a708809232","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1731632468118479000.3007186c-cf34-4404-85c0-0e6ba392c4d5","resource":{"resourceType":"Provenance","id":"1731632468118479000.3007186c-cf34-4404-85c0-0e6ba392c4d5","target":[{"reference":"MessageHeader/1731632467857979000.21de7b32-4047-4711-8a8d-3eb6d583d5e5"},{"reference":"DiagnosticReport/1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2"}}],"entity":[{"role":"source","what":{"reference":"Device/1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06"}}]}},{"fullUrl":"Organization/1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2","resource":{"resourceType":"Organization","id":"1731632468117808000.136721c9-da61-4029-8afa-cb1951b419f2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400","resource":{"resourceType":"Organization","id":"1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06","resource":{"resourceType":"Device","id":"1731632468121059000.02954daa-fe7d-416e-a5bc-4379c0525e06","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1731632468120893000.649ee734-7495-4053-a38b-b6ac88504400"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1731632468126028000.89599481-01f2-4262-ac4e-3267eee965f1","resource":{"resourceType":"Provenance","id":"1731632468126028000.89599481-01f2-4262-ac4e-3267eee965f1","recorded":"2024-11-14T17:01:08Z","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/1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e"}}]}},{"fullUrl":"Organization/1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e","resource":{"resourceType":"Organization","id":"1731632468125740000.a25331bc-c56a-4bfd-bd88-18cbe2f78e2e","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"}]}},{"fullUrl":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b","resource":{"resourceType":"Patient","id":"1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78","resource":{"resourceType":"Organization","id":"1731632468130893000.c443cd1d-44f0-455d-8edf-a68e1d0b1b78","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1731632468147477000.8af92e28-86a3-4d2b-879f-71acbd50f3db","resource":{"resourceType":"Provenance","id":"1731632468147477000.8af92e28-86a3-4d2b-879f-71acbd50f3db","target":[{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"}],"recorded":"2024-11-14T17:01:08Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea","resource":{"resourceType":"Observation","id":"1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c","resource":{"resourceType":"Organization","id":"1731632468151535000.bf30b951-672a-49c6-877e-aff30f0f5b3c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18","resource":{"resourceType":"Observation","id":"1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11","resource":{"resourceType":"Observation","id":"1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2","resource":{"resourceType":"Observation","id":"1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2","resource":{"resourceType":"Observation","id":"1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87","resource":{"resourceType":"Specimen","id":"1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949","resource":{"resourceType":"Specimen","id":"1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee","resource":{"resourceType":"ServiceRequest","id":"1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b"}}},{"fullUrl":"Practitioner/1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6","resource":{"resourceType":"Practitioner","id":"1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7","resource":{"resourceType":"Organization","id":"1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b","resource":{"resourceType":"PractitionerRole","id":"1731632468280007000.2be1a1fc-61fd-40a8-9c29-9af77bac352b","practitioner":{"reference":"Practitioner/1731632468281195000.9a8de3af-7dcc-4345-bc4d-b58745f66da6"},"organization":{"reference":"Organization/1731632468282006000.4647352c-3ee6-46fd-8316-fe824df966c7"}}},{"fullUrl":"Organization/1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494","resource":{"resourceType":"Organization","id":"1731632468283819000.48603099-63c3-4e32-b7e3-cc820ef28494","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0","resource":{"resourceType":"Practitioner","id":"1731632468285424000.cd404882-8254-4d07-98a9-12985b3b47b0","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8","resource":{"resourceType":"Practitioner","id":"1731632468286195000.d1ff1832-db3f-42db-8576-3b52c428fcc8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242","resource":{"resourceType":"DiagnosticReport","id":"1731632468291037000.ab9b0907-d6f9-4273-9ec1-e575a9319242","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1731632468287669000.7175d4f7-1a13-47b2-936f-f25d12cc16ee"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632468145224000.685c9536-74f6-47a6-a5e5-240954e9146b"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1731632468279074000.c8bccee6-1786-4094-83a2-be821a93a949"},{"reference":"Specimen/1731632468276993000.306feeaf-7a26-4b23-89ab-422174666e87"}],"result":[{"reference":"Observation/1731632468150542000.d93d288b-b70f-499d-903b-45282d68d3ea"},{"reference":"Observation/1731632468154016000.821e1185-b345-40bd-8d8b-52626b601a18"},{"reference":"Observation/1731632468155844000.5cc2e7ac-f8d6-4ac7-a3c9-1cddc0bfff11"},{"reference":"Observation/1731632468158038000.6656c78e-0b49-42fe-bd56-cd3fb4540cc2"},{"reference":"Observation/1731632468159900000.5b8cab2a-33d3-44a3-a245-c4fcf55f73f2"}]}}]}"""
@Suppress("ktlint:standard:max-line-length")
const val cleanHL7RecordConvertedAndTransformed =
- """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","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":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","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/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","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"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}"""
+ """{"resourceType":"Bundle","id":"1714075986350543000.8e8b0e71-a366-41cc-acca-041376e7b05e","meta":{"lastUpdated":"2024-04-25T16:13:06.357-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","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":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3"}}],"sender":{"reference":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","resource":{"resourceType":"Organization","id":"1714075986401657000.30e02219-032e-47ce-894b-4fa29e81f6bd","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","resource":{"resourceType":"Organization","id":"1714075986425376000.cb936de7-9452-42d7-86c3-f57fd8ddfbe3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","resource":{"resourceType":"Provenance","id":"1714075986727087000.4e6970c6-01b3-4612-b376-35483edc9bbd","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2"}}],"entity":[{"role":"source","what":{"reference":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc"}}]}},{"fullUrl":"Organization/1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","resource":{"resourceType":"Organization","id":"1714075986726387000.702ee15b-9579-4fc5-90ba-61687ccae7a2","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","resource":{"resourceType":"Organization","id":"1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","resource":{"resourceType":"Device","id":"1714075986730018000.6da6ceec-1bc0-4a02-9337-6d2004f489dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714075986729787000.6c913b49-e6ed-42ac-9394-0179bf943dac"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","resource":{"resourceType":"Provenance","id":"1714075986736704000.6f33e8d5-9a09-420a-a62a-ea54cf980008","recorded":"2024-04-25T16:13:06Z","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/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6"}}]}},{"fullUrl":"Organization/1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","resource":{"resourceType":"Organization","id":"1714075986736409000.4cda0569-e1f1-491e-b91c-f547183ee8b6","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"}]}},{"fullUrl":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","resource":{"resourceType":"Patient","id":"1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","resource":{"resourceType":"Organization","id":"1714075986743741000.61cd6b50-d1db-4f02-8ce3-d004958259f6","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","resource":{"resourceType":"Provenance","id":"1714075986762376000.e7a4e0a5-097f-42c0-ad1f-79d538074ac4","target":[{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"}],"recorded":"2024-04-25T16:13:06Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","resource":{"resourceType":"Observation","id":"1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","resource":{"resourceType":"Organization","id":"1714075986766962000.8235bb6e-92a0-4a54-ae1c-3db19770d69b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","resource":{"resourceType":"Observation","id":"1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","resource":{"resourceType":"Observation","id":"1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","resource":{"resourceType":"Observation","id":"1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","resource":{"resourceType":"Observation","id":"1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95419-8","display":"Has symptoms related to condition of interest"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","resource":{"resourceType":"Specimen","id":"1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","resource":{"resourceType":"Specimen","id":"1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","resource":{"resourceType":"ServiceRequest","id":"1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08"}}},{"fullUrl":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","resource":{"resourceType":"Practitioner","id":"1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","resource":{"resourceType":"Organization","id":"1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","resource":{"resourceType":"PractitionerRole","id":"1714075986940575000.7585ac63-66b1-4aac-b4c8-bb001c5b6a08","practitioner":{"reference":"Practitioner/1714075986941882000.671361fe-8f80-4c43-9211-f9f9257fc9f7"},"organization":{"reference":"Organization/1714075986942881000.080d0179-0c67-41cf-bff0-f2628dfbd21f"}}},{"fullUrl":"Organization/1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","resource":{"resourceType":"Organization","id":"1714075986945628000.5d9da1e6-8ef5-48d7-a5b8-8d9801d0b16e","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","resource":{"resourceType":"Practitioner","id":"1714075986946939000.8f0eaca3-2bc6-441f-849c-5a3c570c2ab8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","resource":{"resourceType":"Practitioner","id":"1714075986949131000.664c9746-73e3-4367-9e19-3de556bd607d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","resource":{"resourceType":"DiagnosticReport","id":"1714075986955034000.cc978b59-ca68-4ffd-acba-9572836be3a7","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714075986950489000.bef2097d-0fae-4fac-a174-f808320d4b83"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714075986759616000.78cfdc07-349a-479b-a099-dc1bc510f205"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714075986939510000.57ef79ed-b452-4e86-a649-4c210e024d4b"},{"reference":"Specimen/1714075986937410000.9df806cb-634d-4184-bc40-0ec32517f9ed"}],"result":[{"reference":"Observation/1714075986765741000.f425e3cf-0ddf-4af5-8b16-df83e7a62f81"},{"reference":"Observation/1714075986770033000.37d8a1d9-ae7d-46fd-803f-d78e6aa6c1d9"},{"reference":"Observation/1714075986772515000.a4be52f4-ae35-4a3d-b175-c3ab08914b01"},{"reference":"Observation/1714075986774643000.9484ea7b-9305-4c74-9935-34b3c8d5f789"},{"reference":"Observation/1714075986776639000.f1662223-7730-4a3e-91a3-955f0f06064d"}]}}]}"""
// This message will be parsed and successfully passed through the convert step
// despite having a nonexistent NNN segement and an SFT.2 that is not an ST
@@ -93,11 +94,11 @@ SPM|1|0cba76f5-35e0-4a28-803a-2f31308aae9b||258500001^Nasopharyngeal swab^SCT|||
@Suppress("ktlint:standard:max-line-length")
const val invalidHL7RecordConverted =
- """{"resourceType":"Bundle","id":"1721777846019696000.250a7183-cf4a-4b93-bc5d-7d584e7f1491","meta":{"lastUpdated":"2024-07-23T16:37:26.024-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2"}}],"sender":{"reference":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","resource":{"resourceType":"Organization","id":"1721777846053685000.668fc3c3-59d1-41f2-a5a3-fdb9c6e1af67","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","resource":{"resourceType":"Organization","id":"1721777846072235000.3490dd90-2924-4c6b-b9b5-7e505a8cdef2","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","resource":{"resourceType":"Provenance","id":"1721777846291501000.4e6fef75-50f5-4a90-8700-e4c5863d9ba5","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073"}}]}},{"fullUrl":"Organization/1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","resource":{"resourceType":"Organization","id":"1721777846290825000.cc59d4ff-c553-43ff-bc6b-ff9d6bc85aa4","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","resource":{"resourceType":"Organization","id":"1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","resource":{"resourceType":"Device","id":"1721777846294084000.e4d7debd-26dd-454a-8c45-418865340073","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777846293869000.b3be0f02-3001-4b5f-9837-58e10ffecb36"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","resource":{"resourceType":"Provenance","id":"1721777846299096000.a563e83f-a551-4782-9f79-0717a607df25","recorded":"2024-07-23T16:37:26Z","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/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e"}}]}},{"fullUrl":"Organization/1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","resource":{"resourceType":"Organization","id":"1721777846298871000.5d0e8fcc-9f9e-4e8c-9c2b-f0d21a49334e","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"}]}},{"fullUrl":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","resource":{"resourceType":"Patient","id":"1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":[ "Kareem","Millie" ]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":[ "688 Leighann Inlet" ],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","resource":{"resourceType":"Organization","id":"1721777846304215000.9d234a70-1277-47c6-80a0-5819fbfe6547","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","resource":{"resourceType":"Provenance","id":"1721777846319409000.99a988d3-2061-464e-8f1f-45b2343be6c2","target":[{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"}],"recorded":"2024-07-23T16:37:26Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","resource":{"resourceType":"Observation","id":"1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","resource":{"resourceType":"Organization","id":"1721777846322748000.49e6d847-c843-44e4-b364-8dcc8f18a9ac","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","resource":{"resourceType":"Observation","id":"1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","resource":{"resourceType":"Observation","id":"1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","resource":{"resourceType":"Observation","id":"1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","resource":{"resourceType":"Specimen","id":"1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","resource":{"resourceType":"Specimen","id":"1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","resource":{"resourceType":"ServiceRequest","id":"1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f"}}},{"fullUrl":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","resource":{"resourceType":"Practitioner","id":"1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","resource":{"resourceType":"Organization","id":"1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":[ "170 North King Road" ],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","resource":{"resourceType":"PractitionerRole","id":"1721777846443378000.f9c5da9f-cd29-4c9a-a194-c41a12ea582f","practitioner":{"reference":"Practitioner/1721777846444409000.cfd26ff0-4386-4d4f-9736-1355d7a7fa02"},"organization":{"reference":"Organization/1721777846445269000.99ffa4f1-3f06-4ae5-b0d6-7f7618ba4c9d"}}},{"fullUrl":"Organization/1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","resource":{"resourceType":"Organization","id":"1721777846447164000.828dd71b-57e2-4acf-b9ad-f2276ee34bdd","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","resource":{"resourceType":"Practitioner","id":"1721777846448258000.28ec7274-61e6-4f8a-a29e-8d9b73f82bdc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"Practitioner/1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","resource":{"resourceType":"Practitioner","id":"1721777846449836000.75ceb4a7-c11d-4591-8e3c-f6a617b60c19","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":[ "Husam" ]}]}},{"fullUrl":"DiagnosticReport/1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","resource":{"resourceType":"DiagnosticReport","id":"1721777846454629000.e0f99313-4515-433a-a96a-c7a9e025547d","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1721777846450879000.06a8b14f-65e8-4914-94cc-d25f4b1d88b3"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777846317280000.1c250c98-8398-44df-95f9-638d32537d63"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1721777846442113000.9d2a2294-135f-461b-9205-6ad134663376"},{"reference":"Specimen/1721777846440349000.b8ca24c2-1277-4715-ac66-f69340fd9af8"}],"result":[{"reference":"Observation/1721777846321890000.435ad504-5064-4d96-ac38-4b8c93d6a48b"},{"reference":"Observation/1721777846325442000.c20a8ed1-4026-4c3d-a088-ff62a9eb145a"},{"reference":"Observation/1721777846327269000.6b1fbddd-4ab2-4118-9deb-4ad8026e81ba"},{"reference":"Observation/1721777846329135000.65c69636-0d27-42fb-8198-25835ad05c9d"}]}}]}"""
+ """{"resourceType":"Bundle","id":"1731632555566127000.07dd4aa2-fdbf-4f4e-a220-25f878a36e45","meta":{"lastUpdated":"2024-11-14T17:02:35.570-08:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-08:00","entry":[{"fullUrl":"MessageHeader/1731632555616462000.de238934-eaf8-474c-add7-113ac1816922","resource":{"resourceType":"MessageHeader","id":"1731632555616462000.de238934-eaf8-474c-add7-113ac1816922","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352"}}],"sender":{"reference":"Organization/1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"PRIME ReportStream","version":"0.1-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04","resource":{"resourceType":"Organization","id":"1731632555597230000.f5d95875-5c80-44c2-a529-51201c9ecc04","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352","resource":{"resourceType":"Organization","id":"1731632555615899000.744ef6d3-ea1e-42a7-8668-bac428c70352","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1731632555844807000.076dd88c-166a-4108-b7db-bb1da99e5a34","resource":{"resourceType":"Provenance","id":"1731632555844807000.076dd88c-166a-4108-b7db-bb1da99e5a34","target":[{"reference":"MessageHeader/1731632555616462000.de238934-eaf8-474c-add7-113ac1816922"},{"reference":"DiagnosticReport/1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1731632555844062000.5747e251-00de-4533-aed6-5592f833e869"}}],"entity":[{"role":"source","what":{"reference":"Device/1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad"}}]}},{"fullUrl":"Organization/1731632555844062000.5747e251-00de-4533-aed6-5592f833e869","resource":{"resourceType":"Organization","id":"1731632555844062000.5747e251-00de-4533-aed6-5592f833e869","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85","resource":{"resourceType":"Organization","id":"1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad","resource":{"resourceType":"Device","id":"1731632555847769000.ef591561-f00f-44fe-9a7b-cb2a38aa77ad","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1731632555847591000.9026c753-7d1b-4f4e-be23-f3e83960eb85"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1731632555853506000.6979205f-ec8c-49a4-b1a0-d26f0a7390e7","resource":{"resourceType":"Provenance","id":"1731632555853506000.6979205f-ec8c-49a4-b1a0-d26f0a7390e7","recorded":"2024-11-14T17:02:35Z","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/1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20"}}]}},{"fullUrl":"Organization/1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20","resource":{"resourceType":"Organization","id":"1731632555853234000.37d4833c-4be8-4fe9-a325-232536eefe20","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"}]}},{"fullUrl":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298","resource":{"resourceType":"Patient","id":"1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce","resource":{"resourceType":"Organization","id":"1731632555858437000.02848ffa-05a5-47a8-a5f8-7e0621a989ce","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1731632555876041000.c5e98c0c-d556-4701-944a-f772f3f8c8c3","resource":{"resourceType":"Provenance","id":"1731632555876041000.c5e98c0c-d556-4701-944a-f772f3f8c8c3","target":[{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"}],"recorded":"2024-11-14T17:02:35Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd","resource":{"resourceType":"Observation","id":"1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58","resource":{"resourceType":"Organization","id":"1731632555880303000.cd1c7280-1b15-4d08-afc9-066b82462f58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0","resource":{"resourceType":"Observation","id":"1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9","resource":{"resourceType":"Observation","id":"1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a","resource":{"resourceType":"Observation","id":"1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d","resource":{"resourceType":"Specimen","id":"1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651","resource":{"resourceType":"Specimen","id":"1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e","resource":{"resourceType":"ServiceRequest","id":"1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa"}}},{"fullUrl":"Practitioner/1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3","resource":{"resourceType":"Practitioner","id":"1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305","resource":{"resourceType":"Organization","id":"1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa","resource":{"resourceType":"PractitionerRole","id":"1731632556004678000.92726640-e399-4a10-83b5-20161d9b0afa","practitioner":{"reference":"Practitioner/1731632556005631000.40dffabe-d86c-4782-96fc-a41e0ab111a3"},"organization":{"reference":"Organization/1731632556006409000.485fd490-c064-4036-8f81-51c6ba01e305"}}},{"fullUrl":"Organization/1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a","resource":{"resourceType":"Organization","id":"1731632556007885000.8485c876-fe7a-4c06-8884-bbc33aa4b74a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d","resource":{"resourceType":"Practitioner","id":"1731632556008903000.ff983c8b-af50-43e5-b88e-3b67b0eb261d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72","resource":{"resourceType":"Practitioner","id":"1731632556009580000.43b752a9-03e1-40f9-b27e-d5cfdf11ec72","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760","resource":{"resourceType":"DiagnosticReport","id":"1731632556016258000.d13881e7-bfa4-4436-aa08-e4ffb99c2760","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1731632556012806000.bb92f923-0bf3-4d1a-a5bb-207ebd70f45e"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1731632555873836000.ba21d392-9520-489b-b1cc-1439b3235298"},"effectivePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1731632556003521000.c13f412f-6c4d-49a4-9308-f5a71e748651"},{"reference":"Specimen/1731632556001589000.4f108eb0-1561-442c-893a-3f2589aa139d"}],"result":[{"reference":"Observation/1731632555879358000.ec90e8a1-fc5b-47ef-893f-d8ea4d7658bd"},{"reference":"Observation/1731632555883068000.f1a554b9-5bb6-4830-a813-076057f6bdc0"},{"reference":"Observation/1731632555885257000.8531f6f3-45fe-4194-b160-2c77bc69f0d9"},{"reference":"Observation/1731632555887093000.4e715efa-ad92-4821-9e24-cfcefabbd23a"}]}}]}"""
@Suppress("ktlint:standard:max-line-length")
const val invalidHL7RecordConvertedAndTransformed =
- """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","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":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","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/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","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"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean": false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean": true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}"""
+ """{"resourceType":"Bundle","id":"1714076050088111000.a4c2ec65-b182-45da-9f14-80db72ebdd42","meta":{"lastUpdated":"2024-04-25T16:14:10.094-04:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"371784"},"type":"message","timestamp":"2021-02-10T17:07:37.000-05:00","entry":[{"fullUrl":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e","resource":{"resourceType":"MessageHeader","id":"4aeed951-99a9-3152-8885-6b0acc6dd35e","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20210210170737"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR_Receiver"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.99"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReportNoAck"}},{"url":"MSH.19","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":"ISO"}],"code":"ENG","display":"English"}]}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/character-set","valueString":"UNICODE UTF-8"}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"PRIME_DOH","_endpoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"receiver":{"reference":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58"}}],"sender":{"reference":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CDC PRIME - Atlanta, Georgia (Dekalb)"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.1.237821"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-binary-id","valueString":"0.2-SNAPSHOT"}],"name":"CDC PRIME - Atlanta: 2.16.840.1.114222.4.1.237821","software":"PRIME ReportStream","version":"0.2-SNAPSHOT","endpoint":"urn:oid:2.16.840.1.114222.4.1.237821"}}},{"fullUrl":"Organization/1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","resource":{"resourceType":"Organization","id":"1714076050134101000.e2dfbcec-e00a-4145-9a1d-3f237f7d9c88","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}],"address":[{"country":"USA"}]}},{"fullUrl":"Organization/1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","resource":{"resourceType":"Organization","id":"1714076050159757000.4a754008-3c87-4a33-b464-b200e5209d58","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Prime ReportStream"}]}},{"fullUrl":"Provenance/1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","resource":{"resourceType":"Provenance","id":"1714076050445737000.c6aaf334-0a47-431f-9683-d684b448e75d","target":[{"reference":"MessageHeader/4aeed951-99a9-3152-8885-6b0acc6dd35e"},{"reference":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264"}],"recorded":"2021-02-10T17:07:37Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8"}}],"entity":[{"role":"source","what":{"reference":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb"}}]}},{"fullUrl":"Organization/1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","resource":{"resourceType":"Organization","id":"1714076050445166000.fe8affd3-6047-4d29-9946-48aa378eb7a8","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"},{"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":"CLIA"}]},"value":"10D0876999"}]}},{"fullUrl":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","resource":{"resourceType":"Organization","id":"1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c","name":"Centers for Disease Control and Prevention"}},{"fullUrl":"Device/1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","resource":{"resourceType":"Device","id":"1714076050448504000.64bd61ad-a6ba-46ea-8c67-7925902c7ccb","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1714076050448325000.62322707-039b-4e4d-b8bb-b98585947a1c"}}],"manufacturer":"Centers for Disease Control and Prevention","deviceName":[{"name":"PRIME ReportStream","type":"manufacturer-name"}],"modelNumber":"0.1-SNAPSHOT","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2021-02-10","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20210210"}]}}],"value":"0.1-SNAPSHOT"}]}},{"fullUrl":"Provenance/1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","resource":{"resourceType":"Provenance","id":"1714076050454424000.121a6dc9-c486-4455-9720-3b3f1a3fe655","recorded":"2024-04-25T16:14:10Z","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/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6"}}]}},{"fullUrl":"Organization/1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","resource":{"resourceType":"Organization","id":"1714076050454162000.ef2f189e-335e-4716-bfff-2c77c696b9f6","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"}]}},{"fullUrl":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","resource":{"resourceType":"Patient","id":"1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient","extension":[{"url":"PID.8","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"F"}]}},{"url":"PID.30","valueString":"N"}]},{"url":"http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd","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":"HL70005"}],"system":"http://terminology.hl7.org/CodeSystem/v3-Race","version":"2.5.1","code":"2106-3","display":"White"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group","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":"HL70189"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0189","code":"U","display":"Unknown"}]}}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"value":"2a14112c-ece1-4f82-915c-7b3a8d152eda","assigner":{"reference":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06"}}],"name":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name","extension":[{"url":"XPN.2","valueString":"Kareem"},{"url":"XPN.3","valueString":"Millie"},{"url":"XPN.7","valueString":"L"}]}],"use":"official","family":"Buckridge","given":["Kareem","Millie"]}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"211"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"2240784"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.1","valueString":"7275555555:1:"},{"url":"XTN.2","valueString":"PRN"},{"url":"XTN.4","valueString":"roscoe.wilkinson@email.com"},{"url":"XTN.7","valueString":"2240784"}]}],"system":"email","use":"home"}],"gender":"female","birthDate":"1958-08-10","_birthDate":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"19580810"}]},"deceasedBoolean":false,"address":[{"extension":[{"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":"688 Leighann Inlet"}]}]}],"line":["688 Leighann Inlet"],"city":"South Rodneychester","district":"48077","state":"TX","postalCode":"67071"}]}},{"fullUrl":"Organization/1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","resource":{"resourceType":"Organization","id":"1714076050460441000.2cea5a01-6238-42db-974a-d3dd4ccadf06","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"Avante at Ormond Beach"}]}},{"fullUrl":"Provenance/1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","resource":{"resourceType":"Provenance","id":"1714076050477224000.1628017b-94e5-4e4c-bb2e-251383476529","target":[{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"}],"recorded":"2024-04-25T16:14:10Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","resource":{"resourceType":"Observation","id":"1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}]}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"performer":[{"reference":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc"}],"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":"SCT"}],"system":"http://snomed.info/sct","code":"260415000","display":"Not detected"}]},"interpretation":[{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"HL70078"}],"code":"N","display":"Normal (applies to non-numeric results)"}]}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"code":"CareStart COVID-19 Antigen test_Access Bio, Inc._EUA"}]}}},{"fullUrl":"Organization/1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","resource":{"resourceType":"Organization","id":"1714076050480881000.76426968-0f15-47ed-9cec-f54aacf336dc","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"10D0876999"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CLIA"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.4.7"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"10D0876999"}],"name":"Avante at Ormond Beach","address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","resource":{"resourceType":"Observation","id":"1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95418-0","display":"Whether patient is employed in a healthcare setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","resource":{"resourceType":"Observation","id":"1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95417-2","display":"First test for condition of interest"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"Y","display":"Yes"}]}}},{"fullUrl":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","resource":{"resourceType":"Observation","id":"1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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","code":"95421-4","display":"Resides in a congregate care setting"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectiveDateTime":"2021-02-09T00:00:00-06:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"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":"HL70136"}],"code":"N","display":"No"}]}}},{"fullUrl":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","resource":{"resourceType":"Specimen","id":"1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedPeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}}},{"fullUrl":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","resource":{"resourceType":"Specimen","id":"1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.1"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PGN"}]},"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","code":"258500001","display":"Nasopharyngeal swab"}]},"receivedTime":"2021-02-09T00:00:00-06:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"collection":{"collectedDateTime":"2021-02-09T00:00:00-06:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"bodySite":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"2020-09-01","code":"71836000","display":"Nasopharyngeal structure (body structure)"}]}}}},{"fullUrl":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","resource":{"resourceType":"ServiceRequest","id":"1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}},{"url":"orc-24-ordering-provider-address","valueAddress":{"postalCode":"32174"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8"}},{"url":"ORC.15","valueString":"20210209"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.2","valueIdentifier":{"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}},{"url":"OBR.3","valueIdentifier":{"value":"0cba76f5-35e0-4a28-803a-2f31308aae9b"}},{"url":"OBR.7","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.8","valueDateTime":"2021-02-09T00:00:00-06:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},{"url":"OBR.22","valueString":"202102090000-0600"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"status":"unknown","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"386"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"6825220"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.7","valueString":"6825220"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"work"}}],"reference":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624"}}},{"fullUrl":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","resource":{"resourceType":"Practitioner","id":"1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"NPI"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"urn:oid:2.16.840.1.113883.4.6"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}],"address":[{"postalCode":"32174"}]}},{"fullUrl":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","resource":{"resourceType":"Organization","id":"1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a","name":"Avante at Ormond Beach","telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-country","valueString":"1"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"407"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"7397506"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.2","valueString":"WPN"},{"url":"XTN.4","valueString":"jbrush@avantecenters.com"},{"url":"XTN.7","valueString":"7397506"}]}],"system":"email","use":"work"}],"address":[{"extension":[{"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":"170 North King Road"}]}]}],"line":["170 North King Road"],"city":"Ormond Beach","district":"12127","state":"FL","postalCode":"32174"}]}},{"fullUrl":"PractitionerRole/1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","resource":{"resourceType":"PractitionerRole","id":"1714076050638584000.7d2a4493-16cf-4f9d-896f-731d2aea7624","practitioner":{"reference":"Practitioner/1714076050639750000.554bf0ef-b2be-4fbc-bc37-c67a216c1f14"},"organization":{"reference":"Organization/1714076050640767000.dc66770b-e134-4d0e-8989-70c12c60fc7a"}}},{"fullUrl":"Organization/1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","resource":{"resourceType":"Organization","id":"1714076050642630000.15f993ed-02f8-473f-8b77-95bca4c97f3a","name":"Avante at Ormond Beach"}},{"fullUrl":"Practitioner/1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","resource":{"resourceType":"Practitioner","id":"1714076050643844000.3dad2a39-2e39-4120-9991-919e24397bb8","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"Practitioner/1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","resource":{"resourceType":"Practitioner","id":"1714076050645896000.f58ffd44-b08f-4d07-9273-d8441c8130ec","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"CMS"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.249"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner","extension":[{"url":"XCN.3","valueString":"Husam"}]}],"identifier":[{"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id","valueBoolean":true}],"code":"NPI"}]},"system":"CMS","value":"1629082607"}],"name":[{"family":"Eddin","given":["Husam"]}]}},{"fullUrl":"DiagnosticReport/1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","resource":{"resourceType":"DiagnosticReport","id":"1714076050653185000.919d3a83-8196-4559-9b09-82223811a264","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"PLAC"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"},{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]},"value":"73a6e9bd-aaec-418e-813a-0ad33366ca85"}],"basedOn":[{"reference":"ServiceRequest/1714076050647840000.cb7f08b5-f042-4af2-99ef-93df2701ae8c"}],"status":"final","code":{"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","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1714076050474891000.93554b06-037d-423d-a6d9-acff906d8d4a"},"effectivePeriod":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valuePeriod":{"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}}}],"start":"2021-02-09T00:00:00-06:00","_start":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"end":"2021-02-09T00:00:00-06:00","_end":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]}},"issued":"2021-02-09T00:00:00-06:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"202102090000-0600"}]},"specimen":[{"reference":"Specimen/1714076050637369000.7c579064-c691-42a7-89d4-02a2fa00d924"},{"reference":"Specimen/1714076050635518000.e5c47b4d-4404-4edd-bc07-142bfc0e90c5"}],"result":[{"reference":"Observation/1714076050479965000.91c31627-78bd-4f0e-83fc-b7749d09d05d"},{"reference":"Observation/1714076050483565000.c539a463-c7a5-41c8-ae9c-9841735124f3"},{"reference":"Observation/1714076050486065000.616b4d6e-faf1-4e12-a255-d8972c32b1d9"},{"reference":"Observation/1714076050487946000.e957be9d-b4fd-4c17-8b44-dde8bf20df85"}]}}]}"""
// The encoding ^~\! make this message not parseable
@Suppress("ktlint:standard:max-line-length")
@@ -161,7 +162,7 @@ SPM|1|^dba7572cc6334f1ea0744c5f235c823e&MMTC.PROD&2.16.840.1.113883.3.8589.4.2.1
@Suppress("ktlint:standard:max-line-length")
const val validRadxMarsHL7MessageConverted =
- """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"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":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"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.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"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":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","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/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","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"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{ },{ }],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"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":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","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":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}]}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}"""
+ """{"resourceType":"Bundle","id":"1721777538349722000.36548b19-d5d0-49bf-ad94-aad0220b4d57","meta":{"lastUpdated":"2024-07-23T16:32:18.355-07:00"},"identifier":{"system":"https://reportstream.cdc.gov/prime-router","value":"20240403205305_dba7572cc6334f1ea0744c5f235c823e"},"type":"message","timestamp":"2024-04-03T13:53:05.000-07:00","entry":[{"fullUrl":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051","resource":{"resourceType":"MessageHeader","id":"df373c48-bfb2-36b0-b63c-5be13bc5d051","meta":{"tag":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0103","code":"P"}]},"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header","extension":[{"url":"MSH.7","valueString":"20240403205305+0000"},{"url":"MSH.15","valueString":"NE"},{"url":"MSH.16","valueString":"NE"},{"url":"MSH.21","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"ELR251R1_Rcvr_Prof"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.9.11"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"value":"PHLabReport-NoAck"}}]}],"eventCoding":{"system":"http://terminology.hl7.org/CodeSystem/v2-0003","code":"R01","display":"ORU^R01^ORU_R01"},"destination":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.114222.4.3.15.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.5"}],"name":"AIMS.INTEGRATION.PRD","endpoint":"urn:oid:2.16.840.1.114222.4.3.15.1","receiver":{"reference":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6"}}],"sender":{"reference":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73"},"source":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.3"}],"software":"MMTC.PROD","version":"2022","endpoint":"urn:oid:2.16.840.1.113883.3.8589.4.2.106.1"}}},{"fullUrl":"Organization/1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","resource":{"resourceType":"Organization","id":"1721777538383046000.6716227e-0a80-4288-9174-d85df9dc0c73","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"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":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","resource":{"resourceType":"Organization","id":"1721777538401451000.9e62ff00-fd0d-45c6-8f0a-0e66837274e6","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"MSH.6"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"AIMS.PLATFORM"},{"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.114222.4.1.217446"}]}},{"fullUrl":"Provenance/1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","resource":{"resourceType":"Provenance","id":"1721777538618773000.9aa057e0-c5d8-42e1-a036-5ad2fc58b81d","target":[{"reference":"MessageHeader/df373c48-bfb2-36b0-b63c-5be13bc5d051"},{"reference":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765"}],"recorded":"2024-04-03T20:53:05Z","activity":{"coding":[{"display":"ORU^R01^ORU_R01"}]},"agent":[{"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/provenance-participant-type","code":"author"}]},"who":{"reference":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072"}}],"entity":[{"role":"source","what":{"reference":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3"}}]}},{"fullUrl":"Organization/1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","resource":{"resourceType":"Organization","id":"1721777538618089000.fc42e742-9b78-4f07-b2e2-e4fff4d7d072","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"HD.1"}],"value":"CAREEVOLUTION"},{"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":"CLIA"}]},"value":"00Z0000024"}]}},{"fullUrl":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","resource":{"resourceType":"Organization","id":"1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7","name":"CAREEVOLUTION"}},{"fullUrl":"Device/1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","resource":{"resourceType":"Device","id":"1721777538621171000.7fd0d9cf-dcd1-48be-821c-2541e02846c3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org","valueReference":{"reference":"Organization/1721777538621020000.28daf3a1-e092-49d7-9eed-c0c65273bbe7"}}],"manufacturer":"CAREEVOLUTION","deviceName":[{"name":"MMTC.PROD","type":"manufacturer-name"}],"modelNumber":"16498","version":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date","valueDateTime":"2024-04-02","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240402"}]}}],"value":"2022"}]}},{"fullUrl":"Provenance/1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","resource":{"resourceType":"Provenance","id":"1721777538626120000.12c5c4a0-02fd-461a-947a-07205545d44e","recorded":"2024-07-23T16:32:18Z","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/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539"}}]}},{"fullUrl":"Organization/1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","resource":{"resourceType":"Organization","id":"1721777538625896000.32610f33-26e9-464b-a07a-8bae14184539","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"}]}},{"fullUrl":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","resource":{"resourceType":"Patient","id":"1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier","extension":[{"url":"CX.5","valueString":"PI"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"PID.3"}],"type":{"coding":[{"code":"PI"}]},"system":"MMTC.PROD","_system":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"}]},"value":"8be6fa3710374dcebe0174e0fd5a1a7c"}],"name":[{},{}],"telecom":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-area","valueString":"111"},{"url":"http://hl7.org/fhir/StructureDefinition/contactpoint-local","valueString":"1111111"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point","extension":[{"url":"XTN.7","valueString":"1111111"}]}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]},"use":"home"}],"address":[{"postalCode":"02139","country":"USA"}]}},{"fullUrl":"Provenance/1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","resource":{"resourceType":"Provenance","id":"1721777538640288000.b62e5812-4284-4220-bf36-f14a3529244f","target":[{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"}],"recorded":"2024-07-23T16:32:18Z","activity":{"coding":[{"system":"https://terminology.hl7.org/CodeSystem/v3-DataOperation","code":"UPDATE"}]}}},{"fullUrl":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","resource":{"resourceType":"Observation","id":"1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"CWE"},{"url":"OBX.11","valueString":"F"},{"url":"OBX.17","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":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}]}],"status":"final","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a"},{"reference":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba"}],"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":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"260373001","display":"Detected"}]},"note":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation","extension":[{"url":"NTE.2","valueId":"L"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment","valueId":"Note"}],"text":"Note"}],"method":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"99ELR"}],"version":"Vunknown","code":"BinaxNOW COVID-19 Antigen Self Test_Abbott Diagnostics Scarborough, Inc._EUA"}]}}},{"fullUrl":"Organization/1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","resource":{"resourceType":"Organization","id":"1721777538643252000.4acb5bbf-266e-4ec7-bb08-3ea096df316a","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","resource":{"resourceType":"Organization","id":"1721777538643966000.3a142429-e9b4-4094-9dd9-80b0f300baba","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133","resource":{"resourceType":"Observation","id":"1721777538647578000.c2004093-e546-4860-8033-58cba343f133","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation","extension":[{"url":"OBX.2","valueId":"NM"},{"url":"OBX.6","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":"UCUM"}],"system":"http://unitsofmeasure.org","version":"2.1","code":"a","display":"year"}]}},{"url":"OBX.29","valueId":"QST"},{"url":"OBX.11","valueString":"F"}]}],"status":"final","code":{"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":"2.71","code":"35659-2","display":"Age at specimen collection"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"performer":[{"reference":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92"},{"reference":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449"}],"valueQuantity":{"value":24,"unit":"year","system":"UCUM","code":"a"}}},{"fullUrl":"Organization/1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","resource":{"resourceType":"Organization","id":"1721777538648041000.5fd91347-5fb6-473e-a029-e8ae78fd1b92","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization","valueCodeableConcept":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"}],"code":"00Z0000042"}]}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.15"}],"identifier":[{"value":"00Z0000042"}]}},{"fullUrl":"Organization/1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","resource":{"resourceType":"Organization","id":"1721777538648734000.fd1f1251-3bbe-4721-847e-8660632f2449","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization","extension":[{"url":"XON.10","valueString":"00Z0000042"}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBX.25"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.1.152"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name","valueString":"identifier"}],"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"XX"}]},"value":"00Z0000042"}],"name":"SA.OTCSelfReport"}},{"fullUrl":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","resource":{"resourceType":"Specimen","id":"1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"OBR"}],"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","resource":{"resourceType":"Specimen","id":"1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment","valueString":"SPM"}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueString":"ISO"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component","valueString":"SPM.2.2"}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FGN"}]},"value":"dba7572cc6334f1ea0744c5f235c823e"}],"type":{"coding":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding","valueString":"coding"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system","valueString":"SCT"}],"system":"http://snomed.info/sct","version":"20200901","code":"697989009","display":"Anterior nares swab"}]},"receivedTime":"2024-04-03T12:00:00-04:00","_receivedTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"collection":{"collectedDateTime":"2024-04-03T12:00:00-04:00","_collectedDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}}}},{"fullUrl":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","resource":{"resourceType":"ServiceRequest","id":"1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/business-event","valueCode":"RE"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order","extension":[{"url":"orc-21-ordering-facility-name","valueReference":{"reference":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f"}},{"url":"orc-22-ordering-facility-address","valueAddress":{"postalCode":"02139"}},{"url":"orc-12-ordering-provider","valueReference":{"reference":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}}]},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request","extension":[{"url":"OBR.3","valueIdentifier":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}]}},{"url":"OBR.7","valueDateTime":"2024-04-03T12:00:00-04:00","_valueDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]}},{"url":"OBR.22","valueString":"20240403120000-0400"},{"url":"OBR.25","valueId":"F"},{"url":"OBR.16","valueReference":{"reference":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"OBR.17"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}]}],"identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.3"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"status":"unknown","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"requester":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number","valueContactPoint":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.14"}],"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}}],"reference":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1"}}},{"fullUrl":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","resource":{"resourceType":"Practitioner","id":"1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field","valueString":"ORC.12"}]}},{"fullUrl":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","resource":{"resourceType":"Organization","id":"1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091","name":"SA.OTCSelfReport","telecom":[{"_system":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/data-absent-reason","valueCode":"unknown"}]}}],"address":[{"postalCode":"02139"}]}},{"fullUrl":"PractitionerRole/1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","resource":{"resourceType":"PractitionerRole","id":"1721777538761373000.d8a566a3-3add-443e-b4a9-ff86df482bc1","practitioner":{"reference":"Practitioner/1721777538761935000.825f57d6-5ffe-47e8-8a88-d35f9479e6ab"},"organization":{"reference":"Organization/1721777538762774000.14789ed4-aeaf-489d-b55d-bc9ba4020091"}}},{"fullUrl":"Organization/1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","resource":{"resourceType":"Organization","id":"1721777538764342000.7d31256c-b68f-424e-ae46-3f11938e254f","name":"SA.OTCSelfReport"}},{"fullUrl":"Practitioner/1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8","resource":{"resourceType":"Practitioner","id":"1721777538764987000.cddc93f3-5715-4a2c-b6b1-9757f69bfea8"}},{"fullUrl":"Practitioner/1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7","resource":{"resourceType":"Practitioner","id":"1721777538765681000.ff566bb1-26c4-4a05-b451-30e36091cbb7"}},{"fullUrl":"DiagnosticReport/1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","resource":{"resourceType":"DiagnosticReport","id":"1721777538769739000.c07a251c-772a-490e-86eb-eaa4da1c7765","identifier":[{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority","extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id","valueString":"MMTC.PROD"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id","valueString":"2.16.840.1.113883.3.8589.4.2.106.1"},{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type","valueCode":"ISO"}]}],"type":{"coding":[{"system":"http://terminology.hl7.org/CodeSystem/v2-0203","code":"FILL"}]}}],"basedOn":[{"reference":"ServiceRequest/1721777538766651000.67fb7925-4477-463f-ace7-6a4ccde323e3"}],"status":"final","code":{"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":"2.71","code":"94558-4","display":"SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen by Rapid immunoassay"}]},"subject":{"reference":"Patient/1721777538639185000.09cc50e9-5147-4f54-bcab-99804188e19e"},"effectiveDateTime":"2024-04-03T12:00:00-04:00","_effectiveDateTime":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"issued":"2024-04-03T12:00:00-04:00","_issued":{"extension":[{"url":"https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time","valueString":"20240403120000-0400"}]},"specimen":[{"reference":"Specimen/1721777538760528000.bc0d5494-ded7-4f59-ae98-0fa99c6f1f08"},{"reference":"Specimen/1721777538758931000.01b3d3a6-3c7b-4857-8bf9-8f134b096b5b"}],"result":[{"reference":"Observation/1721777538642873000.d0f720df-d3cf-4d6e-94ff-225dee52f81d"},{"reference":"Observation/1721777538647578000.c2004093-e546-4860-8033-58cba343f133"}]}}]}"""
@Suppress("ktlint:standard:max-line-length")
const val invalidRadxMarsHL7Message =
@@ -452,7 +453,8 @@ object UniversalPipelineTestUtils {
event,
Topic.FULL_ELR,
parentReport,
- blobUrl
+ blobUrl,
+ reportContents,
)
}
@@ -464,6 +466,7 @@ object UniversalPipelineTestUtils {
topic: Topic,
parentReport: Report? = null,
bodyURL: String? = null,
+ reportContents: String,
): Report {
val report = Report(
fileFormat,
@@ -493,6 +496,7 @@ object UniversalPipelineTestUtils {
.setBodyUrl(report.bodyURL)
.setSendingOrg(universalPipelineOrganization.name)
.setSendingOrgClient("Test Sender")
+ .setBlobDigest(sha256Digest(reportContents.toByteArray(Charsets.UTF_8)))
ReportStreamTestDatabaseContainer.testDatabaseAccess.insertReportFile(
reportFile, txn, action
diff --git a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt
index df375e85ed3..99eada67991 100644
--- a/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt
+++ b/prime-router/src/test/kotlin/fhirengine/azure/FHIRTranslatorIntegrationTests.kt
@@ -1,7 +1,9 @@
package gov.cdc.prime.router.fhirengine.azure
import assertk.assertThat
+import assertk.assertions.hasSize
import assertk.assertions.isEqualTo
+import assertk.assertions.isInstanceOf
import assertk.assertions.isNotEqualTo
import assertk.assertions.isNotNull
import assertk.assertions.isNull
@@ -22,7 +24,10 @@ import gov.cdc.prime.router.azure.db.enums.TaskAction
import gov.cdc.prime.router.azure.db.tables.Task
import gov.cdc.prime.router.azure.observability.event.AzureEventService
import gov.cdc.prime.router.azure.observability.event.InMemoryAzureEventService
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventName
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventProperties
import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService
+import gov.cdc.prime.router.azure.observability.event.ReportStreamItemEvent
import gov.cdc.prime.router.cli.tests.CompareData
import gov.cdc.prime.router.common.TestcontainersUtils
import gov.cdc.prime.router.common.UniversalPipelineTestUtils
@@ -191,6 +196,21 @@ class FHIRTranslatorIntegrationTests : Logging {
QueueAccess.sendMessage(any(), any())
}
+ // check events
+ assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1)
+ assertThat(
+ azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first()
+ ).isInstanceOf()
+ val event = azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent
+ assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("HL7")
+ assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x")
+ val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*>
+ assertThat(enrichments).hasSize(1)
+ assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName)
+
// check action table
UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate))
@@ -289,6 +309,21 @@ class FHIRTranslatorIntegrationTests : Logging {
QueueAccess.sendMessage(any(), any())
}
+ // check events
+ assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1)
+ assertThat(
+ azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first()
+ ).isInstanceOf()
+ val event = azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent
+ assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("HL7")
+ assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x")
+ val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*>
+ assertThat(enrichments).hasSize(1)
+ assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName)
+
// check action table
UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate))
@@ -364,6 +399,21 @@ class FHIRTranslatorIntegrationTests : Logging {
QueueAccess.sendMessage(any(), any())
}
+ // check events
+ assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1)
+ assertThat(
+ azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first()
+ ).isInstanceOf()
+ val event = azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent
+ assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x")
+ val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*>
+ assertThat(enrichments).hasSize(1)
+ assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName)
+
// check action table
UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate))
@@ -449,6 +499,21 @@ class FHIRTranslatorIntegrationTests : Logging {
QueueAccess.sendMessage(any(), any())
}
+ // check events
+ assertThat(azureEventService.reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!).hasSize(1)
+ assertThat(
+ azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first()
+ ).isInstanceOf()
+ val event = azureEventService
+ .reportStreamEvents[ReportStreamEventName.ITEM_TRANSFORMED]!!.first() as ReportStreamItemEvent
+ assertThat(event.params[ReportStreamEventProperties.ORIGINAL_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.TARGET_FORMAT]).isEqualTo("FHIR")
+ assertThat(event.params[ReportStreamEventProperties.RECEIVER_NAME]).isEqualTo("phd.x")
+ val enrichments = event.params[ReportStreamEventProperties.ENRICHMENTS] as List<*>
+ assertThat(enrichments).hasSize(1)
+ assertThat(enrichments.first()).isEqualTo(receiverSetupData.first().schemaName)
+
// check action table
UniversalPipelineTestUtils.checkActionTable(listOf(TaskAction.receive, TaskAction.translate))
diff --git a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt
index b6944b9dce9..3f0ad2531aa 100644
--- a/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt
+++ b/prime-router/src/test/kotlin/fhirengine/engine/FhirTranslatorTests.kt
@@ -16,6 +16,7 @@ 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.Report
import gov.cdc.prime.router.Schema
import gov.cdc.prime.router.SettingsProvider
import gov.cdc.prime.router.Topic
@@ -24,7 +25,10 @@ import gov.cdc.prime.router.azure.BlobAccess
import gov.cdc.prime.router.azure.DatabaseAccess
import gov.cdc.prime.router.azure.db.enums.TaskAction
import gov.cdc.prime.router.azure.db.tables.pojos.Action
+import gov.cdc.prime.router.azure.db.tables.pojos.ReportFile
+import gov.cdc.prime.router.azure.observability.event.ReportStreamEventService
import gov.cdc.prime.router.fhirengine.utils.FhirTranscoder
+import gov.cdc.prime.router.report.ReportService
import gov.cdc.prime.router.unittest.UnitTestUtils
import io.mockk.clearAllMocks
import io.mockk.every
@@ -75,6 +79,8 @@ class FhirTranslatorTests {
)
)
)
+ val reportServiceMock = mockk()
+ val reportStreamEventService = mockk()
private fun makeFhirEngine(
metadata: Metadata = Metadata(
@@ -87,7 +93,8 @@ class FhirTranslatorTests {
settings: SettingsProvider = FileSettings().loadOrganizations(oneOrganization),
): FHIRTranslator {
return FHIREngine.Builder().metadata(metadata).settingsProvider(settings).databaseAccess(accessSpy)
- .blobAccess(blobMock).build(TaskAction.translate) as FHIRTranslator
+ .blobAccess(blobMock).reportService(reportServiceMock).reportEventService(reportStreamEventService)
+ .build(TaskAction.translate) as FHIRTranslator
}
@BeforeEach
@@ -106,10 +113,11 @@ class FhirTranslatorTests {
val actionLogger = mockk()
val engine = makeFhirEngine()
+ val reportId = UUID.randomUUID()
val message =
spyk(
FhirTranslateQueueMessage(
- UUID.randomUUID(),
+ reportId,
BLOB_URL,
"test",
BLOB_SUB_FOLDER,
@@ -120,6 +128,7 @@ class FhirTranslatorTests {
val bodyFormat = MimeFormat.FHIR
val bodyUrl = BODY_URL
+ val rootReport = mockk()
every { actionLogger.hasErrors() } returns false
every { BlobAccess.downloadBlob(any(), any()) }
@@ -154,6 +163,15 @@ class FhirTranslatorTests {
""
)
)
+ every { rootReport.reportId } returns reportId
+ every { rootReport.sendingOrg } returns oneOrganization.name
+ every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName
+ every { rootReport.bodyFormat } returns bodyFormat.toString()
+ every { reportServiceMock.getRootReport(any()) } returns rootReport
+ every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport)
+ every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1
+ every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8)
+ every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit
// act
accessSpy.transact { txn ->
@@ -167,6 +185,88 @@ class FhirTranslatorTests {
BlobAccess.Companion.uploadBlob(any(), any(), any())
accessSpy.insertTask(any(), any(), any(), any(), any())
actionHistory.trackActionReceiverInfo(any(), any())
+ reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any())
+ }
+ }
+
+ @Test
+ fun `test translation happy path with file digest exception`() {
+ mockkObject(BlobAccess)
+ mockkObject(BlobAccess.BlobContainerMetadata)
+
+ // set up
+ val actionHistory = mockk()
+ val actionLogger = mockk()
+ val engine = makeFhirEngine()
+
+ val reportId = UUID.randomUUID()
+ val message =
+ spyk(
+ FhirTranslateQueueMessage(
+ reportId,
+ BLOB_URL,
+ "test",
+ BLOB_SUB_FOLDER,
+ topic = Topic.ELR_ELIMS,
+ oneOrganization.receivers[0].fullName
+ )
+ )
+
+ val bodyFormat = MimeFormat.FHIR
+ val bodyUrl = BODY_URL
+ val rootReport = mockk()
+
+ every { actionLogger.hasErrors() } returns false
+ every { actionLogger.error(any()) } returns Unit
+ every { BlobAccess.Companion.uploadBlob(any(), any()) } returns "test"
+ every {
+ BlobAccess.BlobContainerMetadata.build(
+ "metadata",
+ any()
+ )
+ } returns mockk()
+ every { accessSpy.insertTask(any(), bodyFormat.toString(), bodyUrl, any()) }.returns(Unit)
+ every { actionHistory.trackCreatedReport(any(), any(), blobInfo = any()) }.returns(Unit)
+ every { actionHistory.trackExistingInputReport(any()) }.returns(Unit)
+ every { actionHistory.trackActionReceiverInfo(any(), any()) }.returns(Unit)
+ every { actionHistory.action }.returns(
+ Action(
+ 1,
+ TaskAction.receive,
+ "",
+ "",
+ OffsetDateTime.now(),
+ JSONB.valueOf(""),
+ 1,
+ 1,
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ )
+ )
+ every { rootReport.reportId } returns reportId
+ every { rootReport.sendingOrg } returns oneOrganization.name
+ every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName
+ every { rootReport.bodyUrl } returns BLOB_URL
+ every { rootReport.bodyFormat } returns "HL7"
+ every { rootReport.blobDigest } returns reportId.toString().toByteArray(Charsets.UTF_8)
+ every { reportServiceMock.getRootReport(any()) } returns rootReport
+ every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport)
+ every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1
+ every { BlobAccess.downloadBlobAsByteArray(any()) } returns "1".toByteArray(Charsets.UTF_8)
+
+ // act
+ @Suppress("ktlint:standard:max-line-length")
+ accessSpy.transact { txn ->
+ assertFailsWith(
+ message = "Downloaded file does not match expected file\n" +
+ "test | 6bffffff86ffffffb273ffffffff34fffffffcffffffe1ffffff9d6bffffff804effffffff5a3f5747ffffffadffffffa4ffffffeaffffffa22f1d49ffffffc01e52ffffffddffffffb7ffffff875b4b",
+ block = { engine.run(message, actionLogger, actionHistory, txn) }
+ )
}
}
@@ -182,9 +282,10 @@ class FhirTranslatorTests {
val actionLogger = mockk()
val engine = makeFhirEngine(settings = settings)
+ val reportId = UUID.randomUUID()
val message = spyk(
FhirTranslateQueueMessage(
- UUID.randomUUID(),
+ reportId,
BLOB_URL,
"test",
BLOB_SUB_FOLDER,
@@ -195,6 +296,7 @@ class FhirTranslatorTests {
val bodyFormat = MimeFormat.FHIR
val bodyUrl = BODY_URL
+ val rootReport = mockk()
every { actionLogger.hasErrors() } returns false
every { BlobAccess.downloadBlob(any(), any()) }
.returns(File(VALID_DATA_URL).readText())
@@ -229,6 +331,15 @@ class FhirTranslatorTests {
)
)
+ every { rootReport.reportId } returns reportId
+ every { rootReport.bodyFormat } returns bodyFormat.toString()
+ every { rootReport.sendingOrg } returns oneOrganization.name
+ every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName
+ every { reportServiceMock.getRootReport(any()) } returns rootReport
+ every { reportServiceMock.getRootReports(any()) } returns listOf(rootReport)
+ every { reportServiceMock.getRootItemIndex(any(), any()) } returns 1
+ every { reportStreamEventService.sendItemEvent(any(), any(), any(), any(), any()) } returns Unit
+
// act
accessSpy.transact { txn ->
engine.run(message, actionLogger, actionHistory, txn)
@@ -475,9 +586,10 @@ class FhirTranslatorTests {
val actionHistory = mockk()
val actionLogger = mockk()
+ val reportId = UUID.randomUUID()
val message = spyk(
FhirTranslateQueueMessage(
- UUID.randomUUID(),
+ reportId,
BLOB_URL,
"test",
BLOB_SUB_FOLDER,
@@ -488,6 +600,13 @@ class FhirTranslatorTests {
val bodyFormat = MimeFormat.FHIR
val bodyUrl = BODY_URL
+ val rootReport = mockk()
+
+ every { rootReport.reportId } returns reportId
+ every { rootReport.sendingOrg } returns oneOrganization.name
+ every { rootReport.sendingOrgClient } returns oneOrganization.receivers[0].fullName
+ every { rootReport.bodyFormat } returns bodyFormat.toString()
+ every { reportServiceMock.getRootReport(any()) } returns rootReport
every { actionLogger.hasErrors() } returns false
every { actionLogger.error(any()) } returns Unit
diff --git a/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt b/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt
new file mode 100644
index 00000000000..a519bcf396e
--- /dev/null
+++ b/prime-router/src/test/kotlin/fhirengine/translation/hl7/utils/HL7ACKUtilsTest.kt
@@ -0,0 +1,66 @@
+package gov.cdc.prime.router.fhirengine.translation.hl7.utils
+
+import assertk.assertThat
+import assertk.assertions.isEqualTo
+import gov.cdc.prime.router.ActionLogger
+import gov.cdc.prime.router.cli.helpers.HL7DiffHelper
+import gov.cdc.prime.router.fhirengine.utils.HL7Reader
+import io.mockk.every
+import io.mockk.mockkStatic
+import io.mockk.unmockkAll
+import org.junit.jupiter.api.AfterEach
+import java.time.Clock
+import java.time.LocalDateTime
+import java.time.ZoneId
+import java.time.ZoneOffset
+import java.util.UUID
+import kotlin.test.Test
+
+class HL7ACKUtilsTest {
+
+ inner class Fixture {
+ val hl7Reader = HL7Reader(ActionLogger())
+ val hl7DiffHelper = HL7DiffHelper()
+
+ private val clock = Clock.fixed(
+ LocalDateTime.of(2024, 9, 21, 0, 0).toInstant(ZoneOffset.UTC),
+ ZoneId.of("UTC")
+ )
+ val utils = HL7ACKUtils(clock)
+ }
+
+ @AfterEach
+ fun cleanUp() {
+ unmockkAll()
+ }
+
+ @Test
+ fun `generates properly formatted ACK response`() {
+ val f = Fixture()
+
+ val id = UUID.randomUUID()
+ mockkStatic(UUID::class)
+ every { UUID.randomUUID() } returns id
+
+ val incomingMessage = """
+ MSH|^~\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE
+ """.trimIndent()
+ val parsedIncomingMessage = f.hl7Reader.getMessages(incomingMessage).first()
+
+ val ack = f.utils.generateOutgoingACKMessage(parsedIncomingMessage)
+
+ val expected = f.hl7Reader.getMessages(
+ """
+ MSH|^~\&|ReportStream|CDC|Epic|Hospital|20240921000000+0000||ACK|$id|T|2.5.1|||NE|NE
+ MSA|CA|4AFA57FE-D41D-4631-9500-286AAAF797E4
+ """
+ ).first()
+ val actual = f.hl7Reader.getMessages(ack).first()
+
+ val diffs = f.hl7DiffHelper.diffHl7(expected, actual)
+ if (diffs.isNotEmpty()) {
+ println(diffs)
+ }
+ assertThat(diffs.size).isEqualTo(0)
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt b/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt
index b6f96931f78..aef41a860bf 100644
--- a/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt
+++ b/prime-router/src/test/kotlin/fhirengine/utils/HL7ReaderTests.kt
@@ -469,4 +469,27 @@ OBX|1|test|94558-4^SARS-CoV-2 (COVID-19) Ag [Presence] in Respiratory specimen b
val obxSegment = Terser(messages[0]).getSegment("/PATIENT_RESULT/ORDER_OBSERVATION/OBSERVATION/OBX") as OBX
assertThat(obxSegment.getObservationValue(0).data).isInstanceOf(CWE::class)
}
+
+ @Test
+ fun `extract MSH segment values`() {
+ val actionLogger = ActionLogger()
+ val hL7Reader = HL7Reader(actionLogger)
+
+ @Suppress("ktlint:standard:max-line-length")
+ val rawMessage = "MSH|^~\\&|Epic|Hospital|LIMS|StatePHL|20241003000000||ORM^O01^ORM_O01|4AFA57FE-D41D-4631-9500-286AAAF797E4|T|2.5.1|||AL|NE"
+ val message = hL7Reader.getMessages(rawMessage).first()
+
+ assertThat(
+ HL7Reader.getSendingApplication(message)
+ ).isEqualTo("Epic")
+ assertThat(
+ HL7Reader.getSendingFacility(message),
+ ).isEqualTo("Hospital")
+ assertThat(
+ HL7Reader.getMessageControlId(message)
+ ).isEqualTo("4AFA57FE-D41D-4631-9500-286AAAF797E4")
+ assertThat(
+ HL7Reader.getAcceptAcknowledgmentType(message)
+ ).isEqualTo("AL")
+ }
}
\ No newline at end of file
diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir
index df545a4de85..fdf253fc0b0 100644
--- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir
+++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_FULLELR.fhir
@@ -1,15640 +1,22140 @@
{
- "resourceType" : "Bundle",
- "id" : "1730838914186143000.86c6399a-e72b-4c2b-881a-f61e5cb64acb",
- "meta" : {
- "lastUpdated" : "2024-11-05T15:35:14.191-05:00"
+ "resourceType": "Bundle",
+ "id": "1732567199002523000.08f9355b-b13c-43e2-8c36-a5f153920e42",
+ "meta": {
+ "lastUpdated": "2024-11-25T15:39:59.002-05:00"
},
- "identifier" : {
- "system" : "https://reportstream.cdc.gov/prime-router",
- "value" : "MT_COCAA_ORU_AAPHELR.1.6214638"
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "MT_COCAA_ORU_AAPHELR.1.6214638"
},
- "type" : "message",
- "timestamp" : "2028-08-08T11:28:05.000-04:00",
- "entry" : [ {
- "fullUrl" : "MessageHeader/1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d",
- "resource" : {
- "resourceType" : "MessageHeader",
- "id" : "1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d",
- "meta" : {
- "tag" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- } ]
- },
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
- "valueString" : "^~\\"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
- "extension" : [ {
- "url" : "MSH.7",
- "valueString" : "20280808092805-0600"
- }, {
- "url" : "MSH.21",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "HL7"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.1.11"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "PHLabReport-NoAck"
- }
- } ]
- } ],
- "eventCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "R01",
- "display" : "ORU^R01^ORU_R01"
- },
- "destination" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144.2.5"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.5"
- } ],
- "name" : "DCEED.ELR",
- "endpoint" : "urn:oid:2.16.840.1.114222.4.1.144.2.5",
- "receiver" : {
- "reference" : "Organization/1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa"
+ "type": "message",
+ "timestamp": "2028-08-08T11:28:05.000-04:00",
+ "entry": [
+ {
+ "fullUrl": "MessageHeader/1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94",
+ "meta": {
+ "tag": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0103",
+ "code": "P"
+ }
+ ]
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString": "^~\\\u0026#"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension": [
+ {
+ "url": "MSH.7",
+ "valueString": "20280808092805-0600"
+ },
+ {
+ "url": "MSH.21",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "HL7"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.1.11"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "PHLabReport-NoAck"
+ }
+ }
+ ]
+ }
+ ],
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "R01",
+ "display": "ORU^R01^ORU_R01"
+ },
+ "destination": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144.2.5"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.5"
+ }
+ ],
+ "name": "DCEED.ELR",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.1.144.2.5",
+ "receiver": {
+ "reference": "Organization/1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227"
+ }
+ }
+ ],
+ "sender": {
+ "reference": "Organization/1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325"
+ },
+ "source": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.3"
+ }
+ ],
+ "software": "Laboratory Applicati",
+ "version": "5.67",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.3.2.2.1.321.111"
}
- } ],
- "sender" : {
- "reference" : "Organization/1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e"
- },
- "source" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.3"
- } ],
- "software" : "Laboratory Applicati",
- "version" : "5.67",
- "endpoint" : "urn:oid:2.16.840.1.114222.4.3.2.2.1.321.111"
}
- }
- }, {
- "fullUrl" : "Organization/1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914222135000.950157a5-db43-47f1-bd11-77acd2698a7e",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914241687000.38e365c3-96b6-4f94-adb8-c51cf51ee4fa",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.6"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "CDPHE"
- }, {
- "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.114222.4.1.144"
- } ]
- }
- }, {
- "fullUrl" : "Provenance/1730838914496493000.3152c839-7df0-4e43-8edd-00da11597746",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1730838914496493000.3152c839-7df0-4e43-8edd-00da11597746",
- "target" : [ {
- "reference" : "MessageHeader/1730838914242587000.e098f908-1633-482d-a6b9-cb41b799791d"
- }, {
- "reference" : "DiagnosticReport/1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e"
- }, {
- "reference" : "DiagnosticReport/1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4"
- }, {
- "reference" : "DiagnosticReport/1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a"
- }, {
- "reference" : "DiagnosticReport/1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444"
- }, {
- "reference" : "DiagnosticReport/1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655"
- } ],
- "recorded" : "2028-08-08T09:28:05-06:00",
- "activity" : {
- "coding" : [ {
- "display" : "ORU^R01^ORU_R01"
- } ]
- },
- "agent" : [ {
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "author"
- } ]
- },
- "who" : {
- "reference" : "Organization/1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a"
+ },
+ {
+ "fullUrl": "Organization/1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199003506000.45e9129c-fbb9-4b84-84db-8e1f7f3e2325",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199004102000.9b13857b-8f0b-4db3-afd1-423b67991227",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "CDPHE"
+ },
+ {
+ "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.114222.4.1.144"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732567199005807000.c686b48b-a0d9-4ec1-9f73-a38cf10999d0",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732567199005807000.c686b48b-a0d9-4ec1-9f73-a38cf10999d0",
+ "target": [
+ {
+ "reference": "MessageHeader/1732567199004404000.467e37ca-f9d3-472b-b540-e218951a1b94"
+ },
+ {
+ "reference": "DiagnosticReport/1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386"
+ },
+ {
+ "reference": "DiagnosticReport/1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d"
+ },
+ {
+ "reference": "DiagnosticReport/1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6"
+ },
+ {
+ "reference": "DiagnosticReport/1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0"
+ },
+ {
+ "reference": "DiagnosticReport/1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240"
+ }
+ ],
+ "recorded": "2028-08-08T09:28:05-06:00",
+ "activity": {
+ "coding": [
+ {
+ "display": "ORU^R01^ORU_R01"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a"
+ }
+ }
+ ],
+ "entity": [
+ {
+ "role": "source",
+ "what": {
+ "reference": "Device/1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199005638000.0d8e3d94-7a5f-4abe-835b-412b8aadb24a",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "MEDITECH"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.3.6.1.4.1.24310"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "MEDITECH"
+ }
+ ],
+ "name": "MEDITECH, Inc."
+ }
+ },
+ {
+ "fullUrl": "Device/1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732567199006900000.a7666ee4-a336-48a0-90e5-2e50ce5eb764",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
+ "valueReference": {
+ "reference": "Organization/1732567199006813000.48b42179-85c3-4ec7-837d-24790667328a"
+ }
+ }
+ ],
+ "manufacturer": "MEDITECH, Inc.",
+ "deviceName": [
+ {
+ "name": "Laboratory Applicati",
+ "type": "manufacturer-name"
+ }
+ ],
+ "modelNumber": "20210810",
+ "version": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
+ "valueDateTime": "2021-08-10",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810"
+ }
+ ]
+ }
+ }
+ ],
+ "value": "5.67"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732567199007755000.7118b927-40ac-4a1e-b9f1-e513e49f8e25",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732567199007755000.7118b927-40ac-4a1e-b9f1-e513e49f8e25",
+ "recorded": "2024-11-25T15:39:59Z",
+ "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/1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199007627000.aa77d250-b88f-47d2-93ab-ebbbcc5e9bcd",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553",
+ "meta": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id",
+ "valueReference": {
+ "reference": "Organization/1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66"
+ }
+ }
+ ],
+ "lastUpdated": "2021-08-09T08:52:00-06:00",
+ "_lastUpdated": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210809085200-0600"
+ }
+ ]
+ }
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "P"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "EH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "V1",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "EH"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
+ "extension": [
+ {
+ "url": "PID.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "M"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.30",
+ "valueString": "N"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-animal",
+ "extension": [
+ {
+ "url": "species",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.35"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "1",
+ "code": "337915000",
+ "display": "Homo sapiens (organism)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "1",
+ "code": "Human",
+ "display": "Human"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
+ "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": "HL70005"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
+ "version": "2.5.1",
+ "code": "2106-3",
+ "display": "White"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "W",
+ "display": "White"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-religion",
+ "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": "HL70006"
+ }
+ ],
+ "code": "NOE",
+ "display": "Nonreligious"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
+ "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": "HL70189"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
+ "version": "2.5.1",
+ "code": "N",
+ "display": "Not Hispanic or Latino"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.61",
+ "code": "2",
+ "display": "Not Hispanic or Latin"
+ }
+ ]
+ }
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "MR"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "MR"
+ }
+ ]
+ },
+ "system": "MEDITECH",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "100001"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "SS"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "SS"
+ }
+ ]
+ },
+ "system": "MEDITECH",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "285-64-4175"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "MEDITECH",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "X605236"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "AN"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "AN"
+ }
+ ]
+ },
+ "system": "MEDITECH",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MEDITECH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.2.2.1.321.111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "E40014904640"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "LONNIE"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "BIERLY",
+ "given": [
+ "LONNIE"
+ ]
+ }
+ ],
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "6930111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "6930111"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "9999999"
+ },
+ {
+ "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": "9999999"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Business"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "gender": "male",
+ "birthDate": "1936-10-23",
+ "_birthDate": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "19361023"
+ }
+ ]
+ },
+ "deceasedBoolean": false,
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4673 ELM ST"
+ }
+ ]
+ },
+ {
+ "url": "XAD.2",
+ "valueString": "CHERRY CRK NURSING CTR"
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4673 ELM ST",
+ "CHERRY CRK NURSING CTR"
+ ],
+ "city": "CANTERBURY",
+ "state": "IG",
+ "postalCode": "80014",
+ "country": "USA"
+ }
+ ],
+ "maritalStatus": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "S"
+ }
+ ]
+ },
+ "contact": [
+ {
+ "extension": [
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "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": "HL70063"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ }
+ }
+ ],
+ "relationship": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70063"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ }
+ ],
+ "name": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "SURYAN",
+ "given": [
+ "GENARO"
+ ]
+ },
+ "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": "3013954"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "3013954"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "home"
+ }
+ ],
+ "address": {
+ "extension": [
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ "organization": {
+ "reference": "Organization/1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199008445000.f06dcf06-5e1a-4803-a979-dae818f26f49",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199009070000.8762fa4b-e253-4bb0-9cd3-838f96fa135c",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199009661000.895e75a4-3a3d-42ac-b425-fca4a15ff565",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199010379000.4dff1ca0-016c-4f61-9f37-49ea51a72952",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199018837000.90d318e1-73bb-4b7c-b710-0d65228b5a66",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199020915000.6dd63ecd-8dd2-4324-9ead-39535f6cd4aa",
+ "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": "3013954"
+ },
+ {
+ "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": "3013954"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "address": {
+ "extension": [
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "AURORA",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732567199027382000.fe8d4ab2-adba-4b4f-a211-a70e1af0e773",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732567199027382000.fe8d4ab2-adba-4b4f-a211-a70e1af0e773",
+ "target": [
+ {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ }
+ ],
+ "occurredDateTime": "2021-08-09T08:52:00-06:00",
+ "recorded": "2024-11-25T15:39:59Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "performer"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199027242000.ab264c8d-5532-44b8-8bf0-6d067e6bffc5",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732567199030030000.b81bb95a-e977-4e0f-860b-322b0685fdc0",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732567199030030000.b81bb95a-e977-4e0f-860b-322b0685fdc0",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
+ }
+ ],
+ "patient": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "relationship": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70063"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "SURYAN",
+ "given": [
+ "GENARO"
+ ]
+ }
+ ],
+ "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": "3013954"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "3013954"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
+ }
+ ],
+ "system": "phone",
+ "use": "home"
+ },
+ {
+ "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": "3013954"
+ },
+ {
+ "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": "3013954"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.31"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.4"
+ },
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.32"
+ },
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "AURORA",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c",
+ "resource": {
+ "resourceType": "Encounter",
+ "id": "1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit",
+ "extension": [
+ {
+ "url": "PV1.18",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "IN"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.39",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "COCAA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.41",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AD"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "status": "in-progress",
+ "class": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "I"
+ }
+ ]
+ }
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
+ "code": "IMP",
+ "display": "inpatient encounter"
+ },
+ "type": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "E"
+ }
+ ]
+ }
+ ],
+ "serviceType": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "ICU"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "episodeOfCare": [
+ {
+ "reference": "EpisodeOfCare/1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38"
+ }
+ ],
+ "participant": [
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ATND",
+ "display": "attender"
+ }
+ ]
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ADM"
+ }
+ ],
+ "text": "admitter"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f"
+ }
+ }
+ ],
+ "period": {
+ "start": "2028-08-02T05:56:00Z",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202808020556"
+ }
+ ]
+ }
+ },
+ "hospitalization": {
+ "admitSource": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "PR"
+ }
+ ]
+ },
+ "dischargeDisposition": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SAP"
+ }
+ ]
+ }
+ },
+ "location": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.3"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a"
+ },
+ "status": "active"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199036256000.e300ef6f-d1d5-4307-bab2-1acb5127291a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "James"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Madison"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.7"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "Medical Center of Au",
+ "value": "1437205069"
+ }
+ ],
+ "name": [
+ {
+ "family": "Hunt",
+ "given": [
+ "James",
+ "Madison"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199037634000.db3178c2-55d7-4fbc-b85a-8ebc37a3a700",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "James"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Madison"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.8"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "Medical Center of Au",
+ "value": "1437205069"
+ }
+ ],
+ "name": [
+ {
+ "family": "Hunt",
+ "given": [
+ "James",
+ "Madison"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199039922000.00cde554-1490-4a7d-b140-feed9bc52201",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "James"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Madison"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "Medical Center of Au",
+ "value": "1437205069"
+ }
+ ],
+ "name": [
+ {
+ "family": "Hunt",
+ "given": [
+ "James",
+ "Madison"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Medical Center of Au"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199040769000.9a1f1d90-965c-4c09-9958-a584cd15f545",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "James"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "M"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1962467126",
+ "assigner": {
+ "reference": "Organization/1732567199040132000.00659366-2881-41e3-9a11-2ddfba58e29e"
+ }
+ }
+ ],
+ "name": [
+ {
+ "family": "Neid",
+ "given": [
+ "James",
+ "M"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Medical Center of Au"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199041558000.b95ec212-9b02-455e-9719-556d749fa7b8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Todd"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "NP"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1184669806",
+ "assigner": {
+ "reference": "Organization/1732567199040970000.5735462e-1f52-4fce-8dd7-40b88c0985df"
+ }
+ }
+ ],
+ "name": [
+ {
+ "family": "Hultman",
+ "given": [
+ "Todd"
+ ],
+ "suffix": [
+ "NP"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199042363000.798ea31c-9244-4a74-a1ea-054cfcecb55f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Medical Center of Au"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "James"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Madison"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.17"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "Medical Center of Au",
+ "value": "1437205069"
+ }
+ ],
+ "name": [
+ {
+ "family": "Hunt",
+ "given": [
+ "James",
+ "Madison"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "E.ICUB"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ]
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
}
- } ],
- "entity" : [ {
- "role" : "source",
- "what" : {
- "reference" : "Device/1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "E.ICB"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ]
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732567199043402000.b2cd2b55-3968-4ecf-8417-b8e77ef149b7"
}
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914496011000.85eb44c7-e023-4a51-a538-77301532004a",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199043855000.3f102a4c-29e8-44d5-86f1-7d620c75e53a",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "05"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ]
+ }
+ ],
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732567199043476000.0257175d-62e0-4765-90ba-7bde31a1d1f0"
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "MEDITECH"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "1.3.6.1.4.1.24310"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "MEDITECH"
- } ],
- "name" : "MEDITECH, Inc."
- }
- }, {
- "fullUrl" : "Device/1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02",
- "resource" : {
- "resourceType" : "Device",
- "id" : "1730838914500789000.2d13bc5e-224d-46b0-a011-f6fd59978e02",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
- "valueReference" : {
- "reference" : "Organization/1730838914500053000.98268f47-8fac-4bec-9fa6-4277285fbeae"
+ }
+ },
+ {
+ "fullUrl": "EpisodeOfCare/1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38",
+ "resource": {
+ "resourceType": "EpisodeOfCare",
+ "id": "1732567199045254000.75995b97-4484-4b6f-9a95-e2094ec15c38",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.54"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333"
+ },
+ {
+ "reference": "PractitionerRole/1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c"
+ }
+ ],
+ "dataAbsentReason": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason",
+ "code": "unknown"
+ }
+ ]
}
- } ],
- "manufacturer" : "MEDITECH, Inc.",
- "deviceName" : [ {
- "name" : "Laboratory Applicati",
- "type" : "manufacturer-name"
- } ],
- "modelNumber" : "20210810",
- "version" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
- "valueDateTime" : "2021-08-10",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810"
- } ]
- }
- } ],
- "value" : "5.67"
- } ]
- }
- }, {
- "fullUrl" : "Provenance/1730838914506868000.4788e19e-dcc4-4cb9-9767-9222c5263b6c",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1730838914506868000.4788e19e-dcc4-4cb9-9767-9222c5263b6c",
- "recorded" : "2024-11-05T15:35:14Z",
- "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/1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199047875000.01cce4b5-717e-4a72-987c-82d4d9839333",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914506543000.a36b35f0-5f0d-41e5-ba64-2f3bf85174f2",
- "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"
- } ]
- }
- }, {
- "fullUrl" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949",
- "resource" : {
- "resourceType" : "Patient",
- "id" : "1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949",
- "meta" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id",
- "valueReference" : {
- "reference" : "Organization/1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1"
- }
- } ],
- "lastUpdated" : "2021-08-09T08:52:00-06:00",
- "_lastUpdated" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210809085200-0600"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199048261000.c72762b2-9c72-47e7-a26c-a40b6185b868"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199048017000.f74a9434-c892-403b-b94e-5b27683bc19c",
+ "practitioner": {
+ "reference": "Practitioner/1732567199049730000.fe95d27e-4e53-48d1-9d59-c43befb7e2ca"
+ },
+ "organization": {
+ "reference": "Organization/1732567199052508000.00dbf849-a127-41ba-82e2-1819a0e1a311"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966"
+ },
+ {
+ "reference": "PractitionerRole/1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220"
+ }
+ ],
+ "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": "SCT"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
+ "valueCoding": {
+ "system": "SNOMEDCT",
+ "code": "406575008",
+ "display": "Infection caused by vancomycin resistant enterococcus (disorder)"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
+ "valueCoding": {
+ "system": "SNOMEDCT",
+ "code": "406575008",
+ "display": "Infection caused by vancomycin resistant enterococcus (disorder)"
+ }
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "782959008",
+ "display": "Vancomycin resistant Enterococcus raffinosus"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ENTRAFVRE",
+ "display": "ENTEROCOCCUS RAFFINOSIS, VRE"
+ }
+ ],
+ "text": "ENTEROCOCCUS RAFFINOSIS, VRE"
}
- },
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
- "valueAnnotation" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "P"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "EH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "V1",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "EH"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199054791000.94d56e9e-093a-4c3c-8b7f-243adf837966",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
- "extension" : [ {
- "url" : "PID.8",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "M"
- } ]
- }
- }, {
- "url" : "PID.30",
- "valueString" : "N"
- } ]
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-animal",
- "extension" : [ {
- "url" : "species",
- "valueCodeableConcept" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.35"
- } ],
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "1",
- "code" : "337915000",
- "display" : "Homo sapiens (organism)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "1",
- "code" : "Human",
- "display" : "Human"
- } ]
- }
- } ]
- }, {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
- "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" : "HL70005"
- } ],
- "system" : "http://terminology.hl7.org/CodeSystem/v3-Race",
- "version" : "2.5.1",
- "code" : "2106-3",
- "display" : "White"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "W",
- "display" : "White"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199055120000.83047de3-6d38-48de-97ec-50cbf7ec1d45"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199054933000.f3c95499-88e3-46bc-8433-3a983b39d220",
+ "practitioner": {
+ "reference": "Practitioner/1732567199055913000.b82692c1-4d33-4a06-949f-d51a11cbe31e"
+ },
+ "organization": {
+ "reference": "Organization/1732567199058462000.2b98266a-950d-4efc-b8c9-ff3ac2a24dac"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14"
+ },
+ {
+ "reference": "PractitionerRole/1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c"
+ }
+ ],
+ "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": "SCT"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
+ "valueCoding": {
+ "system": "SNOMEDCT",
+ "code": "45170000",
+ "display": "Encephalitis (disorder)"
+ }
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "53326005",
+ "display": "Candida albicans"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "CANALB",
+ "display": "CANDIDA ALBICANS"
+ }
+ ],
+ "text": "CANDIDA ALBICANS"
+ },
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "***THIS IS AN URGENT RESULT***"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "***THIS IS AN URGENT RESULT***"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "***** Test Results Called To And Verbally Read Back"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "***** Test Results Called To And Verbally Read Back"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "By: RICHARD DDI7840 *****"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "By: RICHARD DDI7840 *****"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "******************************"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "******************************"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "**THIS IS A CORRECTED REPORT**"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "**THIS IS A CORRECTED REPORT**"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "******************************"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "******************************"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "has been revised to ENTEROCOCCUS SPECIES (GRP D). "
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "has been revised to ENTEROCOCCUS SPECIES (GRP D). "
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "***** Test Results Called To And Verbally Read Back"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "***** Test Results Called To And Verbally Read Back"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199060774000.0f606b72-8ad0-4404-afae-38190489fa14",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199061109000.5681fde5-8cfe-4a9a-b60a-711d80f987d2"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199060916000.52a88069-5ad6-40a3-b7a0-360c28dc509c",
+ "practitioner": {
+ "reference": "Practitioner/1732567199061814000.6974189b-649a-47d6-bcf4-85c4673b1b18"
+ },
+ "organization": {
+ "reference": "Organization/1732567199065007000.ba9c6b50-6ee7-4e52-bd3c-cd0478476298"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLOODC",
+ "display": "BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6"
+ },
+ {
+ "reference": "PractitionerRole/1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a"
+ }
+ ],
+ "dataAbsentReason": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason",
+ "code": "unknown"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199077545000.fe6ecfba-4eed-4dec-8531-b7e071f962f6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199077903000.61b95f3f-d6b9-4ba7-a258-ef92eeba8df9"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199077704000.7a6fdb01-cd74-4e9d-b9af-f1890491e79a",
+ "practitioner": {
+ "reference": "Practitioner/1732567199078920000.721d43e4-3aec-404d-bb39-d973c6e4c7d5"
+ },
+ "organization": {
+ "reference": "Organization/1732567199082118000.f68aa789-a17f-4c3a-97dd-20da67d9592d"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MBCPCR",
+ "display": "BLOOD CULTURE PCR"
+ }
+ ],
+ "text": "BLOOD CULTURE PCR"
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881"
+ },
+ {
+ "reference": "PractitionerRole/1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d"
+ }
+ ],
+ "valueString": "GRAM POSITIVE PCR; NO TARGETS DETECTED (SEE COMMENT)"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199089517000.f2b38a4f-fd68-42ea-9fbc-ad1754ed3881",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199091215000.97e5ddfa-e2a3-48bc-ad4c-971320fa16fd"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199090143000.56266e7c-f65f-4b3a-8cea-19ecfc88052d",
+ "practitioner": {
+ "reference": "Practitioner/1732567199096645000.5b412f91-0240-480c-b276-8e88145d5035"
+ },
+ "organization": {
+ "reference": "Organization/1732567199098837000.87f253b5-3e92-4178-afc5-d211e950c011"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MPOSBC",
+ "display": "BLOOD CULTURE GRAM STAIN"
+ }
+ ],
+ "text": "BLOOD CULTURE GRAM STAIN"
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05"
+ },
+ {
+ "reference": "PractitionerRole/1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78"
+ }
+ ],
+ "valueString": "GRAM POSITIVE COCCI IN PAIRS",
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "A",
+ "display": "Abnormal (applies to non-numeric results)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "A",
+ "display": "A"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199101272000.9e6e07e3-5116-4349-a190-28714eb5ff05",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199101617000.2d60572a-9448-44f5-a771-e9210b3a94be"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "A",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199101424000.52e6d76d-bda1-47db-817d-43f148f7fc78",
+ "practitioner": {
+ "reference": "Practitioner/1732567199102352000.650ad383-6a62-4fa8-b7e2-18f21ba3ccd3"
+ },
+ "organization": {
+ "reference": "Organization/1732567199103568000.7e1023b0-4f1a-4584-a02a-8107c9e582e5"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MPOSBC",
+ "display": "BLOOD CULTURE GRAM STAIN"
+ }
+ ],
+ "text": "BLOOD CULTURE GRAM STAIN"
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76"
+ },
+ {
+ "reference": "PractitionerRole/1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7"
+ }
+ ],
+ "valueString": "ANAEROBIC BOTTLE"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199108016000.64f09799-a945-46c8-ac1b-cff67ea6ea76",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199108390000.5ca469a7-a710-420e-b063-78623eb8a308"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199108176000.2f8c5ec4-22ae-4f03-85df-bb9485d3a3d7",
+ "practitioner": {
+ "reference": "Practitioner/1732567199109119000.b67f76a7-ab32-4e8c-9839-6b6c4d26b613"
+ },
+ "organization": {
+ "reference": "Organization/1732567199110243000.4fe2d33f-1936-4980-bba7-40daa6674c25"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MPOSBC",
+ "display": "BLOOD CULTURE GRAM STAIN"
+ }
+ ],
+ "text": "BLOOD CULTURE GRAM STAIN"
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2"
+ },
+ {
+ "reference": "PractitionerRole/1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969"
+ }
+ ],
+ "valueString": "YEAST",
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "A",
+ "display": "Abnormal (applies to non-numeric results)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "A",
+ "display": "A"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199112178000.7afa4acf-0f8c-4a5a-9ea2-cba3d62f31c2",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199112525000.00c3374e-c2cd-4bf2-acef-068cf80c01aa"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "A",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199112324000.99b03060-1a6d-417f-9767-2612f0045969",
+ "practitioner": {
+ "reference": "Practitioner/1732567199113263000.1e3add48-b786-41ee-b7fc-43cebff789b8"
+ },
+ "organization": {
+ "reference": "Organization/1732567199117434000.6f50c405-3b83-43ca-a30e-d6be1f2b6ba5"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "2.5"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MPOSBC",
+ "display": "BLOOD CULTURE GRAM STAIN"
+ }
+ ],
+ "text": "BLOOD CULTURE GRAM STAIN"
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3"
+ },
+ {
+ "reference": "PractitionerRole/1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999"
+ }
+ ],
+ "valueString": "AEROBIC BOTTLE"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199119974000.66405e0a-81ee-47b5-96bd-d9495bdb5ba3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199120353000.d9c42282-a7aa-4b2d-8703-094c9f80c9e4"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199120149000.5bba030f-cefd-4fb3-8aa2-1a8d9a887999",
+ "practitioner": {
+ "reference": "Practitioner/1732567199121080000.5f438056-fa84-49af-95e0-4e5d499b5889"
+ },
+ "organization": {
+ "reference": "Organization/1732567199122196000.793d4c22-e4cf-4eca-99b6-30e6fc03df80"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-10T06:25:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "C"
+ }
+ ]
+ }
+ ],
+ "status": "corrected",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLOODC",
+ "display": "BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6"
+ },
+ {
+ "reference": "PractitionerRole/1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb"
+ }
+ ],
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "POSITIVE",
+ "display": "POSITIVE"
+ }
+ ],
+ "text": "POSITIVE"
+ },
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Nucleic acid test for the detection of Staphylococcus spp.,"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Nucleic acid test for the detection of Staphylococcus spp.,"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "spp., S. pneumoniae, S. pyogenes, S. agalactiae,"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "spp., S. pneumoniae, S. pyogenes, S. agalactiae,"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "S. anginosus group, Enterococcus faecalis, Enterococcus"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "S. anginosus group, Enterococcus faecalis, Enterococcus"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "faecium, mec-A mediated methicillin resistance, and"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "faecium, mec-A mediated methicillin resistance, and"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "vanA/vanB mediated Vancomycin resistance was performed and"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "vanA/vanB mediated Vancomycin resistance was performed and"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "was NEGATIVE for all targets tested."
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "was NEGATIVE for all targets tested."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "*****CORRECTED REPORT*****"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "*****CORRECTED REPORT*****"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Previous report of was incorrect."
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Previous report of was incorrect."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "The correct report of YEAST PRESENT ON GRAM STAIN"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "The correct report of YEAST PRESENT ON GRAM STAIN"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "was called and texted to ALLISON CABRERA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "was called and texted to ALLISON CABRERA"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Date:08/08/28 Time:0613 Called by:ELB.RMH"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Date:08/08/28 Time:0613 Called by:ELB.RMH"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:RN LIBBY HILL"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:RN LIBBY HILL"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICU on 08/06/21 at 1136 by ELB.HC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICU on 08/06/21 at 1136 by ELB.HC"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:HANNAH STEVENS RN"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:HANNAH STEVENS RN"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/02/28 at 2201 by ELB.MS3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/02/28 at 2201 by ELB.MS3"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199125776000.e83961d8-5a5b-432e-bd83-9b54f5d39dc6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-religion",
- "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" : "HL70006"
- } ],
- "code" : "NOE",
- "display" : "Nonreligious"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199127140000.1e372c8c-f4ad-47b2-85ac-5625e7d1975b"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199126130000.dc05b253-17e5-443f-9b27-96c71716b6fb",
+ "practitioner": {
+ "reference": "Practitioner/1732567199128042000.afd9f46e-255f-4d2a-bfb4-48a3edcdbe60"
+ },
+ "organization": {
+ "reference": "Organization/1732567199129256000.416647fc-d6dd-4083-9d59-e3e80bdf33a5"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CE"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-02T02:52:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b"
+ },
+ {
+ "reference": "PractitionerRole/1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14"
+ }
+ ],
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "COM"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
- "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" : "HL70189"
- } ],
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0189",
- "version" : "2.5.1",
- "code" : "N",
- "display" : "Not Hispanic or Latino"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.61",
- "code" : "2",
- "display" : "Not Hispanic or Latin"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199140682000.9be34146-8804-4cfb-8415-b929d002cd7b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [ {
- "url" : "CX.5",
- "valueString" : "MR"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
- } ],
- "type" : {
- "coding" : [ {
- "code" : "MR"
- } ]
- },
- "system" : "MEDITECH",
- "_system" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- },
- "value" : "100001"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [ {
- "url" : "CX.5",
- "valueString" : "SS"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
- } ],
- "type" : {
- "coding" : [ {
- "code" : "SS"
- } ]
- },
- "system" : "MEDITECH",
- "_system" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- },
- "value" : "285-64-4175"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [ {
- "url" : "CX.5",
- "valueString" : "PI"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
- } ],
- "type" : {
- "coding" : [ {
- "code" : "PI"
- } ]
- },
- "system" : "MEDITECH",
- "_system" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- },
- "value" : "X605236"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [ {
- "url" : "CX.5",
- "valueString" : "AN"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
- } ],
- "type" : {
- "coding" : [ {
- "code" : "AN"
- } ]
- },
- "system" : "MEDITECH",
- "_system" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "MEDITECH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.2.2.1.321.111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- },
- "value" : "E40014904640"
- } ],
- "name" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [ {
- "url" : "XPN.2",
- "valueString" : "LONNIE"
- }, {
- "url" : "XPN.7",
- "valueString" : "L"
- } ]
- } ],
- "use" : "official",
- "family" : "BIERLY",
- "given" : [ "LONNIE" ]
- } ],
- "telecom" : [ {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "6930111"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [ {
- "url" : "XTN.2",
- "valueString" : "PRN"
- }, {
- "url" : "XTN.3",
- "valueString" : "PH"
- }, {
- "url" : "XTN.7",
- "valueString" : "6930111"
- } ]
- } ],
- "system" : "phone",
- "use" : "home"
- }, {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "9999999"
- }, {
- "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" : "9999999"
- }, {
- "url" : "XTN.9",
- "valueString" : "Business"
- } ]
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "gender" : "male",
- "birthDate" : "1936-10-23",
- "_birthDate" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "19361023"
- } ]
- },
- "deceasedBoolean" : false,
- "address" : [ {
- "extension" : [ {
- "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" : "4673 ELM ST"
- } ]
- }, {
- "url" : "XAD.2",
- "valueString" : "CHERRY CRK NURSING CTR"
- }, {
- "url" : "XAD.7",
- "valueCode" : "H"
- } ]
- } ],
- "use" : "home",
- "line" : [ "4673 ELM ST", "CHERRY CRK NURSING CTR" ],
- "city" : "CANTERBURY",
- "state" : "IG",
- "postalCode" : "80014",
- "country" : "USA"
- } ],
- "maritalStatus" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "S"
- } ]
- },
- "contact" : [ {
- "extension" : [ {
- "url" : "https://hl7.org/fhir/StructureDefinition/relationship",
- "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" : "HL70063"
- } ],
- "version" : "2.5.1",
- "code" : "OTH",
- "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" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "OT",
- "display" : "OTHER RELATIONSHIP"
- } ]
- }
- } ],
- "name" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [ {
- "url" : "XPN.2",
- "valueString" : "GENARO"
- }, {
- "url" : "XPN.7",
- "valueString" : "L"
- } ]
- } ],
- "use" : "official",
- "family" : "SURYAN",
- "given" : [ "GENARO" ]
- },
- "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" : "3013954"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [ {
- "url" : "XTN.2",
- "valueString" : "PRN"
- }, {
- "url" : "XTN.3",
- "valueString" : "PH"
- }, {
- "url" : "XTN.7",
- "valueString" : "3013954"
- } ]
- } ],
- "system" : "phone",
- "use" : "home"
- } ],
- "address" : {
- "extension" : [ {
- "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.7",
- "valueCode" : "H"
- } ]
- } ],
- "use" : "home",
- "line" : [ "4861 20TH AVE" ],
- "city" : "THUNDER MOUNTAIN",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA"
- },
- "organization" : {
- "reference" : "Organization/1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199141031000.a8a24659-133e-4e8a-a09a-d6a33358d9b7"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199140827000.c49650e7-8164-432b-b209-2ec7e364bd14",
+ "practitioner": {
+ "reference": "Practitioner/1732567199141788000.02bc94f5-a418-403b-aabe-7413aa652fa9"
+ },
+ "organization": {
+ "reference": "Organization/1732567199143056000.da689751-fac0-4dc7-94de-ee4fee5af2f4"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3"
+ },
+ {
+ "reference": "PractitionerRole/1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5"
+ }
+ ],
+ "valueString": "This is a rapid molecular assay that simultaneously detects"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199145332000.2857ccdd-4bce-4d12-9c42-c9e3303221f3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914513826000.3b984fdc-6364-4ca3-b69d-8fa24657b0ff",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914514813000.1c1c8c49-c361-43ea-9cc4-e50f2c9a0655",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914515647000.dcdfa862-315e-4830-82f5-cd54b8e17e6c",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914516610000.cf7db57f-c9da-4779-9f27-54b4c9943238",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914527903000.1222d535-4f49-48f9-8a37-a4ddf9a15ae1",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914530223000.90cb6c4c-bb89-4421-bd20-14f8e3ea20fc",
- "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" : "3013954"
- }, {
- "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" : "3013954"
- } ]
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "address" : {
- "extension" : [ {
- "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.7",
- "valueCode" : "H"
- } ]
- } ],
- "use" : "home",
- "line" : [ "4861 20TH AVE" ],
- "city" : "AURORA",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199145761000.68bc5468-628c-4140-a886-a0d11b0a4485"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199145476000.9ac6f302-c84f-4751-abad-5a31aa01dbe5",
+ "practitioner": {
+ "reference": "Practitioner/1732567199146577000.d9ace530-909e-43e5-8687-dcfbe17ce2fa"
+ },
+ "organization": {
+ "reference": "Organization/1732567199147724000.6d86369a-f01e-4564-835d-26bcdcd6fb8d"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104"
+ },
+ {
+ "reference": "PractitionerRole/1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911"
+ }
+ ],
+ "valueString": "and identifies the following gram-positive organisms:"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199151229000.c7adbe43-6acf-4f74-b99a-5fa7021b7104",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ]
- }
- }, {
- "fullUrl" : "Provenance/1730838914540118000.668eb9be-2cd4-4137-ba71-a6db3e0e6685",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1730838914540118000.668eb9be-2cd4-4137-ba71-a6db3e0e6685",
- "target" : [ {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- } ],
- "occurredDateTime" : "2021-08-09T08:52:00-06:00",
- "recorded" : "2024-11-05T15:35:14Z",
- "activity" : {
- "coding" : [ {
- "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
- "code" : "UPDATE"
- } ]
- },
- "agent" : [ {
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "performer"
- } ]
- },
- "who" : {
- "reference" : "Organization/1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199151613000.c1ee51bd-f3e8-431e-89b9-007abacef41e"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199151370000.479a6efa-2189-4de7-b192-2d1786e30911",
+ "practitioner": {
+ "reference": "Practitioner/1732567199152352000.450989f7-8e0a-4435-873b-ad510f0705a4"
+ },
+ "organization": {
+ "reference": "Organization/1732567199153502000.dad66219-9d7d-45f1-ab4e-cbb4ae2d481b"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83"
+ },
+ {
+ "reference": "PractitionerRole/1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f"
+ }
+ ],
+ "dataAbsentReason": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/data-absent-reason",
+ "code": "unknown"
+ }
+ ]
}
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914539914000.0dd096ef-30ea-48a1-9d25-077e6db2229e",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "COCAA"
- } ]
- }
- }, {
- "fullUrl" : "RelatedPerson/1730838914542891000.88dbe7f4-ec82-4bdb-9d6e-b005e3c161af",
- "resource" : {
- "resourceType" : "RelatedPerson",
- "id" : "1730838914542891000.88dbe7f4-ec82-4bdb-9d6e-b005e3c161af",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "NK1"
- } ],
- "patient" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "relationship" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.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" : "HL70063"
- } ],
- "version" : "2.5.1",
- "code" : "OTH",
- "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" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "OT",
- "display" : "OTHER RELATIONSHIP"
- } ]
- } ],
- "name" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [ {
- "url" : "XPN.2",
- "valueString" : "GENARO"
- }, {
- "url" : "XPN.7",
- "valueString" : "L"
- } ]
- } ],
- "use" : "official",
- "family" : "SURYAN",
- "given" : [ "GENARO" ]
- } ],
- "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" : "3013954"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [ {
- "url" : "XTN.2",
- "valueString" : "PRN"
- }, {
- "url" : "XTN.3",
- "valueString" : "PH"
- }, {
- "url" : "XTN.7",
- "valueString" : "3013954"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.5"
- } ],
- "system" : "phone",
- "use" : "home"
- }, {
- "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" : "3013954"
- }, {
- "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" : "3013954"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.31"
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "address" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.4"
- }, {
- "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.7",
- "valueCode" : "H"
- } ]
- } ],
- "use" : "home",
- "line" : [ "4861 20TH AVE" ],
- "city" : "THUNDER MOUNTAIN",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.32"
- }, {
- "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.7",
- "valueCode" : "H"
- } ]
- } ],
- "use" : "home",
- "line" : [ "4861 20TH AVE" ],
- "city" : "AURORA",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446",
- "resource" : {
- "resourceType" : "Encounter",
- "id" : "1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit",
- "extension" : [ {
- "url" : "PV1.18",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "IN"
- } ]
- }
- }, {
- "url" : "PV1.39",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "COCAA"
- } ]
- }
- }, {
- "url" : "PV1.41",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "AD"
- } ]
- }
- } ]
- } ],
- "status" : "in-progress",
- "class" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "I"
- } ]
- }
- } ],
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code" : "IMP",
- "display" : "inpatient encounter"
- },
- "type" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "E"
- } ]
- } ],
- "serviceType" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "ICU"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "episodeOfCare" : [ {
- "reference" : "EpisodeOfCare/1730838914552716000.63633f12-d84d-460a-a852-bf2771719059"
- } ],
- "participant" : [ {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "ATND",
- "display" : "attender"
- } ]
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199155516000.f3645888-21ff-40dd-90f0-e5b200d92b83",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199155863000.dc5728c7-083f-4727-9220-d1c8244c4f00"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199155662000.5372287b-f277-4255-bc64-27aa72e2a79f",
+ "practitioner": {
+ "reference": "Practitioner/1732567199156635000.525ec202-838a-4aba-9acc-129294e6331e"
+ },
+ "organization": {
+ "reference": "Organization/1732567199157781000.592684c8-88c0-4343-8e75-d5695a402781"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600"
+ },
+ {
+ "reference": "PractitionerRole/1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604"
+ }
+ ],
+ "valueString": "Staphylococcus spp. Streptococcus pyogenes"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199159828000.1f8b7d9b-16af-4de0-a41d-03f204a01600",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "REF"
- } ],
- "text" : "referrer"
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199160151000.671e1ce5-80db-4553-9c3c-dbc1dffe8ab7"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199159973000.122ae170-0f9b-4cfa-b275-363c7a018604",
+ "practitioner": {
+ "reference": "Practitioner/1732567199160825000.84765f56-a9a4-4900-b449-5b84b9bf9439"
+ },
+ "organization": {
+ "reference": "Organization/1732567199161885000.d10d9c4c-dcf9-443b-8532-8b2f13d72058"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb"
+ },
+ {
+ "reference": "PractitionerRole/1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c"
+ }
+ ],
+ "valueString": "Staphylococcus aureus Streptococcus agalactiae"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199163641000.bfd5bcfd-b6a4-473b-b712-7d8112ee73cb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "CON"
- } ],
- "text" : "consultant"
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199163977000.a7fded36-4a5e-429e-9bf1-650400e96261"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199165687000.040be333-7f50-431c-989a-15a900496ead",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199165687000.040be333-7f50-431c-989a-15a900496ead",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199163772000.29d9095a-b12d-4dba-b762-ef1f207a545c",
+ "practitioner": {
+ "reference": "Practitioner/1732567199164652000.fb41b7ab-96a1-416c-af1a-3c8c2428dfe3"
+ },
+ "organization": {
+ "reference": "Organization/1732567199165687000.040be333-7f50-431c-989a-15a900496ead"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6"
+ },
+ {
+ "reference": "PractitionerRole/1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d"
+ }
+ ],
+ "valueString": "Staphylococcus epidermidis Streptococcus anginosus group"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199167651000.10e0be9c-a716-4234-95ae-8b17139fcaa6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "CON"
- } ],
- "text" : "consultant"
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914549867000.150f788c-2683-412a-a45f-875a915d342c"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199167986000.5220a6d3-ccef-4a18-9e17-6774dcd6ba46"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199167787000.7f9bb897-46f1-4303-86dd-1403e2a9a83d",
+ "practitioner": {
+ "reference": "Practitioner/1732567199169049000.819f48ae-8148-4e18-ab78-bedde1a941a9"
+ },
+ "organization": {
+ "reference": "Organization/1732567199172364000.5e317ab3-ff5c-4f28-a180-38f49e6114cc"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e"
+ },
+ {
+ "reference": "PractitionerRole/1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc"
+ }
+ ],
+ "valueString": "Staphylococcus lugdunensis Streptococcus faecalis"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199176893000.20622861-e1ae-4562-8d3b-c10ac7cad12e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "CON"
- } ],
- "text" : "consultant"
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199177908000.03686705-4d4f-4dd4-9c99-f432a52bf9c6"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199177261000.817fbdf5-753e-4063-852c-a74c07d1eecc",
+ "practitioner": {
+ "reference": "Practitioner/1732567199179509000.cb36654c-1f6c-4b5e-ab40-1166b7ef0608"
+ },
+ "organization": {
+ "reference": "Organization/1732567199182234000.31d5eaa5-d202-4761-a639-27c7350c75ee"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f"
+ },
+ {
+ "reference": "PractitionerRole/1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607"
+ }
+ ],
+ "valueString": "Streptococcus spp. Enterococcus faecium"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199184045000.a2dcef48-2519-47e7-9a16-a7186721440f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "type" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "ADM"
- } ],
- "text" : "admitter"
- } ],
- "individual" : {
- "reference" : "Practitioner/1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199184369000.a3467bf0-a18b-4e1b-b3e9-c97ea7da38c4"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199186108000.15a96528-a661-428f-94f2-e93f05062500",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199186108000.15a96528-a661-428f-94f2-e93f05062500",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199184187000.a6781f5d-8f16-48ee-8977-d54cb18ed607",
+ "practitioner": {
+ "reference": "Practitioner/1732567199185071000.bd4dba32-d76a-4a9b-97cf-dae90c32a46f"
+ },
+ "organization": {
+ "reference": "Organization/1732567199186108000.15a96528-a661-428f-94f2-e93f05062500"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2021-08-05T01:38:00-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210805013800-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ }
+ ]
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b"
+ },
+ {
+ "reference": "PractitionerRole/1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627"
+ }
+ ],
+ "valueString": "Streptococcus pneumoniae "
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199187858000.9ad81edc-29c1-4afe-88f0-53b6717bd47b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "RML",
+ "display": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "RML"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ],
- "period" : {
- "start" : "2028-08-02T05:56:00Z",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202808020556"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "GREGORY"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "R"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199188174000.d8de0243-6dec-4e3c-a5f2-d059d135a80c"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1740336429"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "KOTNIS",
+ "given": [
+ "GREGORY",
+ "R"
+ ],
+ "prefix": [
+ "DR."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199187982000.9f65e43a-e848-41dc-a1bd-3ded05ebd627",
+ "practitioner": {
+ "reference": "Practitioner/1732567199188862000.6413c851-72e8-4896-8d6b-6a994e5a6eae"
+ },
+ "organization": {
+ "reference": "Organization/1732567199189907000.916e8311-7241-498e-854a-9dfd1f7527db"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
+ {
+ "url": "SN.1",
+ "valueString": "\u003d"
+ },
+ {
+ "url": "SN.2",
+ "valueString": "0.5"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "SN"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "35788-9",
+ "display": "DAPTOmycin [Susceptibility] by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "DAP",
+ "display": "DAPTOMYCIN"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101"
+ },
+ {
+ "reference": "PractitionerRole/1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8"
+ }
+ ],
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "S",
+ "display": "Susceptible. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "S",
+ "display": "S"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199192011000.2c2df7e2-982e-49e3-bae1-b672e9c01101",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- },
- "hospitalization" : {
- "admitSource" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "PR"
- } ]
- },
- "dischargeDisposition" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SAP"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199192312000.f4d7a721-8afb-4d52-a454-21085b9cebd6"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199192136000.35f4a7e6-2229-49c8-b3d9-430ce01e85f8",
+ "practitioner": {
+ "reference": "Practitioner/1732567199192968000.336ce742-638b-47a0-a005-8a3f6c1845c8"
+ },
+ "organization": {
+ "reference": "Organization/1732567199193796000.b6f33900-8fce-4fa4-8feb-443916c30b4b"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
+ {
+ "url": "SN.1",
+ "valueString": "\u003d"
+ },
+ {
+ "url": "SN.2",
+ "valueString": "16"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "SN"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "28-1",
+ "display": "Ampicillin [Susceptibility] by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "AM",
+ "display": "AMPICILLIN"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359"
+ },
+ {
+ "reference": "PractitionerRole/1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1"
+ }
+ ],
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "R",
+ "display": "Resistant. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "R",
+ "display": "R"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199196108000.a6c48235-fdff-4256-8a8e-ba1ccf020359",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- },
- "location" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.3"
- } ],
- "location" : {
- "reference" : "Location/1730838914552300000.c836b45a-83b7-413b-898f-530403408d68"
- },
- "status" : "active"
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914546680000.5cc0f083-06e3-45d8-82f8-890ccbb1b2d1",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "James"
- }, {
- "url" : "XCN.4",
- "valueString" : "Madison"
- }, {
- "url" : "XCN.7",
- "valueString" : "MD"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.7"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "Medical Center of Au",
- "value" : "1437205069"
- } ],
- "name" : [ {
- "family" : "Hunt",
- "given" : [ "James", "Madison" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914547804000.6be90203-e57d-40fa-9eef-4cdf04256c8a",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "James"
- }, {
- "url" : "XCN.4",
- "valueString" : "Madison"
- }, {
- "url" : "XCN.7",
- "valueString" : "MD"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.8"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "Medical Center of Au",
- "value" : "1437205069"
- } ],
- "name" : [ {
- "family" : "Hunt",
- "given" : [ "James", "Madison" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914548472000.6641a460-b80b-475e-a1ac-a8104fc1219b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "James"
- }, {
- "url" : "XCN.4",
- "valueString" : "Madison"
- }, {
- "url" : "XCN.7",
- "valueString" : "MD"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.9"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "Medical Center of Au",
- "value" : "1437205069"
- } ],
- "name" : [ {
- "family" : "Hunt",
- "given" : [ "James", "Madison" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "Medical Center of Au"
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914549867000.150f788c-2683-412a-a45f-875a915d342c",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914549867000.150f788c-2683-412a-a45f-875a915d342c",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "James"
- }, {
- "url" : "XCN.4",
- "valueString" : "M"
- }, {
- "url" : "XCN.7",
- "valueString" : "MD"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.9"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "value" : "1962467126",
- "assigner" : {
- "reference" : "Organization/1730838914548694000.732288ae-582a-4975-b29a-e04e1dd8cda0"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199196440000.9ab0799c-dce2-4ae1-9fad-d218e4d75384"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "R",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199196250000.32f19fd4-aa0f-406c-a747-ac7c0e8cf2d1",
+ "practitioner": {
+ "reference": "Practitioner/1732567199198124000.1d433f22-0cd9-4396-8327-5a8b475e969a"
+ },
+ "organization": {
+ "reference": "Organization/1732567199199624000.ba843b99-65a5-48f0-bf7d-631bc27bf3a8"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "7018-5",
+ "display": "Gentamicin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "GMS",
+ "display": "GENTAMICIN SYNERGY SCREEN"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628"
+ },
+ {
+ "reference": "PractitionerRole/1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc"
+ }
+ ],
+ "valueString": "SYN-S",
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "S",
+ "display": "Susceptible. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "S",
+ "display": "S"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199201851000.4a84e947-9cf8-4e47-927a-487ed6b4a628",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ],
- "name" : [ {
- "family" : "Neid",
- "given" : [ "James", "M" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "Medical Center of Au"
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914550564000.d87782d7-2879-40e8-98e4-ed6361ccce67",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Todd"
- }, {
- "url" : "XCN.7",
- "valueString" : "NP"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.9"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "value" : "1184669806",
- "assigner" : {
- "reference" : "Organization/1730838914550090000.8cb4f5d1-2568-48ec-bc07-258252c68085"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199202165000.e44d7fed-55be-4e12-9ebb-b360cebe1af0"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199201989000.29a2fca8-f40b-491d-8e22-8db2330d4bfc",
+ "practitioner": {
+ "reference": "Practitioner/1732567199202803000.d533a949-441e-4b2f-b1d5-2206be092dd8"
+ },
+ "organization": {
+ "reference": "Organization/1732567199203634000.5e2c74a5-a91d-4cb3-aece-9439026760fd"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
+ {
+ "url": "SN.1",
+ "valueString": "\u003d"
+ },
+ {
+ "url": "SN.2",
+ "valueString": "2"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "SN"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "29254-0",
+ "display": "Linezolid [Susceptibility] by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "LZD",
+ "display": "LINEZOLID"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e"
+ },
+ {
+ "reference": "PractitionerRole/1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567"
+ }
+ ],
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "S",
+ "display": "Susceptible. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "S",
+ "display": "S"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199205919000.eef0b9d3-0049-42b9-a5e2-e3753fd6520e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- } ],
- "name" : [ {
- "family" : "Hultman",
- "given" : [ "Todd" ],
- "suffix" : [ "NP" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914551197000.1ceda897-a6bb-455e-9fc8-ab8aab662de0",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Medical Center of Au"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "James"
- }, {
- "url" : "XCN.4",
- "valueString" : "Madison"
- }, {
- "url" : "XCN.7",
- "valueString" : "MD"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.17"
- } ],
- "identifier" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "Medical Center of Au",
- "value" : "1437205069"
- } ],
- "name" : [ {
- "family" : "Hunt",
- "given" : [ "James", "Madison" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "E.ICUB"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
- } ]
- } ],
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
- } ]
- }
- } ]
}
- }
- }, {
- "fullUrl" : "Location/1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "E.ICB"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
- } ]
- } ],
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
- } ]
- },
- "partOf" : {
- "reference" : "Location/1730838914552009000.890b9438-bb14-4e0b-af4c-cdd83433b5a7"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199206244000.32d53286-2793-456b-8fe7-0135add7e293"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Location/1730838914552300000.c836b45a-83b7-413b-898f-530403408d68",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914552300000.c836b45a-83b7-413b-898f-530403408d68",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- } ],
- "value" : "05"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
- } ]
- } ],
- "mode" : "instance",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
- } ]
- },
- "partOf" : {
- "reference" : "Location/1730838914552121000.707e7104-aaeb-4cfc-904e-1194dea0154b"
+ },
+ {
+ "fullUrl": "Organization/1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "EpisodeOfCare/1730838914552716000.63633f12-d84d-460a-a852-bf2771719059",
- "resource" : {
- "resourceType" : "EpisodeOfCare",
- "id" : "1730838914552716000.63633f12-d84d-460a-a852-bf2771719059",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.54"
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2"
- }, {
- "reference" : "PractitionerRole/1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac"
- } ],
- "dataAbsentReason" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason",
- "code" : "unknown"
- } ]
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199206056000.d45c2caf-df5d-42ad-9691-a1cc8b1c5567",
+ "practitioner": {
+ "reference": "Practitioner/1732567199206893000.bfe9fe4e-48aa-488f-8a3d-36f53416d846"
+ },
+ "organization": {
+ "reference": "Organization/1732567199207765000.01258fae-b7b0-40d0-a39a-73e55b16aae9"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Organization/1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914729887000.4ce42479-53b9-4524-bf1e-f563696512b2",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Observation/1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "6933-6",
+ "display": "Streptomycin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "STS",
+ "display": "STREPTOMYCIN SYNERGY SCREEN"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06"
+ },
+ {
+ "reference": "PractitionerRole/1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154"
+ }
+ ],
+ "valueString": "SYN-S",
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "S",
+ "display": "Susceptible. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "S",
+ "display": "S"
+ }
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914730294000.d9c2aab1-96d1-4f69-9a28-b2df4a7669ee"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914730084000.7dd9dc04-1afe-4e32-85e6-64e364569eac",
- "practitioner" : {
- "reference" : "Practitioner/1730838914730858000.9ae58182-9c90-423f-a8b7-0875aa64b87e"
- },
- "organization" : {
- "reference" : "Organization/1730838914732634000.d30d8730-ab33-4f45-88e7-55d10ca20a55"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "CWE"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da"
- }, {
- "reference" : "PractitionerRole/1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12"
- } ],
- "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" : "SCT"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406575008",
- "display" : "Infection caused by vancomycin resistant enterococcus (disorder)"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406575008",
- "display" : "Infection caused by vancomycin resistant enterococcus (disorder)"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406575008",
- "display" : "Infection caused by vancomycin resistant enterococcus (disorder)"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406575008",
- "display" : "Infection caused by vancomycin resistant enterococcus (disorder)"
- }
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "782959008",
- "display" : "Vancomycin resistant Enterococcus raffinosus"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ENTRAFVRE",
- "display" : "ENTEROCOCCUS RAFFINOSIS, VRE"
- } ],
- "text" : "ENTEROCOCCUS RAFFINOSIS, VRE"
+ },
+ {
+ "fullUrl": "Organization/1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199211435000.241fa32a-7d73-4bba-8257-840a6247da06",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
}
- }
- }, {
- "fullUrl" : "Organization/1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914735204000.0c8ddf3d-e44a-45ec-8c1b-fe5056d098da",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914735548000.d2bb45b6-1102-423c-a55b-7dd741d1cee8"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914735369000.9fb82d20-370a-4513-8b29-b2b2cf5b1c12",
- "practitioner" : {
- "reference" : "Practitioner/1730838914736117000.555b8bd6-d491-4b4b-ada7-e0f0208e93f2"
- },
- "organization" : {
- "reference" : "Organization/1730838914736846000.eee9bfac-c69b-4eac-84f7-2ece5359e9b5"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "CWE"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86"
- }, {
- "reference" : "PractitionerRole/1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44"
- } ],
- "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" : "SCT"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "45170000",
- "display" : "Encephalitis (disorder)"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "45170000",
- "display" : "Encephalitis (disorder)"
- }
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "53326005",
- "display" : "Candida albicans"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "CANALB",
- "display" : "CANDIDA ALBICANS"
- } ],
- "text" : "CANDIDA ALBICANS"
- },
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "***THIS IS AN URGENT RESULT***"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "***THIS IS AN URGENT RESULT***"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "***** Test Results Called To And Verbally Read Back"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "***** Test Results Called To And Verbally Read Back"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "By: RICHARD DDI7840 *****"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "By: RICHARD DDI7840 *****"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "(Date: 08/08/21 Time: 1511 Called BY AMLB.IF.)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "******************************"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "******************************"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "**THIS IS A CORRECTED REPORT**"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "**THIS IS A CORRECTED REPORT**"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "******************************"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "******************************"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Original report of ALPHA STRP,NOT ENTEROC.OR PNEU"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "has been revised to ENTEROCOCCUS SPECIES (GRP D). "
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "has been revised to ENTEROCOCCUS SPECIES (GRP D). "
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "***** Test Results Called To And Verbally Read Back"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "***** Test Results Called To And Verbally Read Back"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "By: LISA WSJ9135 AT AURORA MICROBIOLOGY *****"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "(Date: 08/06/21 Time: 0945 Called BY AMLB.LJ1.)"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914739040000.7007923b-5132-46ab-bbd3-467c25aaec86",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199211763000.fec7de5d-93c2-4e2d-82b7-56c06397275c"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914739429000.b3b0a505-800b-4280-884b-dade7aec1f76"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914739229000.6ad958a3-cd61-4ba8-9ae2-b107b5d2ff44",
- "practitioner" : {
- "reference" : "Practitioner/1730838914740161000.04914e7b-0bb1-4d46-b904-ba65db10dbc2"
- },
- "organization" : {
- "reference" : "Organization/1730838914741038000.daf2a9d1-a101-4305-bddc-5e68e2e075d5"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLOODC",
- "display" : "BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb"
- }, {
- "reference" : "PractitionerRole/1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd"
- } ],
- "dataAbsentReason" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason",
- "code" : "unknown"
- } ]
+ },
+ {
+ "fullUrl": "Organization/1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "S",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Organization/1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914746992000.6d25507d-e554-4da0-aad2-8eb1d4bba5bb",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199211572000.23956087-5a2a-4a3f-b8f9-70a46acb0154",
+ "practitioner": {
+ "reference": "Practitioner/1732567199212513000.c6e4ff80-e801-4bb9-bcd9-18a9d77236bb"
+ },
+ "organization": {
+ "reference": "Organization/1732567199213460000.5f2a2ae4-178f-4a7b-8a46-0ec02d28532a"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914747491000.5d2b74f8-135f-4fed-a9ce-c781ce233981"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914747157000.75a61a96-bde6-4814-b3ea-a9a0eecca9fd",
- "practitioner" : {
- "reference" : "Practitioner/1730838914748040000.7392f614-e8f3-41fa-bef5-8884adfbdb30"
- },
- "organization" : {
- "reference" : "Organization/1730838914748986000.239794cf-d92f-41b7-8a4f-346db0c5391d"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MBCPCR",
- "display" : "BLOOD CULTURE PCR"
- } ],
- "text" : "BLOOD CULTURE PCR"
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d"
- }, {
- "reference" : "PractitionerRole/1730838914750904000.e46934f0-987f-438b-b612-b9258465e314"
- } ],
- "valueString" : "GRAM POSITIVE PCR; NO TARGETS DETECTED (SEE COMMENT)"
- }
- }, {
- "fullUrl" : "Organization/1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914750742000.53e68f9d-a714-455d-aa25-bfd988eefd9d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Observation/1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
+ {
+ "url": "SN.1",
+ "valueString": "\u003e\u003d"
+ },
+ {
+ "url": "SN.2",
+ "valueString": "32"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "SN"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "version": "2.40",
+ "code": "ug/mL",
+ "display": "MicroGrams Per MilliLiter [Mass Concentration Units]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ug/mL",
+ "display": "ug/mL"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "P"
+ }
+ ]
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
+ "valueCoding": {
+ "system": "SNOMEDCT",
+ "code": "406604002",
+ "display": "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)"
+ }
+ }
+ ],
+ "system": "http://loinc.org",
+ "version": "2.40",
+ "code": "19000-9",
+ "display": "Vancomycin [Susceptibility]"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VA",
+ "display": "VANCOMYCIN"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectiveDateTime": "2028-08-07T16:36:01-06:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97"
+ },
+ {
+ "reference": "PractitionerRole/1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613"
+ }
+ ],
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "R",
+ "display": "Resistant. Indicates for microbiology susceptibilities only."
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "R",
+ "display": "R"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199215940000.1f4c52f9-24dc-4f8e-b855-c791d3ef7b97",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "LB"
+ }
+ ],
+ "code": "MCOE",
+ "display": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "LB",
+ "value": "MCOE"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)"
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER ",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914751160000.5b7c1429-7166-4343-8aee-ed6533a901e8"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Shalini"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199216259000.e5aed2cf-19f1-47dd-9753-5a6c50f4431f"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "FI"
+ }
+ ]
+ },
+ "system": "RML",
+ "value": "1033122247"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Chahal",
+ "given": [
+ "Shalini"
+ ],
+ "prefix": [
+ "Dr."
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ }
+ ],
+ "name": "ROSE MEDICAL CENTER (MCOE)",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "4567 E. NINTH AVENUE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "4567 E. NINTH AVENUE"
+ ],
+ "city": "DENVER",
+ "district": "R",
+ "state": "IG",
+ "postalCode": "80220",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199216071000.2a9a624e-8d75-457d-9c72-dc01b7a64613",
+ "practitioner": {
+ "reference": "Practitioner/1732567199216933000.55cee4f8-86dd-4d1e-829b-03cab230813f"
+ },
+ "organization": {
+ "reference": "Organization/1732567199217818000.b7710604-167f-4784-aad5-9d2b73d1a6ca"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46"
+ },
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ }
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914750904000.e46934f0-987f-438b-b612-b9258465e314",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914750904000.e46934f0-987f-438b-b612-b9258465e314",
- "practitioner" : {
- "reference" : "Practitioner/1730838914751739000.4925ede6-c4c0-4741-ac8e-a825a2bd5f51"
- },
- "organization" : {
- "reference" : "Organization/1730838914752664000.de1ad85d-b623-4744-871b-acddfb644f15"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199229903000.9c265f53-a107-4253-99d9-d6691307ef46",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc"
+ },
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ }
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MPOSBC",
- "display" : "BLOOD CULTURE GRAM STAIN"
- } ],
- "text" : "BLOOD CULTURE GRAM STAIN"
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b"
- }, {
- "reference" : "PractitionerRole/1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724"
- } ],
- "valueString" : "GRAM POSITIVE COCCI IN PAIRS",
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "A",
- "display" : "Abnormal (applies to non-numeric results)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "A",
- "display" : "A"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914754536000.72316943-9fe1-4f68-b813-cc470c45632b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199231192000.d9b89aa6-ad1d-469c-a65e-d9fda9bd55dc",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12"
+ },
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ }
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914754912000.0915f94b-86c4-4d99-a876-ae0e250a2be8"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199232430000.bfc3b91a-67f6-447a-8fc5-cb862ebd1e12",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726"
+ },
+ "collectedPeriod": {
+ "start": "2028-08-07T16:36:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "end": "2028-08-07T16:36:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ }
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "A",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914754726000.c0b84a9e-e94c-43cc-8e78-ad12f6c83724",
- "practitioner" : {
- "reference" : "Practitioner/1730838914755506000.94b4d33b-2bad-443d-8c05-4941d9b8b991"
- },
- "organization" : {
- "reference" : "Organization/1730838914756379000.fd4c09f7-d193-47c5-9acc-ff236a1b86f1"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199233824000.55eaccec-7cc3-4529-8155-22c64ebdf726",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53"
+ },
+ "collectedPeriod": {
+ "start": "2028-08-07T16:36:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "end": "2028-08-07T16:36:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ }
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MPOSBC",
- "display" : "BLOOD CULTURE GRAM STAIN"
- } ],
- "text" : "BLOOD CULTURE GRAM STAIN"
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b"
- }, {
- "reference" : "PractitionerRole/1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6"
- } ],
- "valueString" : "ANAEROBIC BOTTLE"
- }
- }, {
- "fullUrl" : "Organization/1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914758206000.036b7df2-7e27-43f0-bcde-4f5043376e7b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199235168000.3e1e4a01-7a48-4864-8e4c-e061a237ec53",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
+ {
+ "url": "SPM.26",
+ "valueString": "1"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "09339017"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "M12776123"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "119297000",
+ "display": "Blood specimen"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLD",
+ "display": "BLOOD"
+ }
+ ]
+ },
+ "receivedTime": "2021-08-04T00:18:00-06:00",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210804001800-0600"
+ }
+ ]
+ },
+ "collection": {
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "RA",
+ "display": "RIGHT ARM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ }
+ ],
+ "code": "5.67"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BACTEC AEROBIC PLUS"
+ }
+ ]
+ }
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "RA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
+ {
+ "url": "SPM.26",
+ "valueString": "3.0"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "09339017"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "M12776123"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "119297000",
+ "display": "Blood specimen"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLD",
+ "display": "BLOOD"
+ }
+ ]
+ },
+ "receivedTime": "2021-08-04T00:18:00-06:00",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210804001800-0600"
+ }
+ ]
+ },
+ "collection": {
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "RA",
+ "display": "RIGHT ARM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ }
+ ],
+ "code": "5.67"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BACTEC BLOOD CULTURE BOTTLES"
+ }
+ ]
+ }
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "RA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "09339017"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "M12776123"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "119297000",
+ "display": "Blood specimen"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLD",
+ "display": "BLOOD"
+ }
+ ]
+ },
+ "receivedTime": "2021-08-04T00:18:00-06:00",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210804001800-0600"
+ }
+ ]
+ },
+ "collection": {
+ "collectedPeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "RA",
+ "display": "RIGHT ARM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ }
+ ],
+ "code": "5.67"
+ }
+ ]
+ }
+ },
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "RA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
+ {
+ "url": "SPM.26",
+ "valueString": "3.0"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "09339017"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "M12776123"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "07/31/2012",
+ "code": "119303007",
+ "display": "Microbial isolate"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "ISLT",
+ "display": "ISOLATE"
+ }
+ ]
+ },
+ "receivedTime": "2021-08-04T00:18:00-06:00",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210804001800-0600"
+ }
+ ]
+ },
+ "collection": {
+ "collectedPeriod": {
+ "start": "2028-08-08T09:28:05-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280808092805-0600"
+ }
+ ]
+ },
+ "end": "2028-08-08T09:28:05-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280808092805-0600"
+ }
+ ]
+ }
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "RA",
+ "display": "RIGHT ARM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ }
+ ],
+ "code": "5.67"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BACTEC BLOOD CULTURE BOTTLES"
+ }
+ ]
+ }
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "RA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "202808080928"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "ORC.6",
+ "valueString": "N"
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522"
+ }
+ },
+ {
+ "url": "ORC.15",
+ "valueString": "202108032350"
+ },
+ {
+ "url": "ORC.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "09339017"
+ }
+ },
+ {
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "21:AA:B0029251S.1"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "09339017"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20210810062500-0600"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "P"
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128"
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SEPTIC SHOCK"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.1"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ }
+ ],
+ "reference": "PractitionerRole/1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4"
+ },
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914758543000.61224df6-d5be-4cf6-9ab0-2eedeaf4a320"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914758362000.58bd98c3-0c63-473c-9420-be20c9ec79f6",
- "practitioner" : {
- "reference" : "Practitioner/1730838914759070000.c6f2542a-e9a0-4a0f-8355-46f5d63ce9e0"
- },
- "organization" : {
- "reference" : "Organization/1730838914759949000.48d12ee7-bd88-4e86-b4ef-374e23efb22f"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MPOSBC",
- "display" : "BLOOD CULTURE GRAM STAIN"
- } ],
- "text" : "BLOOD CULTURE GRAM STAIN"
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734"
- }, {
- "reference" : "PractitionerRole/1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d"
- } ],
- "valueString" : "YEAST",
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "A",
- "display" : "Abnormal (applies to non-numeric results)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "A",
- "display" : "A"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914761569000.94163319-903f-4f61-bad9-f28a3ec0c734",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199248131000.5b903d94-1adc-4263-9116-324644efa2f6"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "6952653"
+ },
+ {
+ "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": "6952653"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199247782000.e1083139-e56a-4205-b406-a828477fbfd4",
+ "practitioner": {
+ "reference": "Practitioner/1732567199249741000.3a1ecd9f-2d7a-45b5-b561-6621282a5b8b"
+ },
+ "organization": {
+ "reference": "Organization/1732567199252112000.e4764b88-05f2-4bc8-8344-716fae3f8286"
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914761888000.13e1459a-ff3e-470d-b738-f5fb1428a39b"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "A",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914761697000.2dd3cf37-5ece-4de0-8091-41a80bab711d",
- "practitioner" : {
- "reference" : "Practitioner/1730838914762388000.b231661e-1f78-4bc7-8cf1-55193d1a9d61"
- },
- "organization" : {
- "reference" : "Organization/1730838914763287000.b8c3e4b7-cd32-4435-a629-94ef14ced79d"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "2.5"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MPOSBC",
- "display" : "BLOOD CULTURE GRAM STAIN"
- } ],
- "text" : "BLOOD CULTURE GRAM STAIN"
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6"
- }, {
- "reference" : "PractitionerRole/1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e"
- } ],
- "valueString" : "AEROBIC BOTTLE"
- }
- }, {
- "fullUrl" : "Organization/1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914765197000.c3052de5-605e-4586-99d3-7ea0ae7a18f6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Organization/1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199259673000.c2d10aa4-97e9-44f8-a814-a151fad84493",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914765554000.e2d9df31-c9e2-4e98-a04c-d735e333e01d"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914765343000.8bf63cb2-9ad2-442a-9211-0f4449b5f33e",
- "practitioner" : {
- "reference" : "Practitioner/1730838914766240000.ee6af7ea-4296-415c-afe9-338ddd8eead9"
- },
- "organization" : {
- "reference" : "Organization/1730838914767295000.9df9b693-2a28-46a2-929a-7ab73616e189"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-10T06:25:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "CWE"
- }, {
- "url" : "OBX.11",
- "valueString" : "C"
- } ]
- } ],
- "status" : "corrected",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLOODC",
- "display" : "BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef"
- }, {
- "reference" : "PractitionerRole/1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c"
- } ],
- "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" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "POSITIVE",
- "display" : "POSITIVE"
- } ],
- "text" : "POSITIVE"
- },
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Nucleic acid test for the detection of Staphylococcus spp.,"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Nucleic acid test for the detection of Staphylococcus spp.,"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "S. aureus, S. epidermidis, S. lugdunensis, Streptococcus"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae,"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "spp., S. pneumoniae, S. pyogenes, S. agalactiae,"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "S. anginosus group, Enterococcus faecalis, Enterococcus"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "S. anginosus group, Enterococcus faecalis, Enterococcus"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "faecium, mec-A mediated methicillin resistance, and"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "faecium, mec-A mediated methicillin resistance, and"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "vanA/vanB mediated Vancomycin resistance was performed and"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "vanA/vanB mediated Vancomycin resistance was performed and"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "was NEGATIVE for all targets tested."
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "was NEGATIVE for all targets tested."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "*****CORRECTED REPORT*****"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "*****CORRECTED REPORT*****"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Previous report of was incorrect."
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Previous report of was incorrect."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "The correct report of YEAST PRESENT ON GRAM STAIN"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "The correct report of YEAST PRESENT ON GRAM STAIN"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "was called and texted to ALLISON CABRERA"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "was called and texted to ALLISON CABRERA"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Date:08/08/28 Time:0613 Called by:ELB.RMH"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Date:08/08/28 Time:0613 Called by:ELB.RMH"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:RN LIBBY HILL"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:RN LIBBY HILL"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICU on 08/06/21 at 1136 by ELB.HC"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICU on 08/06/21 at 1136 by ELB.HC"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:HANNAH STEVENS RN"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:HANNAH STEVENS RN"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/02/28 at 2201 by ELB.MS3"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914769447000.f3914c63-1deb-46c3-b639-a684d8cebfef",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914769844000.dfcc6738-80bd-4f6b-8059-bb2faaf91aa6"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914771593000.8945a665-8298-442c-9afa-89eaed432315",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914771593000.8945a665-8298-442c-9afa-89eaed432315",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914769615000.53960ca1-dd67-4c05-9904-2eb26198c17c",
- "practitioner" : {
- "reference" : "Practitioner/1730838914770578000.953e22ec-c55e-4cae-b0a6-b36dd96589c5"
- },
- "organization" : {
- "reference" : "Organization/1730838914771593000.8945a665-8298-442c-9afa-89eaed432315"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "CE"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-02T02:52:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7"
- }, {
- "reference" : "PractitionerRole/1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c"
- } ],
- "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" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "COM"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199262103000.6ea02fd6-3567-4dea-b0c0-5d40b4c6f522",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199261173000.797c3854-8c6c-4c00-86dc-23ae0462ca15"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Organization/1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914779247000.fe2bcee3-4b65-45bb-b7d4-27f81f1ffce7",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914779571000.b51c8ee9-129b-4b12-9f78-d93168c05099"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914779388000.e2634d64-71ba-4adf-91d4-7d634327fa7c",
- "practitioner" : {
- "reference" : "Practitioner/1730838914780165000.353ec5dc-8dac-493e-b9df-d6c9ed962ab7"
- },
- "organization" : {
- "reference" : "Organization/1730838914781218000.136fb33e-2632-4b36-ac5a-65bddc09c252"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af"
- }, {
- "reference" : "PractitionerRole/1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf"
- } ],
- "valueString" : "This is a rapid molecular assay that simultaneously detects"
- }
- }, {
- "fullUrl" : "Organization/1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914782879000.64a2ba47-f6dc-4d53-b217-54d39d9ee0af",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199265691000.f3e7f2eb-fc79-45a2-87f3-139450feb8d3",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199263690000.95d1cc49-55fc-44ab-b6e5-d1c7289e85d5"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914783211000.5bcc25e7-8795-41eb-9d15-cdae29f37001"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914783027000.50d6e0f6-0bc6-4b82-94d2-2f68301499bf",
- "practitioner" : {
- "reference" : "Practitioner/1730838914783841000.3eb3508b-4f67-4c7e-8871-4a979ae74a07"
- },
- "organization" : {
- "reference" : "Organization/1730838914784827000.b4011a83-ef96-4eaf-ae2e-9d21dc8a80b6"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854"
- }, {
- "reference" : "PractitionerRole/1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561"
- } ],
- "valueString" : "and identifies the following gram-positive organisms:"
- }
- }, {
- "fullUrl" : "Organization/1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914786461000.0749975d-6fab-4c1b-a942-fe734c02a854",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199272226000.c57a7636-81bb-4f91-8110-0fcbc1f02128",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914786808000.e62955fc-f6ef-403d-8182-7ba826cc405c"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914786600000.823ba33f-6ce7-4a20-a7ba-9279697d2561",
- "practitioner" : {
- "reference" : "Practitioner/1730838914787415000.cfded77d-35b4-4f32-b152-e0ba6a36919a"
- },
- "organization" : {
- "reference" : "Organization/1730838914788381000.58e2980f-4873-4c4a-a240-55dc609d5e91"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901"
- }, {
- "reference" : "PractitionerRole/1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5"
- } ],
- "dataAbsentReason" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/data-absent-reason",
- "code" : "unknown"
- } ]
+ },
+ {
+ "fullUrl": "ServiceRequest/1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "202808080928"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "ORC.6",
+ "valueString": "N"
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397"
+ }
+ },
+ {
+ "url": "ORC.15",
+ "valueString": "202108032350"
+ },
+ {
+ "url": "ORC.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "09339017"
+ }
+ },
+ {
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "21:AA:B0029251S.2"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "09339017"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20210810062500-0600"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "P"
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e"
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SEPTIC SHOCK"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.2"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLOODC",
+ "display": "BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ }
+ ],
+ "reference": "PractitionerRole/1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de"
+ },
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Organization/1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914790108000.98512ceb-beca-45c9-a724-e6ce7d2ca901",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914790541000.dafeb5dd-b9cb-4b84-a9cf-053a4b1a9c6b"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914790275000.5f16a0f2-ebf6-4636-8c93-7cc569d5b2e5",
- "practitioner" : {
- "reference" : "Practitioner/1730838914791232000.ab08dbac-9ee0-4fca-a827-7fe374ff30b3"
- },
- "organization" : {
- "reference" : "Organization/1730838914792242000.0f7f91eb-e2b6-4438-bc7c-ece3cb275e63"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2"
- }, {
- "reference" : "PractitionerRole/1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93"
- } ],
- "valueString" : "Staphylococcus spp. Streptococcus pyogenes"
- }
- }, {
- "fullUrl" : "Organization/1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914794067000.6014a50a-d6bf-4091-b721-51c4852dd0b2",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199278230000.47e3eec9-09df-4041-920b-6c965d48218a"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914794443000.62d73e1f-5992-482d-8e87-8c9ecbce48cb"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914794241000.5411a19d-072b-4098-8688-b51aacdffc93",
- "practitioner" : {
- "reference" : "Practitioner/1730838914795168000.9e5aef11-469f-40db-8918-e7a2cfb06480"
- },
- "organization" : {
- "reference" : "Organization/1730838914796128000.597739d8-f8f8-4407-a532-c8c3099b13e1"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76"
- }, {
- "reference" : "PractitionerRole/1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8"
- } ],
- "valueString" : "Staphylococcus aureus Streptococcus agalactiae"
- }
- }, {
- "fullUrl" : "Organization/1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914797511000.b32fa9f4-1c74-42bd-aae7-8be1170fde76",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Organization/1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "6952653"
+ },
+ {
+ "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": "6952653"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914797795000.9ae51191-040e-4772-9581-d3192e38adb8"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914797645000.7f99607c-d7fd-488f-a617-f31ae6f58ab8",
- "practitioner" : {
- "reference" : "Practitioner/1730838914798306000.e7ba3ff2-e2de-4105-8559-e301afba0feb"
- },
- "organization" : {
- "reference" : "Organization/1730838914799032000.6670f7ef-42e2-4b96-b443-87c25d906686"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7"
- }, {
- "reference" : "PractitionerRole/1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b"
- } ],
- "valueString" : "Staphylococcus epidermidis Streptococcus anginosus group"
- }
- }, {
- "fullUrl" : "Organization/1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914800435000.5e686451-c528-4d05-9e41-7cc68d08ecd7",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199277056000.5dc7ed7d-c1b1-491b-98b9-c089fea638de",
+ "practitioner": {
+ "reference": "Practitioner/1732567199280513000.b57f6ea8-bf67-499e-b21e-445da54d3bdf"
+ },
+ "organization": {
+ "reference": "Organization/1732567199282665000.9a242a73-270f-4948-a03e-349c6132ccc9"
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914800701000.3ad60af5-09e3-488a-9f87-5e47b62bd8c6"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914800564000.365a4cbe-013d-4363-ae9f-c9e203a5970b",
- "practitioner" : {
- "reference" : "Practitioner/1730838914801180000.ff44b59d-a607-4a5d-ba27-7bd7789e18f4"
- },
- "organization" : {
- "reference" : "Organization/1730838914801897000.69491e0c-e686-42d2-a352-94f839d6a845"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427"
- }, {
- "reference" : "PractitionerRole/1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0"
- } ],
- "valueString" : "Staphylococcus lugdunensis Streptococcus faecalis"
- }
- }, {
- "fullUrl" : "Organization/1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914803158000.b9081a3b-19c6-4e99-b0db-bd6150484427",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Organization/1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199288129000.45dae377-0ff2-437a-a4f5-004892737f47",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914803402000.b450f80c-dd9a-4488-b46d-8c2bdd8f0e74"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914803264000.6b14df92-ee17-43e8-b382-ecde91b47bc0",
- "practitioner" : {
- "reference" : "Practitioner/1730838914803827000.cef353e3-b41a-429a-9287-0468f3f4e7f6"
- },
- "organization" : {
- "reference" : "Organization/1730838914804468000.a02931c7-2a98-4ff7-a3dc-b0a80bd70655"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6"
- }, {
- "reference" : "PractitionerRole/1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c"
- } ],
- "valueString" : "Streptococcus spp. Enterococcus faecium"
- }
- }, {
- "fullUrl" : "Organization/1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914805742000.8e5efd65-7b42-419f-95eb-0fb0d10c15c6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914805986000.475a6589-48db-4dc2-b5d9-7a607fddac6d"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914805860000.4598e8fe-4a3a-4886-8149-b26e63148e6c",
- "practitioner" : {
- "reference" : "Practitioner/1730838914806384000.5baedfd2-2208-4fcb-84ee-b3568c9f83e3"
- },
- "organization" : {
- "reference" : "Organization/1730838914807013000.4c768d12-d7c5-44d2-880f-cb6fdf7ba7b5"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2021-08-05T01:38:00-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210805013800-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.11",
- "valueString" : "F"
- } ]
- } ],
- "status" : "final",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "performer" : [ {
- "reference" : "Organization/1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e"
- }, {
- "reference" : "PractitionerRole/1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64"
- } ],
- "valueString" : "Streptococcus pneumoniae "
- }
- }, {
- "fullUrl" : "Organization/1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914808316000.06d1fdec-082f-4e0e-9c63-53f0c1d7863e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "RML",
- "display" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "RML"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199290293000.65a73d14-5ca1-45bc-ad49-6a5029ffd397",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199289431000.8566d616-5447-4ad7-a732-a1d428cac2bc"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "GREGORY"
- }, {
- "url" : "XCN.4",
- "valueString" : "R"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914808554000.07b9f4eb-9b30-4800-82f0-b94a26bb8a48"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1740336429"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "KOTNIS",
- "given" : [ "GREGORY", "R" ],
- "prefix" : [ "DR." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914808428000.a517ba0f-ba20-4587-a1cd-f401578e7d64",
- "practitioner" : {
- "reference" : "Practitioner/1730838914808947000.f24bcfda-77e8-4277-b7e9-848fa67555f8"
- },
- "organization" : {
- "reference" : "Organization/1730838914809538000.29c470e6-241a-4042-8d1f-8b9b0dac03fe"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [ {
- "url" : "SN.1",
- "valueString" : "="
- }, {
- "url" : "SN.2",
- "valueString" : "0.5"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "SN"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "35788-9",
- "display" : "DAPTOmycin [Susceptibility] by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "DAP",
- "display" : "DAPTOMYCIN"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210"
- }, {
- "reference" : "PractitionerRole/1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765"
- } ],
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "S",
- "display" : "Susceptible. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "S",
- "display" : "S"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914810912000.407aff5c-a6bf-43bd-b4d5-5e5fcbdf3210",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914811215000.b34f0c0e-7d93-4dad-b852-8eade3f06f1d"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914811023000.4cf03d3f-d285-44e9-b4c8-990b36aa3765",
- "practitioner" : {
- "reference" : "Practitioner/1730838914811587000.4ea36225-71ef-472d-9605-9902913f1832"
- },
- "organization" : {
- "reference" : "Organization/1730838914812081000.21d1d9f3-437f-4bd4-8709-eb56bbe813e8"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [ {
- "url" : "SN.1",
- "valueString" : "="
- }, {
- "url" : "SN.2",
- "valueString" : "16"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "SN"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "28-1",
- "display" : "Ampicillin [Susceptibility] by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "AM",
- "display" : "AMPICILLIN"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd"
- }, {
- "reference" : "PractitionerRole/1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4"
- } ],
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "R",
- "display" : "Resistant. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "R",
- "display" : "R"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914813628000.8f44da09-b4c9-4ce1-b536-b9e132a8fdcd",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199293249000.ba98c75d-94a8-431a-be71-73c8cde69a26",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199291462000.7ddb0bb6-40f6-444e-a526-b17852c480f5"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914813862000.54ebdeea-50c4-411e-811c-3c646d44f780"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "R",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914813733000.7a0bb3a9-5f22-457b-8477-b84f4ebd5ae4",
- "practitioner" : {
- "reference" : "Practitioner/1730838914814229000.fa274404-f970-471d-bb0a-9c4c4169cf29"
- },
- "organization" : {
- "reference" : "Organization/1730838914814734000.4b98fb7c-c2e9-4ee5-9627-f568b316d8b2"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "7018-5",
- "display" : "Gentamicin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "GMS",
- "display" : "GENTAMICIN SYNERGY SCREEN"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360"
- }, {
- "reference" : "PractitionerRole/1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266"
- } ],
- "valueString" : "SYN-S",
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "S",
- "display" : "Susceptible. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "S",
- "display" : "S"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914816241000.9a16ad4e-9ac6-41e7-b2ab-356ae6db3360",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199294953000.29be3143-0ac1-4aa9-a2d9-c305cf61144e",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914816463000.97a94703-7c14-4404-8355-c5097d8b1921"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914816342000.4d15ad6d-60b9-4f95-be57-bbaea6b54266",
- "practitioner" : {
- "reference" : "Practitioner/1730838914816832000.12b23772-7a79-4f9e-a6d3-12ac22c4faf5"
- },
- "organization" : {
- "reference" : "Organization/1730838914817320000.656854ce-46dc-4d60-992e-60cf7a7a705e"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [ {
- "url" : "SN.1",
- "valueString" : "="
- }, {
- "url" : "SN.2",
- "valueString" : "2"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "SN"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "29254-0",
- "display" : "Linezolid [Susceptibility] by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "LZD",
- "display" : "LINEZOLID"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4"
- }, {
- "reference" : "PractitionerRole/1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0"
- } ],
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "S",
- "display" : "Susceptible. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "S",
- "display" : "S"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914818823000.774792c9-db81-43b3-b08c-d5d8701f18c4",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "ServiceRequest/1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "202808080928"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "ORC.6",
+ "valueString": "N"
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db"
+ }
+ },
+ {
+ "url": "ORC.15",
+ "valueString": "202108032350"
+ },
+ {
+ "url": "ORC.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "TMCA, SOUTH CAMPUS"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "09339017"
+ }
+ },
+ {
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "21:AA:B0029251S.3"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "09339017"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20210810062500-0600"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "P"
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2028-08-02T02:52:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d"
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SEPTIC SHOCK"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.3"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ }
+ ],
+ "reference": "PractitionerRole/1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c"
+ },
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Critical result called to and read back by:CLAIRE HCE7362"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "C",
+ "display": "Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914819047000.67d0ac56-b9d8-4ff1-9406-7469be6875d9"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914818927000.52d4cf60-c86f-466b-b8d8-0af0e9edb6e0",
- "practitioner" : {
- "reference" : "Practitioner/1730838914819431000.b3c92564-aa7f-444c-a960-f6a9c6016398"
- },
- "organization" : {
- "reference" : "Organization/1730838914819931000.d1187db7-d171-4b2d-8731-6d8d1a90a2e6"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "ST"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "6933-6",
- "display" : "Streptomycin.high potency [Susceptibility] by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "STS",
- "display" : "STREPTOMYCIN SYNERGY SCREEN"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb"
- }, {
- "reference" : "PractitionerRole/1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f"
- } ],
- "valueString" : "SYN-S",
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "S",
- "display" : "Susceptible. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "S",
- "display" : "S"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914821476000.cdbced34-fb06-4265-94fe-8f8c509188eb",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
+ },
+ {
+ "fullUrl": "Location/1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914821715000.62c4fddc-2f6b-4429-8f29-269496fa3d27"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "S",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914821584000.a112689b-4f99-4e2c-a149-b9a2e70db24f",
- "practitioner" : {
- "reference" : "Practitioner/1730838914822125000.6819a6e0-b4db-4e53-be50-3420b4f4624b"
- },
- "organization" : {
- "reference" : "Organization/1730838914822629000.87660c6b-2c38-4db1-a170-2b1f86e39200"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Observation/1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2028-08-07T16:36:01-06:00",
- "_valueDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [ {
- "url" : "SN.1",
- "valueString" : ">="
- }, {
- "url" : "SN.2",
- "valueString" : "32"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [ {
- "url" : "OBX.2",
- "valueId" : "SN"
- }, {
- "url" : "OBX.6",
- "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" : "UCUM"
- } ],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.40",
- "code" : "ug/mL",
- "display" : "MicroGrams Per MilliLiter [Mass Concentration Units]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ug/mL",
- "display" : "ug/mL"
- } ]
- }
- }, {
- "url" : "OBX.11",
- "valueString" : "P"
- } ]
- } ],
- "status" : "preliminary",
- "code" : {
- "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"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406604002",
- "display" : "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/condition-code",
- "valueCoding" : {
- "system" : "SNOMEDCT",
- "code" : "406604002",
- "display" : "Infection caused by vancomycin intermediate Staphylococcus aureus (disorder)"
- }
- } ],
- "system" : "http://loinc.org",
- "version" : "2.40",
- "code" : "19000-9",
- "display" : "Vancomycin [Susceptibility]"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VA",
- "display" : "VANCOMYCIN"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectiveDateTime" : "2028-08-07T16:36:01-06:00",
- "_effectiveDateTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "performer" : [ {
- "reference" : "Organization/1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6"
- }, {
- "reference" : "PractitionerRole/1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec"
- } ],
- "interpretation" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
- } ],
- "version" : "2.5.1",
- "code" : "R",
- "display" : "Resistant. Indicates for microbiology susceptibilities only."
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "R",
- "display" : "R"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914824162000.59286518-a49c-40a8-883f-8d99720151c6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "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" : "LB"
- } ],
- "code" : "MCOE",
- "display" : "ROSE MEDICAL CENTER (MCOE)"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199298346000.c4bc6852-9072-410f-8a6c-e70941712e31"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "5600 S Quebec St #312A"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "5600 S Quebec St #312A"
+ ],
+ "city": "Greenwood Village",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80111",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS",
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "6952653"
+ },
+ {
+ "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": "6952653"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "1501 S. POTOMAC"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "B"
+ }
+ ]
+ }
+ ],
+ "use": "work",
+ "line": [
+ "1501 S. POTOMAC"
+ ],
+ "city": "AURORA",
+ "district": "MD",
+ "state": "IG",
+ "postalCode": "80012",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732567199297610000.2a0e1d38-ed43-4d8f-8dc4-b37d188a7d5c",
+ "practitioner": {
+ "reference": "Practitioner/1732567199301578000.470114c6-bfc5-4486-81a0-bfef36c2442b"
+ },
+ "organization": {
+ "reference": "Organization/1732567199303663000.b4c6b48f-ba35-49b1-a04a-8b7480e96976"
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
- } ],
- "identifier" : [ {
- "system" : "LB",
- "value" : "MCOE"
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)"
- }
- }, {
- "fullUrl" : "Location/1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "ROSE MEDICAL CENTER ",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Shalini"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914824399000.63c1aa1b-ff9a-4529-a7a6-26f3171fbdbe"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "FI"
- } ]
- },
- "system" : "RML",
- "value" : "1033122247"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Chahal",
- "given" : [ "Shalini" ],
- "prefix" : [ "Dr." ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
- }
- } ],
- "name" : "ROSE MEDICAL CENTER (MCOE)",
- "address" : [ {
- "extension" : [ {
- "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" : "4567 E. NINTH AVENUE"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "4567 E. NINTH AVENUE" ],
- "city" : "DENVER",
- "district" : "R",
- "state" : "IG",
- "postalCode" : "80220",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914824273000.cbeb85cb-6ed5-4a06-aa6a-50dc1d127aec",
- "practitioner" : {
- "reference" : "Practitioner/1730838914824803000.26c9833e-4e74-4254-a611-761b3a050635"
- },
- "organization" : {
- "reference" : "Organization/1730838914825344000.4454bc65-3f3d-4861-9d88-de548f718118"
- },
- "code" : [ {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0912",
- "code" : "MDIR"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
- "extension" : [ {
- "url" : "SPM.26",
- "valueString" : "1"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "09339017"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "M12776123"
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "119297000",
- "display" : "Blood specimen"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLD",
- "display" : "BLOOD"
- } ]
- },
- "receivedTime" : "2021-08-04T00:18:00-06:00",
- "_receivedTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210804001800-0600"
- } ]
- },
- "collection" : {
- "collectedPeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "bodySite" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "RA",
- "display" : "RIGHT ARM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- } ],
- "code" : "5.67"
- } ]
- }
- },
- "container" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "display" : "BACTEC AEROBIC PLUS"
- } ]
- }
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
- } ],
- "text" : "RA"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
- "extension" : [ {
- "url" : "SPM.26",
- "valueString" : "3.0"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "09339017"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "M12776123"
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "119297000",
- "display" : "Blood specimen"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLD",
- "display" : "BLOOD"
- } ]
- },
- "receivedTime" : "2021-08-04T00:18:00-06:00",
- "_receivedTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210804001800-0600"
- } ]
- },
- "collection" : {
- "collectedPeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "bodySite" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "RA",
- "display" : "RIGHT ARM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- } ],
- "code" : "5.67"
- } ]
- }
- },
- "container" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "display" : "BACTEC BLOOD CULTURE BOTTLES"
- } ]
- }
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
- } ],
- "text" : "RA"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "09339017"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "M12776123"
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "119297000",
- "display" : "Blood specimen"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLD",
- "display" : "BLOOD"
- } ]
- },
- "receivedTime" : "2021-08-04T00:18:00-06:00",
- "_receivedTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210804001800-0600"
- } ]
- },
- "collection" : {
- "collectedPeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "bodySite" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "RA",
- "display" : "RIGHT ARM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- } ],
- "code" : "5.67"
- } ]
- }
- },
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
- } ],
- "text" : "RA"
- } ]
- }
- }, {
- "fullUrl" : "Specimen/1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
- "extension" : [ {
- "url" : "SPM.26",
- "valueString" : "3.0"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "09339017"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "M12776123"
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
- } ],
- "system" : "http://snomed.info/sct",
- "version" : "07/31/2012",
- "code" : "119303007",
- "display" : "Microbial isolate"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "ISLT",
- "display" : "ISOLATE"
- } ]
- },
- "receivedTime" : "2021-08-04T00:18:00-06:00",
- "_receivedTime" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210804001800-0600"
- } ]
- },
- "collection" : {
- "collectedPeriod" : {
- "start" : "2028-08-08T09:28:05-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280808092805-0600"
- } ]
- },
- "end" : "2028-08-08T09:28:05-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280808092805-0600"
- } ]
- }
- },
- "bodySite" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "RA",
- "display" : "RIGHT ARM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- } ],
- "code" : "5.67"
- } ]
- }
- },
- "container" : [ {
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "display" : "BACTEC BLOOD CULTURE BOTTLES"
- } ]
- }
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
- } ],
- "text" : "RA"
- } ]
- }
- }, {
- "fullUrl" : "ServiceRequest/1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "202808080928"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [ {
- "url" : "ORC.6",
- "valueString" : "N"
- }, {
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136"
- }
- }, {
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- }
- }, {
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- }
- }, {
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364"
- }
- }, {
- "url" : "ORC.15",
- "valueString" : "202108032350"
- }, {
- "url" : "ORC.17",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [ {
- "url" : "OBR.2",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "09339017"
- }
- }, {
- "url" : "OBR.3",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "21:AA:B0029251S.1"
- }
- }, {
- "url" : "OBR.21",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "OBR.22",
- "valueString" : "20210810062500-0600"
- }, {
- "url" : "OBR.25",
- "valueId" : "P"
- }, {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a"
- }
- }, {
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SEPTIC SHOCK"
- } ]
- }
- }, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- }, {
- "url" : "OBR.18",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "OBR.19",
- "valueString" : "09339017"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.1"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "status" : "unknown",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "requester" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- } ],
- "reference" : "PractitionerRole/1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0"
- },
- "reasonCode" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- } ]
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Organization/1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732567199309365000.42d0cf2c-f189-47f3-9382-7713bf5749f7",
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "06D0055551"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "06D0055551"
+ }
+ ],
+ "name": "TMCA, SOUTH CAMPUS"
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914865137000.d76319d3-828f-4e2d-8c7e-c3d2b968184f"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Location/1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "telecom" : [ {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "6952653"
- }, {
- "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" : "6952653"
- } ]
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914864923000.6d929cb4-4aeb-4fee-be34-b651230d34c0",
- "practitioner" : {
- "reference" : "Practitioner/1730838914865888000.a921d4cb-330c-42f1-8876-5a2ef2d25eb9"
- },
- "organization" : {
- "reference" : "Organization/1730838914866899000.a9e56273-c5a0-444c-82cd-7b4e1bc00207"
}
- }
- }, {
- "fullUrl" : "Organization/1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914869520000.799ccf21-f369-4f2c-a414-563afc469136",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199313314000.d0e751df-2661-4b2b-b8d0-af3f50e438db",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199310685000.0a389216-3789-4d29-8c97-7e4ee94db606"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914870861000.719c6e7c-b29f-48e8-b5f1-71e877876364",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914870334000.d44271e1-dec9-4c11-8d4a-0a055533aca9"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914871638000.db5f071a-2f3e-4593-838d-132795b7f86a",
- "identifier" : [ {
- "value" : "ER"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199315426000.f8b7b624-263c-4b36-9352-43f2154c6046",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199314507000.f7657f90-35b6-4909-8e81-3545ebcaf506"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914872442000.6315ab2e-f195-46a3-a9ac-656faef940a9",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914872009000.0c7e9b2e-abee-4894-95c2-e4f11fb8f84d"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "ServiceRequest/1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "202808080928"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [ {
- "url" : "ORC.6",
- "valueString" : "N"
- }, {
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b"
- }
- }, {
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- }
- }, {
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- }
- }, {
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e"
- }
- }, {
- "url" : "ORC.15",
- "valueString" : "202108032350"
- }, {
- "url" : "ORC.17",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [ {
- "url" : "OBR.2",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "09339017"
- }
- }, {
- "url" : "OBR.3",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "21:AA:B0029251S.2"
- }
- }, {
- "url" : "OBR.21",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "OBR.22",
- "valueString" : "20210810062500-0600"
- }, {
- "url" : "OBR.25",
- "valueId" : "P"
- }, {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d"
- }
- }, {
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SEPTIC SHOCK"
- } ]
- }
- }, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- }, {
- "url" : "OBR.18",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "OBR.19",
- "valueString" : "09339017"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.2"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "status" : "unknown",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLOODC",
- "display" : "BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "requester" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- } ],
- "reference" : "PractitionerRole/1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83"
- },
- "reasonCode" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- } ]
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199317214000.126293fa-a647-4d91-b864-107eeaf0e25d",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914873999000.b3c8daae-db27-41f7-a93c-c284d765edf6"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "ServiceRequest/1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "09339017"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "TMCA, SOUTH CAMPUS"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20210810062500-0600"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "P"
+ },
+ {
+ "url": "OBR.26",
+ "extension": [
+ {
+ "url": "prl-1-parent-observation-identifier",
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "version": "2.40",
+ "code": "600-7"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ],
+ "text": "EXTENDED BLOOD CULTURE"
+ }
+ },
+ {
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "1"
+ },
+ {
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ENTRAFVRE"
+ }
+ ]
+ },
+ {
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec"
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SEPTIC SHOCK"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.4"
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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": "2.40",
+ "code": "50545-3",
+ "display": "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MDAPTOE",
+ "display": "MIC DAPTOMYCIN E TEST"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ }
+ ],
+ "reference": "Practitioner/1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e"
+ },
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "telecom" : [ {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "6952653"
- }, {
- "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" : "6952653"
- } ]
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914873746000.96d2662b-a4c0-4e54-9067-d6ee838fbe83",
- "practitioner" : {
- "reference" : "Practitioner/1730838914874830000.d57b760c-4cda-4f57-9b4e-dd408f38783c"
- },
- "organization" : {
- "reference" : "Organization/1730838914876041000.9bb8dee8-0828-4f39-8a01-b0304dba3748"
}
- }
- }, {
- "fullUrl" : "Organization/1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914879125000.f512aba5-c489-4f9b-8539-83ea07ceec2b",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199322324000.dcdbb543-03fe-497d-a3d6-fc6dcce5374e",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.16"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199319335000.6ba64f36-da2d-4205-8759-8101e15f066d"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914880404000.7c423bbb-9dc2-4790-b90c-458b90653f8e",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914879955000.c63fc7c7-dbf5-45dd-bdbb-fde6f70647c0"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914881129000.65306ba8-3754-4e9c-b99f-37502128840d",
- "identifier" : [ {
- "value" : "ER"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199334108000.4134cedf-89db-4f6c-bcae-96a6972af572",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199330781000.ad79eed6-3513-45ff-beb6-ee257a20b8d7"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914881905000.cd25d13d-ae2b-49c5-aecb-47b5df99ae43",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914881478000.ca540b0c-b24f-4ef7-a424-539b864e8dad"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "ServiceRequest/1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "202808080928"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [ {
- "url" : "ORC.6",
- "valueString" : "N"
- }, {
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f"
- }
- }, {
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- }
- }, {
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- }
- }, {
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893"
- }
- }, {
- "url" : "ORC.15",
- "valueString" : "202108032350"
- }, {
- "url" : "ORC.17",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "TMCA, SOUTH CAMPUS"
- } ]
- }
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [ {
- "url" : "OBR.2",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "09339017"
- }
- }, {
- "url" : "OBR.3",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "value" : "21:AA:B0029251S.3"
- }
- }, {
- "url" : "OBR.21",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "OBR.22",
- "valueString" : "20210810062500-0600"
- }, {
- "url" : "OBR.25",
- "valueId" : "P"
- }, {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d"
- }
- }, {
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SEPTIC SHOCK"
- } ]
- }
- }, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2"
- }
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- }, {
- "url" : "OBR.18",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "OBR.19",
- "valueString" : "09339017"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.3"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "status" : "unknown",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "requester" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- } ],
- "reference" : "PractitionerRole/1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5"
- },
- "reasonCode" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- } ]
- } ],
- "note" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ]
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1539 by ELB.RM"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Critical result called to and read back by:CLAIRE HCE7362"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [ {
- "url" : "NTE.2",
- "valueId" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "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" : "HL70364"
- } ],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "C",
- "display" : "Comment"
- } ]
- }
- } ],
- "text" : "Location:ICUB on 08/08/21 at 1050 by ELB.SMX"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199339633000.9941f749-f310-4aae-baee-66772fa11dec",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914883400000.f60774d1-756a-49d2-ad95-652dde0fc5fc"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "5600 S Quebec St #312A"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "5600 S Quebec St #312A" ],
- "city" : "Greenwood Village",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80111",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "Organization/1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "ServiceRequest/1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "09339017"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "ROSE MEDICAL CENTER (MCOE)"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20210810062500-0600"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "P"
+ },
+ {
+ "url": "OBR.26",
+ "extension": [
+ {
+ "url": "prl-1-parent-observation-identifier",
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "version": "2.40",
+ "code": "600-7"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ],
+ "text": "EXTENDED BLOOD CULTURE"
+ }
+ },
+ {
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "1"
+ },
+ {
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ENTRAFVRE"
+ }
+ ]
+ },
+ {
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "21:AA:B0029251Sm12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "RML"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2028-08-07T16:36:01-06:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87"
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SEPTIC SHOCK"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.5"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.5"
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VGP-75",
+ "display": "VITEK2 AST-GP75"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "303"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4362727"
+ },
+ {
+ "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": "4362727"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "Hospital Line"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "phone",
+ "use": "work"
+ }
+ }
+ ],
+ "reference": "Practitioner/1732567199343817000.de85e106-1750-414f-8602-d732a8b65233"
+ },
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "I10"
+ }
+ ],
+ "system": "http://hl7.org/fhir/sid/icd-10-cm",
+ "version": "38",
+ "code": "R6521",
+ "display": "SEVERE SEPSIS WITH SEPTIC SHOCK"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS",
- "telecom" : [ {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "6952653"
- }, {
- "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" : "6952653"
- } ]
- } ],
- "system" : "phone",
- "use" : "work"
- } ],
- "address" : [ {
- "extension" : [ {
- "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" : "1501 S. POTOMAC"
- } ]
- }, {
- "url" : "XAD.7",
- "valueCode" : "B"
- } ]
- } ],
- "use" : "work",
- "line" : [ "1501 S. POTOMAC" ],
- "city" : "AURORA",
- "district" : "MD",
- "state" : "IG",
- "postalCode" : "80012",
- "country" : "USA"
- } ]
- }
- }, {
- "fullUrl" : "PractitionerRole/1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1730838914883000000.5ae9c7ba-dac6-4f53-9eb0-474c3b9033c5",
- "practitioner" : {
- "reference" : "Practitioner/1730838914884150000.3c478830-e24c-4978-b68f-27f4b53e5342"
- },
- "organization" : {
- "reference" : "Organization/1730838914885184000.f229ae5e-0004-419f-bdb3-b1c5c06b6a72"
}
- }
- }, {
- "fullUrl" : "Organization/1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1730838914887802000.f0e8c9d3-77cf-49e4-b224-a4af2b4ac24f",
- "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"
- } ],
- "code" : "L"
- } ]
- }
- } ],
- "code" : "L"
+ },
+ {
+ "fullUrl": "Practitioner/1732567199343817000.de85e106-1750-414f-8602-d732a8b65233",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199343817000.de85e106-1750-414f-8602-d732a8b65233",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.16"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199342809000.1d71b8a8-ab18-4d30-84c5-e682ae48485f"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "name": "RML",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
}
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [ {
- "url" : "XON.10",
- "valueString" : "06D0055551"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
- } ]
- },
- "value" : "06D0055551"
- } ],
- "name" : "TMCA, SOUTH CAMPUS"
- }
- }, {
- "fullUrl" : "Location/1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914888947000.28f374f5-33e2-4442-853d-8bbeefe7b893",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914888508000.7928c72e-8cff-4e92-ae9b-644de5b7e1d5"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914889679000.7b1e8142-0c9d-402f-b4c9-7915d571302d",
- "identifier" : [ {
- "value" : "ER"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199347806000.733f71a0-d784-48a9-b056-9a1ed5a22207",
+ "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/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Christopher"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "Beau"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732567199347021000.718183a7-e57a-4a73-85a0-82cb953f6f6a"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "system": "NPI",
+ "value": "1871759365"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Willison",
+ "given": [
+ "Christopher",
+ "Beau"
+ ],
+ "suffix": [
+ "MD"
+ ]
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914890456000.24b66b71-2bae-4d3c-80fc-0c7f162f2ed2",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914890028000.fa47ee3d-e220-41bc-93a4-9d316568f891"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "ServiceRequest/1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [ {
- "url" : "OBR.21",
- "valueString" : "TMCA, SOUTH CAMPUS"
- }, {
- "url" : "OBR.22",
- "valueString" : "20210810062500-0600"
- }, {
- "url" : "OBR.25",
- "valueId" : "P"
- }, {
- "url" : "OBR.26",
- "extension" : [ {
- "url" : "prl-1-parent-observation-identifier",
- "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" : "LN"
- } ],
- "system" : "http://loinc.org",
- "version" : "2.40",
- "code" : "600-7"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ],
- "text" : "EXTENDED BLOOD CULTURE"
- }
- }, {
- "url" : "prl-2-parent-observation-sub-identifier",
- "valueString" : "1"
- }, {
- "url" : "prl-3-parent-observation-descriptor",
- "valueString" : "ENTRAFVRE"
- } ]
- }, {
- "url" : "OBR.29",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- }
- }
- }, {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea"
- }
- }, {
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SEPTIC SHOCK"
- } ]
- }
- }, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4"
- }
- }, {
- "url" : "OBR.18",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "OBR.19",
- "valueString" : "09339017"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.4"
- } ],
- "status" : "unknown",
- "code" : {
- "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" : "2.40",
- "code" : "50545-3",
- "display" : "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MDAPTOE",
- "display" : "MIC DAPTOMYCIN E TEST"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "requester" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- } ],
- "reference" : "Practitioner/1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1"
- },
- "reasonCode" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "Practitioner/1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732567199349709000.0d0ab2bf-19ce-4363-b855-cdf3993e3d87",
+ "identifier": [
+ {
+ "value": "ER"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914892095000.174e538e-8f01-4768-ab72-991d8f151cf1",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.16"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914891593000.f37e7ffc-cab2-4beb-b62a-5ef2fb665735"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914894150000.9a69bf81-0eef-4637-9a74-f3a8ff4612ea",
- "identifier" : [ {
- "value" : "ER"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "DiagnosticReport/1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732567199356748000.fc0e43dd-691b-41de-bd5b-323d746c1386",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.1"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "basedOn": [
+ {
+ "reference": "ServiceRequest/1732567199274851000.e2bdcd89-32fc-49c6-a389-84c5a06ef171"
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BCEXT",
+ "display": "EXTENDED BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectivePeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "issued": "2021-08-10T06:25:00-06:00",
+ "_issued": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ },
+ "specimen": [
+ {
+ "reference": "Specimen/1732567199238263000.db55ca11-4df0-4cce-bee6-16839c06583a"
+ },
+ {
+ "reference": "Specimen/1732567199228980000.9129841c-20d4-4d5b-9b9c-ccfde96355cd"
+ }
+ ],
+ "result": [
+ {
+ "reference": "Observation/1732567199047490000.fabe7bf9-7271-45b1-bf3e-573fecaab793"
+ },
+ {
+ "reference": "Observation/1732567199054451000.5d56f5b0-9d28-48a2-aca2-6096f3dd9202"
+ },
+ {
+ "reference": "Observation/1732567199060378000.fcfe2ad2-c4fb-43d1-81fb-562a506ec857"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914894938000.8ea784ee-7bec-4823-b7e0-df2fda766fd4",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914894511000.b2eba5ea-04b1-40cf-9714-6b609ff076d6"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "ServiceRequest/1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [ {
- "url" : "OBR.21",
- "valueString" : "ROSE MEDICAL CENTER (MCOE)"
- }, {
- "url" : "OBR.22",
- "valueString" : "20210810062500-0600"
- }, {
- "url" : "OBR.25",
- "valueId" : "P"
- }, {
- "url" : "OBR.26",
- "extension" : [ {
- "url" : "prl-1-parent-observation-identifier",
- "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" : "LN"
- } ],
- "system" : "http://loinc.org",
- "version" : "2.40",
- "code" : "600-7"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ],
- "text" : "EXTENDED BLOOD CULTURE"
- }
- }, {
- "url" : "prl-2-parent-observation-sub-identifier",
- "valueString" : "1"
- }, {
- "url" : "prl-3-parent-observation-descriptor",
- "valueString" : "ENTRAFVRE"
- } ]
- }, {
- "url" : "OBR.29",
- "valueIdentifier" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "RML"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- }
- }
- }, {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27"
- }
- }, {
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- } ],
- "code" : "SEPTIC SHOCK"
- } ]
- }
- }, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae"
- }
- }, {
- "url" : "OBR.18",
- "valueString" : "21:AA:B0029251Sm12776123"
- }, {
- "url" : "OBR.19",
- "valueString" : "09339017"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.5"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.5"
- } ],
- "status" : "unknown",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VGP-75",
- "display" : "VITEK2 AST-GP75"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "requester" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [ {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "303"
- }, {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "4362727"
- }, {
- "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" : "4362727"
- }, {
- "url" : "XTN.9",
- "valueString" : "Hospital Line"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- } ],
- "system" : "phone",
- "use" : "work"
- }
- } ],
- "reference" : "Practitioner/1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb"
- },
- "reasonCode" : [ {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "I10"
- } ],
- "system" : "http://hl7.org/fhir/sid/icd-10-cm",
- "version" : "38",
- "code" : "R6521",
- "display" : "SEVERE SEPSIS WITH SEPTIC SHOCK"
- } ]
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "DiagnosticReport/1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732567199359055000.aead7c1e-173e-41ea-bbf9-fa3e82f9791d",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.2"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "basedOn": [
+ {
+ "reference": "ServiceRequest/1732567199296120000.0ce174fa-c7c1-4c3a-8e30-1b539cba47c2"
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "600-7",
+ "display": "Bacteria identified in Blood by Culture"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "BLOODC",
+ "display": "BLOOD CULTURE"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectivePeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "issued": "2021-08-10T06:25:00-06:00",
+ "_issued": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ },
+ "specimen": [
+ {
+ "reference": "Specimen/1732567199240616000.a916150d-c1d3-4d7d-a92b-c1ee9b43cc8e"
+ },
+ {
+ "reference": "Specimen/1732567199230364000.019f09a8-e3c0-4191-bfcf-bb02082f7994"
+ }
+ ],
+ "result": [
+ {
+ "reference": "Observation/1732567199077189000.133e6966-1206-491f-8afc-cda8f9ff0e3a"
+ },
+ {
+ "reference": "Observation/1732567199088223000.363c471d-02e4-4417-a649-1c4eae0d8406"
+ },
+ {
+ "reference": "Observation/1732567199100914000.abe72908-3b56-4304-ab0e-ea56554d594d"
+ },
+ {
+ "reference": "Observation/1732567199106706000.f4fa25c6-b3ed-43be-bc41-0103e99c7ccb"
+ },
+ {
+ "reference": "Observation/1732567199111827000.60f266e4-b9db-4e40-b926-4d43661b0aa5"
+ },
+ {
+ "reference": "Observation/1732567199119630000.d2413f80-e90e-455e-b46b-8fbe1c02c421"
+ },
+ {
+ "reference": "Observation/1732567199124582000.d849036b-2d33-44e2-97fc-63b48afa72ee"
+ }
+ ]
}
- }
- }, {
- "fullUrl" : "Practitioner/1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914896284000.98a2bd77-bd61-4c53-ba11-c55a7c9a32fb",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.16"
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914895784000.e72d6937-c80b-4d3b-9cb3-f89dd8843689"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "Practitioner/1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914898170000.2e657f56-1950-4882-ab3b-107c2e7b7a27",
- "identifier" : [ {
- "value" : "ER"
- } ]
- }
- }, {
- "fullUrl" : "Location/1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ],
- "name" : "RML",
- "physicalType" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- } ]
+ },
+ {
+ "fullUrl": "DiagnosticReport/1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732567199361322000.8959170f-9898-4e59-8bcb-dad2696865d6",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "09339017"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.3"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.144"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S"
+ }
+ ],
+ "basedOn": [
+ {
+ "reference": "ServiceRequest/1732567199318382000.46e91b38-da3c-4cc8-801e-18c8d07d0ecf"
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "77202-0",
+ "display": "Laboratory comment [Text] in Report Narrative"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VERGPCOM",
+ "display": "COMMENT"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectivePeriod": {
+ "start": "2028-08-02T02:52:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ },
+ "end": "2028-08-02T02:52:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280802025201-0600"
+ }
+ ]
+ }
+ },
+ "issued": "2021-08-10T06:25:00-06:00",
+ "_issued": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ },
+ "specimen": [
+ {
+ "reference": "Specimen/1732567199242870000.81842cd8-5775-4fc6-b5c2-b353231c881b"
+ },
+ {
+ "reference": "Specimen/1732567199231598000.d8e9a99e-5905-498e-a737-a763a55f939a"
+ }
+ ],
+ "result": [
+ {
+ "reference": "Observation/1732567199140275000.94eea07e-6d97-41f9-9dd1-4cd3422211f1"
+ },
+ {
+ "reference": "Observation/1732567199144879000.8eb1281b-d897-4d62-9de5-8b1c0b228c15"
+ },
+ {
+ "reference": "Observation/1732567199150834000.a2f961f6-b583-4923-b910-41a11a600b51"
+ },
+ {
+ "reference": "Observation/1732567199155168000.12ef8744-f345-48fa-8305-8d7d9382fc8d"
+ },
+ {
+ "reference": "Observation/1732567199159440000.6ccfebb0-cd42-4d6a-8931-d3d6396031ca"
+ },
+ {
+ "reference": "Observation/1732567199163332000.633e21bf-037b-46c5-8bf3-1d0b04273b08"
+ },
+ {
+ "reference": "Observation/1732567199167298000.20b3c4c6-2814-4819-8809-71e9513bd24b"
+ },
+ {
+ "reference": "Observation/1732567199175898000.1cc90ee7-dd03-44d1-8201-1d9ea729977c"
+ },
+ {
+ "reference": "Observation/1732567199183716000.d968c1df-10f8-4a2b-b0a4-f3fc282f4363"
+ },
+ {
+ "reference": "Observation/1732567199187552000.9acf86c2-c4f3-49a3-95e7-cc6857b20b50"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "DiagnosticReport/1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732567199362781000.90549015-0ca5-4d87-ace3-3082703bf9a0",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.4"
+ }
+ ],
+ "basedOn": [
+ {
+ "reference": "ServiceRequest/1732567199341806000.04ec2e33-a0f9-4c3a-9f53-6303e4365ee2"
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "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": "2.40",
+ "code": "50545-3",
+ "display": "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "MDAPTOE",
+ "display": "MIC DAPTOMYCIN E TEST"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectivePeriod": {
+ "start": "2028-08-07T16:36:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "end": "2028-08-07T16:36:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ "issued": "2021-08-10T06:25:00-06:00",
+ "_issued": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ },
+ "specimen": [
+ {
+ "reference": "Specimen/1732567199232902000.7aa259f0-f0b6-4442-9c8e-3e6a3e9bfc15"
+ }
+ ],
+ "result": [
+ {
+ "reference": "Observation/1732567199191704000.a2684432-4d02-4883-a6b0-a0d03f4c62c1"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "DiagnosticReport/1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732567199364257000.b75cb014-9f4f-4196-8138-7b6575c4d240",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "M12776123.5"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "21:AA:B0029251S.5"
+ }
+ ],
+ "basedOn": [
+ {
+ "reference": "ServiceRequest/1732567199350649000.6d72749f-5ca5-47f9-b04c-f4ede1111108"
+ }
+ ],
+ "status": "preliminary",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "5.67",
+ "code": "VGP-75",
+ "display": "VITEK2 AST-GP75"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732567199025839000.d11ba4b4-e7a2-49d8-8e83-76b149257553"
+ },
+ "encounter": {
+ "reference": "Encounter/1732567199044714000.5e1e8a9d-e832-4413-917e-61b306176c3c"
+ },
+ "effectivePeriod": {
+ "start": "2028-08-07T16:36:01-06:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ },
+ "end": "2028-08-07T16:36:01-06:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20280807163601-0600"
+ }
+ ]
+ }
+ },
+ "issued": "2021-08-10T06:25:00-06:00",
+ "_issued": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210810062500-0600"
+ }
+ ]
+ },
+ "specimen": [
+ {
+ "reference": "Specimen/1732567199246837000.00095c08-1656-4163-ad56-d0d65b250a1f"
+ },
+ {
+ "reference": "Specimen/1732567199234286000.149b36f1-3353-448f-bade-e0b95e7922fa"
+ }
+ ],
+ "result": [
+ {
+ "reference": "Observation/1732567199195790000.44b30c3b-2f5c-48ba-a04f-d6a0edb924e1"
+ },
+ {
+ "reference": "Observation/1732567199201535000.07b1653e-e7a8-4c04-ac81-a46d6bc1f724"
+ },
+ {
+ "reference": "Observation/1732567199205607000.da0c61c1-eede-4f6d-a884-8780b69fc92d"
+ },
+ {
+ "reference": "Observation/1732567199211107000.7231f3ff-1cf8-4db9-a452-f19059611bf2"
+ },
+ {
+ "reference": "Observation/1732567199215596000.2c9e9f7e-00f6-4758-9689-90b5a8193f09"
+ }
+ ]
}
}
- }, {
- "fullUrl" : "Practitioner/1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1730838914898968000.0f86179b-2a68-423c-b468-019d9425a5ae",
- "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/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [ {
- "url" : "XCN.3",
- "valueString" : "Christopher"
- }, {
- "url" : "XCN.4",
- "valueString" : "Beau"
- }, {
- "url" : "XCN.21",
- "valueString" : "MD"
- }, {
- "url" : "XCN.10",
- "valueString" : "L"
- } ]
- } ],
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1730838914898532000.a93144a7-8f2a-4e6e-9aea-9cd49b87f109"
- }
- } ],
- "type" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- } ],
- "code" : "NPI"
- } ]
- },
- "system" : "NPI",
- "value" : "1871759365"
- } ],
- "name" : [ {
- "use" : "official",
- "family" : "Willison",
- "given" : [ "Christopher", "Beau" ],
- "suffix" : [ "MD" ]
- } ]
- }
- }, {
- "fullUrl" : "DiagnosticReport/1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1730838914906397000.8c90cfa9-33e8-4fac-a189-93e53f35fa0e",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.1"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.1"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "basedOn" : [ {
- "reference" : "ServiceRequest/1730838914873315000.918059d6-e146-4bf4-b591-565d508866e0"
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BCEXT",
- "display" : "EXTENDED BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectivePeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "issued" : "2021-08-10T06:25:00-06:00",
- "_issued" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- },
- "specimen" : [ {
- "reference" : "Specimen/1730838914858965000.b61713c0-f060-4d4b-b6e4-90522af63456"
- }, {
- "reference" : "Specimen/1730838914855305000.bb5142ae-411f-4ac4-b135-11c0a3c86011"
- } ],
- "result" : [ {
- "reference" : "Observation/1730838914729489000.2eb7ce94-28f7-4662-bfb6-4613a8cb9a9d"
- }, {
- "reference" : "Observation/1730838914734896000.8ade4c13-8de9-451c-8e52-e7a17049b8de"
- }, {
- "reference" : "Observation/1730838914738722000.8ab918ff-884f-41ce-bf64-2eaa180562d8"
- } ]
- }
- }, {
- "fullUrl" : "DiagnosticReport/1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1730838914907614000.b8bd28ef-e261-4f29-924c-61000c4723e4",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.2"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "basedOn" : [ {
- "reference" : "ServiceRequest/1730838914882579000.4700ff5d-bc63-4475-9e6c-634a429efc7f"
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "600-7",
- "display" : "Bacteria identified in Blood by Culture"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "BLOODC",
- "display" : "BLOOD CULTURE"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectivePeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "issued" : "2021-08-10T06:25:00-06:00",
- "_issued" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- },
- "specimen" : [ {
- "reference" : "Specimen/1730838914860632000.4eb39857-6061-47de-95fe-b759dcae97d4"
- }, {
- "reference" : "Specimen/1730838914855587000.eefaaaf7-f224-4787-b808-222cfd8ce934"
- } ],
- "result" : [ {
- "reference" : "Observation/1730838914746679000.6cb47aca-33cd-460f-8769-e80973694db3"
- }, {
- "reference" : "Observation/1730838914750457000.11d7a4c7-d29d-406f-a873-41d6f778e1f6"
- }, {
- "reference" : "Observation/1730838914754255000.1450c286-7c87-4dac-a1ee-e4ae783ece39"
- }, {
- "reference" : "Observation/1730838914757918000.71ba2d30-22a8-4a57-9b4f-ac2ea4a6af9e"
- }, {
- "reference" : "Observation/1730838914761281000.8248137a-4beb-4915-a234-653c14b8991a"
- }, {
- "reference" : "Observation/1730838914764878000.6afb20de-601f-4d38-bafd-690a16277184"
- }, {
- "reference" : "Observation/1730838914769074000.2cbaf2ff-ff70-4bfd-a814-c2f3cfb51c50"
- } ]
- }
- }, {
- "fullUrl" : "DiagnosticReport/1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1730838914908842000.dbd3e970-1b66-45f6-9070-3aa23495dc1a",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- } ]
- },
- "value" : "09339017"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.3"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.3"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.144"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
- } ]
- },
- "value" : "21:AA:B0029251S"
- } ],
- "basedOn" : [ {
- "reference" : "ServiceRequest/1730838914891090000.81493f70-edbd-4707-bda1-b85f6f63c135"
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "77202-0",
- "display" : "Laboratory comment [Text] in Report Narrative"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VERGPCOM",
- "display" : "COMMENT"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectivePeriod" : {
- "start" : "2028-08-02T02:52:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- },
- "end" : "2028-08-02T02:52:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280802025201-0600"
- } ]
- }
- },
- "issued" : "2021-08-10T06:25:00-06:00",
- "_issued" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- },
- "specimen" : [ {
- "reference" : "Specimen/1730838914861805000.dbabdc5e-06c6-4747-90c2-46fffbac67ec"
- }, {
- "reference" : "Specimen/1730838914855835000.d443d135-470f-4f93-8cd5-f103f45247a4"
- } ],
- "result" : [ {
- "reference" : "Observation/1730838914778922000.ecf78aac-289c-40ab-96cc-09e0898af48e"
- }, {
- "reference" : "Observation/1730838914782556000.dbc35447-b50c-4640-8d1c-cb706d3bb6f5"
- }, {
- "reference" : "Observation/1730838914786102000.4b49ec3b-8e55-4b36-9fbf-962835c9ebdf"
- }, {
- "reference" : "Observation/1730838914789774000.c044d0e9-a99c-4a74-8886-cf10726f0c49"
- }, {
- "reference" : "Observation/1730838914793666000.5f0b4487-9875-4569-b863-77aba7499d86"
- }, {
- "reference" : "Observation/1730838914797256000.c05d181b-9b59-460e-9f74-7e587e5c5afa"
- }, {
- "reference" : "Observation/1730838914800181000.fc301ec4-32f0-411c-907e-deb1c242e47b"
- }, {
- "reference" : "Observation/1730838914802931000.82b080f0-5516-4a8d-88b2-a72d6b99b35e"
- }, {
- "reference" : "Observation/1730838914805532000.6c345aea-068c-4186-aba0-efa2b8496e16"
- }, {
- "reference" : "Observation/1730838914808096000.7f370244-46ef-47e3-8e04-ff4d9f94994d"
- } ]
- }
- }, {
- "fullUrl" : "DiagnosticReport/1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1730838914909748000.ef38cfa8-4f7f-4064-b60e-7427d1553444",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.4"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.4"
- } ],
- "basedOn" : [ {
- "reference" : "ServiceRequest/1730838914895288000.23b14643-50db-435a-85a3-d849290aaa7a"
- } ],
- "status" : "preliminary",
- "code" : {
- "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" : "2.40",
- "code" : "50545-3",
- "display" : "Bacterial susceptibility panel by Minimum inhibitory concentration (MIC)"
- }, {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "MDAPTOE",
- "display" : "MIC DAPTOMYCIN E TEST"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectivePeriod" : {
- "start" : "2028-08-07T16:36:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "end" : "2028-08-07T16:36:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- },
- "issued" : "2021-08-10T06:25:00-06:00",
- "_issued" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- },
- "specimen" : [ {
- "reference" : "Specimen/1730838914856068000.a6bf9c05-751d-4988-aa0c-d2c9e5b487ba"
- } ],
- "result" : [ {
- "reference" : "Observation/1730838914810702000.dd0bc552-e245-459e-a91c-ce9357b7b433"
- } ]
- }
- }, {
- "fullUrl" : "DiagnosticReport/1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1730838914910588000.703ca7ee-7e10-4e6a-888b-4f1d1e4ff655",
- "identifier" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "M12776123.5"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- } ]
- } ],
- "type" : {
- "coding" : [ {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
- } ]
- },
- "value" : "21:AA:B0029251S.5"
- } ],
- "basedOn" : [ {
- "reference" : "ServiceRequest/1730838914899310000.a320a280-30de-4f3b-b2dd-927de5ce8c9e"
- } ],
- "status" : "preliminary",
- "code" : {
- "coding" : [ {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }, {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
- } ],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "5.67",
- "code" : "VGP-75",
- "display" : "VITEK2 AST-GP75"
- } ]
- },
- "subject" : {
- "reference" : "Patient/1730838914533511000.aeaeccfe-dc12-46f3-81ea-1dfb344b1949"
- },
- "encounter" : {
- "reference" : "Encounter/1730838914552455000.e00dcab1-8817-427b-bf71-091bff0b1446"
- },
- "effectivePeriod" : {
- "start" : "2028-08-07T16:36:01-06:00",
- "_start" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- },
- "end" : "2028-08-07T16:36:01-06:00",
- "_end" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20280807163601-0600"
- } ]
- }
- },
- "issued" : "2021-08-10T06:25:00-06:00",
- "_issued" : {
- "extension" : [ {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20210810062500-0600"
- } ]
- },
- "specimen" : [ {
- "reference" : "Specimen/1730838914863219000.d24a9b32-1921-44a3-8b6f-e33035e4b426"
- }, {
- "reference" : "Specimen/1730838914856307000.7450cc07-5ed0-4c7e-b079-968341c133d5"
- } ],
- "result" : [ {
- "reference" : "Observation/1730838914813405000.cd610eea-1663-4f56-87c7-e49e6c8e1a86"
- }, {
- "reference" : "Observation/1730838914816026000.3fad926a-e5dc-46a4-a7a8-983f6abfbe68"
- }, {
- "reference" : "Observation/1730838914818617000.c257468e-544b-40c6-b8ba-08a89f84f856"
- }, {
- "reference" : "Observation/1730838914821243000.98539426-c7b0-4498-ad7a-111a075efe5a"
- }, {
- "reference" : "Observation/1730838914823945000.470c165d-7229-45ff-bbb5-662e8af72ed4"
- } ]
- }
- } ]
+ ]
}
\ No newline at end of file
diff --git a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir
index 066861b56d8..1e2c444e1d7 100644
--- a/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir
+++ b/prime-router/src/test/resources/fhirengine/smoketest/Expected_HL7_to_FHIR_MARSOTC.fhir
@@ -1,8 +1,8 @@
{
"resourceType": "Bundle",
- "id": "1730840482967804000.bd10b08d-ac1d-4bac-99bf-ccb13250308c",
+ "id": "1732567199078686000.79335908-9cc3-4f82-a28d-decc522dc8e1",
"meta": {
- "lastUpdated": "2024-11-05T16:01:22.967-05:00"
+ "lastUpdated": "2024-11-25T15:39:59.078-05:00"
},
"identifier": {
"system": "https://reportstream.cdc.gov/prime-router",
@@ -12,10 +12,10 @@
"timestamp": "2024-04-03T16:53:05.000-04:00",
"entry": [
{
- "fullUrl": "MessageHeader/1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477",
+ "fullUrl": "MessageHeader/1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4",
"resource": {
"resourceType": "MessageHeader",
- "id": "1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477",
+ "id": "1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4",
"meta": {
"tag": [
{
@@ -92,12 +92,12 @@
"name": "AIMS.INTEGRATION.PRD",
"endpoint": "urn:oid:2.16.840.1.114222.4.3.15.1",
"receiver": {
- "reference": "Organization/1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21"
+ "reference": "Organization/1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842"
}
}
],
"sender": {
- "reference": "Organization/1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66"
+ "reference": "Organization/1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f"
},
"source": {
"extension": [
@@ -125,10 +125,10 @@
}
},
{
- "fullUrl": "Organization/1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66",
+ "fullUrl": "Organization/1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f",
"resource": {
"resourceType": "Organization",
- "id": "1730840482968069000.567f2701-476d-4b56-a30f-9be882394c66",
+ "id": "1732567199079075000.031bd4a5-053f-4331-8a58-aba25338f89f",
"identifier": [
{
"extension": [
@@ -160,10 +160,10 @@
}
},
{
- "fullUrl": "Organization/1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21",
+ "fullUrl": "Organization/1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842",
"resource": {
"resourceType": "Organization",
- "id": "1730840482968970000.5fb818b5-bc21-4137-9fda-a8cbc7fb0a21",
+ "id": "1732567199079656000.7987cb25-eb4f-4c44-b89b-dbaa548b2842",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -202,16 +202,16 @@
}
},
{
- "fullUrl": "Provenance/1730840482971025000.d5408899-a9e9-4700-aab4-6b6d46aa9e0b",
+ "fullUrl": "Provenance/1732567199082302000.bbde341d-fc20-4dbc-ae24-bce2e16a49fc",
"resource": {
"resourceType": "Provenance",
- "id": "1730840482971025000.d5408899-a9e9-4700-aab4-6b6d46aa9e0b",
+ "id": "1732567199082302000.bbde341d-fc20-4dbc-ae24-bce2e16a49fc",
"target": [
{
- "reference": "MessageHeader/1730840482969630000.66d13d90-d26a-4d3d-a866-f42426399477"
+ "reference": "MessageHeader/1732567199079880000.8b597c11-7c0f-4b45-9cff-085e981064d4"
},
{
- "reference": "DiagnosticReport/1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3"
+ "reference": "DiagnosticReport/1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221"
}
],
"recorded": "2024-04-03T20:53:05Z",
@@ -233,7 +233,7 @@
]
},
"who": {
- "reference": "Organization/1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e"
+ "reference": "Organization/1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2"
}
}
],
@@ -241,17 +241,17 @@
{
"role": "source",
"what": {
- "reference": "Device/1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba"
+ "reference": "Device/1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea"
}
}
]
}
},
{
- "fullUrl": "Organization/1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e",
+ "fullUrl": "Organization/1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2",
"resource": {
"resourceType": "Organization",
- "id": "1730840482970825000.c5b43eba-74ae-4b95-98ae-62ad0cdb552e",
+ "id": "1732567199081675000.3015d9ea-0890-4418-a827-bb712de9c5b2",
"identifier": [
{
"extension": [
@@ -283,23 +283,23 @@
}
},
{
- "fullUrl": "Organization/1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc",
+ "fullUrl": "Organization/1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516",
"resource": {
"resourceType": "Organization",
- "id": "1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc",
+ "id": "1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516",
"name": "CAREEVOLUTION"
}
},
{
- "fullUrl": "Device/1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba",
+ "fullUrl": "Device/1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea",
"resource": {
"resourceType": "Device",
- "id": "1730840482971368000.579dcbcd-8f3e-42a5-aaeb-786d02605bba",
+ "id": "1732567199083336000.ec657ea8-8b9a-46c7-b1d6-8a7afd0a73ea",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
"valueReference": {
- "reference": "Organization/1730840482971298000.3fc5428f-cd99-4d5a-ae1f-7fe51362e2bc"
+ "reference": "Organization/1732567199083193000.f152bdd0-d09c-4f95-bcc4-b24c89a7c516"
}
}
],
@@ -333,11 +333,11 @@
}
},
{
- "fullUrl": "Provenance/1730840482971850000.23d06f85-bbe6-4f41-8768-288009120c47",
+ "fullUrl": "Provenance/1732567199084850000.0e2e83de-ecf2-40f4-b7b1-dc0c568fb2f0",
"resource": {
"resourceType": "Provenance",
- "id": "1730840482971850000.23d06f85-bbe6-4f41-8768-288009120c47",
- "recorded": "2024-11-05T16:01:22Z",
+ "id": "1732567199084850000.0e2e83de-ecf2-40f4-b7b1-dc0c568fb2f0",
+ "recorded": "2024-11-25T15:39:59Z",
"policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
@@ -359,17 +359,17 @@
]
},
"who": {
- "reference": "Organization/1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d"
+ "reference": "Organization/1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962"
}
}
]
}
},
{
- "fullUrl": "Organization/1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d",
+ "fullUrl": "Organization/1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962",
"resource": {
"resourceType": "Organization",
- "id": "1730840482971748000.af49a07c-2bcf-4309-a7bc-dba910fa7b7d",
+ "id": "1732567199084698000.8d1b3577-faee-4bb0-88c5-e7b560428962",
"identifier": [
{
"value": "CDC PRIME - Atlanta"
@@ -389,10 +389,10 @@
}
},
{
- "fullUrl": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2",
+ "fullUrl": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1",
"resource": {
"resourceType": "Patient",
- "id": "1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2",
+ "id": "1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1",
"identifier": [
{
"extension": [
@@ -480,16 +480,16 @@
}
},
{
- "fullUrl": "Provenance/1730840482975501000.9121457c-ecc3-46e7-9ebe-61e77af1d855",
+ "fullUrl": "Provenance/1732567199097970000.9d66059f-8440-4a7c-b62a-e5be1022090e",
"resource": {
"resourceType": "Provenance",
- "id": "1730840482975501000.9121457c-ecc3-46e7-9ebe-61e77af1d855",
+ "id": "1732567199097970000.9d66059f-8440-4a7c-b62a-e5be1022090e",
"target": [
{
- "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2"
+ "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1"
}
],
- "recorded": "2024-11-05T16:01:22Z",
+ "recorded": "2024-11-25T15:39:59Z",
"activity": {
"coding": [
{
@@ -501,10 +501,10 @@
}
},
{
- "fullUrl": "Observation/1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c",
+ "fullUrl": "Observation/1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174",
"resource": {
"resourceType": "Observation",
- "id": "1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c",
+ "id": "1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
@@ -583,14 +583,14 @@
]
},
"subject": {
- "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2"
+ "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1"
},
"performer": [
{
- "reference": "Organization/1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f"
+ "reference": "Organization/1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521"
},
{
- "reference": "Organization/1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8"
+ "reference": "Organization/1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0"
}
],
"valueCodeableConcept": {
@@ -654,10 +654,10 @@
}
},
{
- "fullUrl": "Organization/1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f",
+ "fullUrl": "Organization/1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521",
"resource": {
"resourceType": "Organization",
- "id": "1730840482977632000.67832a3d-746e-4dbc-85e7-3bafe6e8b70f",
+ "id": "1732567199100029000.04fe3eb6-b0d6-48df-9aa0-dd79c48d3521",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
@@ -688,10 +688,10 @@
}
},
{
- "fullUrl": "Organization/1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8",
+ "fullUrl": "Organization/1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0",
"resource": {
"resourceType": "Organization",
- "id": "1730840482978744000.45256c12-5840-4ead-b20c-fabddd1361f8",
+ "id": "1732567199100552000.5f883c32-4638-4056-ba50-9c0ab344f4f0",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
@@ -742,10 +742,10 @@
}
},
{
- "fullUrl": "Observation/1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e",
+ "fullUrl": "Observation/1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc",
"resource": {
"resourceType": "Observation",
- "id": "1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e",
+ "id": "1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
@@ -810,14 +810,14 @@
]
},
"subject": {
- "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2"
+ "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1"
},
"performer": [
{
- "reference": "Organization/1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778"
+ "reference": "Organization/1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3"
},
{
- "reference": "Organization/1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12"
+ "reference": "Organization/1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d"
}
],
"valueQuantity": {
@@ -829,10 +829,10 @@
}
},
{
- "fullUrl": "Organization/1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778",
+ "fullUrl": "Organization/1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3",
"resource": {
"resourceType": "Organization",
- "id": "1730840482982696000.8684af44-2b60-4160-88a3-8b139ff01778",
+ "id": "1732567199102434000.b4b635cf-6d0b-401c-97b0-c796896d9eb3",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
@@ -863,10 +863,10 @@
}
},
{
- "fullUrl": "Organization/1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12",
+ "fullUrl": "Organization/1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d",
"resource": {
"resourceType": "Organization",
- "id": "1730840482984100000.e4c0b787-44da-4e92-8a68-40941df44b12",
+ "id": "1732567199102928000.e180b963-0d46-422e-912c-f83bb097632d",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
@@ -917,23 +917,34 @@
}
},
{
- "fullUrl": "Specimen/1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0",
+ "fullUrl": "Specimen/1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0",
"resource": {
"resourceType": "Specimen",
- "id": "1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0",
+ "id": "1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-04-03T12:00:00-04:00",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240403120000-0400"
+ }
+ ]
+ }
+ }
}
},
{
- "fullUrl": "Specimen/1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36",
+ "fullUrl": "Specimen/1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59",
"resource": {
"resourceType": "Specimen",
- "id": "1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36",
+ "id": "1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
@@ -1014,10 +1025,10 @@
}
},
{
- "fullUrl": "ServiceRequest/1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455",
+ "fullUrl": "ServiceRequest/1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03",
"resource": {
"resourceType": "ServiceRequest",
- "id": "1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455",
+ "id": "1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
@@ -1029,7 +1040,7 @@
{
"url": "orc-21-ordering-facility-name",
"valueReference": {
- "reference": "Organization/1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac"
+ "reference": "Organization/1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416"
}
},
{
@@ -1043,7 +1054,7 @@
{
"url": "orc-12-ordering-provider",
"valueReference": {
- "reference": "Practitioner/1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535"
+ "reference": "Practitioner/1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476"
}
}
]
@@ -1075,18 +1086,10 @@
]
}
},
- {
- "url": "OBR.22",
- "valueString": "20240403120000-0400"
- },
- {
- "url": "OBR.25",
- "valueId": "F"
- },
{
"url": "OBR.16",
"valueReference": {
- "reference": "Practitioner/1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6"
+ "reference": "Practitioner/1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade"
}
},
{
@@ -1107,6 +1110,26 @@
]
}
}
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2024-04-03T12:00:00-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240403120000-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20240403120000-0400"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "F"
}
]
}
@@ -1168,7 +1191,7 @@
]
},
"subject": {
- "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2"
+ "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1"
},
"requester": {
"extension": [
@@ -1192,15 +1215,15 @@
}
}
],
- "reference": "PractitionerRole/1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a"
+ "reference": "PractitionerRole/1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f"
}
}
},
{
- "fullUrl": "Practitioner/1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd",
+ "fullUrl": "Practitioner/1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123",
"resource": {
"resourceType": "Practitioner",
- "id": "1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd",
+ "id": "1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -1210,10 +1233,10 @@
}
},
{
- "fullUrl": "Organization/1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2",
+ "fullUrl": "Organization/1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab",
"resource": {
"resourceType": "Organization",
- "id": "1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2",
+ "id": "1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab",
"name": "SA.OTCSelfReport",
"telecom": [
{
@@ -1237,45 +1260,45 @@
}
},
{
- "fullUrl": "PractitionerRole/1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a",
+ "fullUrl": "PractitionerRole/1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f",
"resource": {
"resourceType": "PractitionerRole",
- "id": "1730840482987122000.c1a85d78-569d-45ce-802c-d8ca64277f6a",
+ "id": "1732567199108532000.a2f266d2-c3bb-4c3a-8195-96979068cc4f",
"practitioner": {
- "reference": "Practitioner/1730840482987736000.7aece847-5913-4619-ba8c-08355d5f1ebd"
+ "reference": "Practitioner/1732567199109106000.0bc11e45-5c4f-48dd-a28a-d0906c288123"
},
"organization": {
- "reference": "Organization/1730840482988591000.b14b3379-27d2-4dc3-b133-fbca0b3b08f2"
+ "reference": "Organization/1732567199109971000.fce3c469-f00a-463d-a6a3-4fc33a0bdeab"
}
}
},
{
- "fullUrl": "Organization/1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac",
+ "fullUrl": "Organization/1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416",
"resource": {
"resourceType": "Organization",
- "id": "1730840482991865000.3d35eaba-8a9d-4845-843f-cf1c07a45dac",
+ "id": "1732567199111536000.bf082892-20a9-423d-be6e-9b1aa9b78416",
"name": "SA.OTCSelfReport"
}
},
{
- "fullUrl": "Practitioner/1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535",
+ "fullUrl": "Practitioner/1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476",
"resource": {
"resourceType": "Practitioner",
- "id": "1730840482992620000.77d3afc2-8082-42ae-9214-2d06529d2535"
+ "id": "1732567199112302000.523eb857-c8d3-4f30-bc18-f57614f42476"
}
},
{
- "fullUrl": "Practitioner/1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6",
+ "fullUrl": "Practitioner/1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade",
"resource": {
"resourceType": "Practitioner",
- "id": "1730840482993428000.13891cf0-010b-4865-8388-10ac7550b2d6"
+ "id": "1732567199112986000.e9237c63-253f-47e7-8889-c444d6391ade"
}
},
{
- "fullUrl": "DiagnosticReport/1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3",
+ "fullUrl": "DiagnosticReport/1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221",
"resource": {
"resourceType": "DiagnosticReport",
- "id": "1730840482995346000.7eb1816c-017a-4a77-ad2a-06f5b83d23d3",
+ "id": "1732567199117955000.4e7e4845-de7a-4fe6-b346-46ef52fd8221",
"identifier": [
{
"extension": [
@@ -1309,7 +1332,7 @@
],
"basedOn": [
{
- "reference": "ServiceRequest/1730840482994132000.b61afbc8-b646-4d5f-b92f-c629e93b3455"
+ "reference": "ServiceRequest/1732567199115184000.cc53b012-30f0-4ed7-8b57-f8528abade03"
}
],
"status": "final",
@@ -1334,7 +1357,7 @@
]
},
"subject": {
- "reference": "Patient/1730840482975252000.19cdfdb6-358e-4212-a7c8-629958e93fd2"
+ "reference": "Patient/1732567199097650000.c144ade4-eb67-44ee-9643-60fd42c428b1"
},
"effectiveDateTime": "2024-04-03T12:00:00-04:00",
"_effectiveDateTime": {
@@ -1356,18 +1379,18 @@
},
"specimen": [
{
- "reference": "Specimen/1730840482986715000.3a41d073-d8ad-4808-83b6-676c0558ec36"
+ "reference": "Specimen/1732567199108106000.c7d3f958-4832-4497-8628-cba7ba4dbc59"
},
{
- "reference": "Specimen/1730840482985425000.76564375-3fc9-41ef-8605-864178bc49e0"
+ "reference": "Specimen/1732567199104284000.e9ddfbd6-5215-49da-a57a-6c905fb774c0"
}
],
"result": [
{
- "reference": "Observation/1730840482977261000.587613a2-84cf-4698-9a9c-429a0958796c"
+ "reference": "Observation/1732567199099684000.726788cf-b6ea-4b48-9d2d-6c90204aa174"
},
{
- "reference": "Observation/1730840482981943000.d4449e8e-538d-4b4e-9d01-87b74dcb819e"
+ "reference": "Observation/1732567199102064000.822d1d82-3f84-4056-8281-aef4086bbccc"
}
]
}
diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt
new file mode 100644
index 00000000000..338e9d73f3a
--- /dev/null
+++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/omlo21/OMLO21Full.kt
@@ -0,0 +1,17 @@
+package gov.cdc.prime.router.datatests.mappinginventory.omlo21
+
+import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping
+import org.junit.jupiter.api.Test
+
+class OMLO21Full {
+
+ @Test
+ fun `test OML_O21 all segments`() {
+ assert(
+ verifyHL7ToFHIRToHL7Mapping(
+ "catchall/omlo21/oml_o21-full",
+ outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml"
+ ).passed
+ )
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt
new file mode 100644
index 00000000000..3777a0a0edf
--- /dev/null
+++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/OBRToSpecimenTests.kt
@@ -0,0 +1,32 @@
+package gov.cdc.prime.router.datatests.mappinginventory.orcobr
+
+import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping
+import org.junit.jupiter.api.Test
+
+class OBRToSpecimenTests {
+
+ @Test
+ fun `test OBR Specimen Source fields populated for ORU`() {
+ assert(verifyHL7ToFHIRToHL7Mapping("catchall/orcobr/oru-obr-to-specimen").passed)
+ }
+
+ @Test
+ fun `test OBR Specimen Source fields populated for OML`() {
+ assert(
+ verifyHL7ToFHIRToHL7Mapping(
+ "catchall/orcobr/oml-obr-to-specimen",
+ outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml"
+ ).passed
+ )
+ }
+
+ @Test
+ fun `test OBR Specimen Source fields populated for ORM`() {
+ assert(
+ verifyHL7ToFHIRToHL7Mapping(
+ "catchall/orcobr/orm-obr-to-specimen",
+ outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml"
+ ).passed
+ )
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt
index f69513f6a5c..32a04f44ddb 100644
--- a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt
+++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/orcobr/ORCOBRToServiceRequestDiagnosticReportTests.kt
@@ -68,11 +68,17 @@ class ORCOBRToServiceRequestDiagnosticReportTests {
}
@Test
- fun `test correctly handles the effective when OBR8 is not populated`() {
+ fun `test correctly handles the effectiveDateTime when OBR8 is not populated`() {
val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated"
assert(verifyHL7ToFHIRToHL7Mapping(testFileName).passed)
}
+ @Test
+ fun `test correctly handles the effectivePeriod when OBR8 is populated`() {
+ val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated"
+ assert(verifyHL7ToFHIRToHL7Mapping(testFileName).passed)
+ }
+
@Test
fun `test handles mapped HL7 values to OBRExtension from OBR25`() {
val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25"
@@ -90,4 +96,15 @@ class ORCOBRToServiceRequestDiagnosticReportTests {
val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated"
assert(verifyHL7ToFHIRToHL7Mapping(testFileName, true, false, true).passed)
}
+
+ @Test
+ fun `test links ServiceRequest to Observation through SupportingInfo`() {
+ val testFileName = "catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message"
+ assert(
+ verifyHL7ToFHIRToHL7Mapping(
+ testFileName,
+ outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml"
+ ).passed
+ )
+ }
}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt
new file mode 100644
index 00000000000..e40b0eb3f5c
--- /dev/null
+++ b/prime-router/src/testIntegration/kotlin/datatests/mappinginventory/catchall/ormo01/ORMO01Full.kt
@@ -0,0 +1,19 @@
+package gov.cdc.prime.router.datatests.mappinginventory.ormo01
+
+import gov.cdc.prime.router.datatests.mappinginventory.verifyHL7ToFHIRToHL7Mapping
+import org.junit.jupiter.api.Test
+
+class ORMO01Full {
+
+ // There are no ORM mappings for FHIR -> HL7. The HL7 -> FHIR -> HL7 and FHIR -> HL7 scenarios here verify,
+ // with the exception of MessageHeader.eventCoding, that FHIR crafted through ORM is fully mapped with OML mappings.
+ @Test
+ fun `test ORM_O01 all segments`() {
+ assert(
+ verifyHL7ToFHIRToHL7Mapping(
+ "catchall/ormo01/orm_o01-full",
+ outputSchema = "classpath:/metadata/hl7_mapping/OML_O21/OML_O21-test.yml"
+ ).passed
+ )
+ }
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir b/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir
index 17e218b8700..e09c6717d59 100644
--- a/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/FHIR_to_HL7/sample_OML_20230831-0001.fhir
@@ -1,8 +1,8 @@
{
"resourceType" : "Bundle",
- "id" : "1695669259031463000.f0525223-538b-4b70-9fce-3120011fb551",
+ "id" : "1727133200498293000.0551381e-87bb-4eed-9c3c-2a34fb70ef51",
"meta" : {
- "lastUpdated" : "2023-09-25T12:14:19.058-07:00"
+ "lastUpdated" : "2024-09-23T16:13:20.502-07:00"
},
"identifier" : {
"system" : "https://reportstream.cdc.gov/prime-router",
@@ -12,17 +12,11 @@
"timestamp" : "2023-05-06T03:29:16.000-07:00",
"entry" : [
{
- "fullUrl" : "MessageHeader/87c2d0db-6f31-3666-b9e2-7152e039c11f",
+ "fullUrl" : "MessageHeader/1727133200547009000.51500f0c-c723-46b9-b64a-d2ec3a519da7",
"resource" : {
"resourceType" : "MessageHeader",
- "id" : "87c2d0db-6f31-3666-b9e2-7152e039c11f",
+ "id" : "1727133200547009000.51500f0c-c723-46b9-b64a-d2ec3a519da7",
"meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
"tag" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
@@ -35,13 +29,17 @@
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
"extension" : [
{
- "url" : "MSH.16",
- "valueString" : "AL"
+ "url" : "MSH.7",
+ "valueString" : "20230506052916-0500"
},
{
"url" : "MSH.15",
"valueString" : "AL"
},
+ {
+ "url" : "MSH.16",
+ "valueString" : "AL"
+ },
{
"url" : "MSH.21",
"valueIdentifier" : {
@@ -109,23 +107,16 @@
}
],
"name" : "NATUS",
- "endpoint" : "urn:dns:natus.health.state.mn.us",
"receiver" : {
- "reference" : "Organization/urn-oid-2.16.840.1.114222.4.1.10080"
+ "reference" : "Organization/1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7"
}
}
],
"sender" : {
- "reference" : "Organization/1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311"
+ "reference" : "Organization/1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad"
},
"source" : {
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
- "valueReference" : {
- "reference" : "Organization/1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093"
- }
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
"valueString" : "Epic"
@@ -143,16 +134,50 @@
"valueString" : "MSH.3"
}
],
- "name" : "Epic",
"endpoint" : "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071"
}
}
},
{
- "fullUrl" : "Organization/urn-oid-2.16.840.1.114222.4.1.10080",
+ "fullUrl" : "Organization/1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727133200528316000.74e31b18-88b7-4038-b55e-9e83473516ad",
+ "identifier" : [
+ {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "HD.1"
+ }
+ ],
+ "value" : "Centracare"
+ },
+ {
+ "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" : "DNS"
+ }
+ ]
+ },
+ "value" : "centracare.com"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl" : "Organization/1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7",
"resource" : {
"resourceType" : "Organization",
- "id" : "urn-oid-2.16.840.1.114222.4.1.10080",
+ "id" : "1727133200546249000.da25de11-15e0-47cd-9605-451628d137c7",
"extension" : [
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -187,50 +212,44 @@
"system" : "urn:ietf:rfc:3986",
"value" : "2.16.840.1.114222.4.1.10080"
}
- ],
- "name" : "MN Public Health Lab"
+ ]
}
},
{
- "fullUrl" : "Organization/1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093",
+ "fullUrl" : "Provenance/1727133200761072000.6508f066-08f5-49cb-87c4-6305cabd20f6",
"resource" : {
- "resourceType" : "Organization",
- "id" : "1695669259213507000.4b999e35-7d47-48a1-ac6e-88f144e21093",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
+ "resourceType" : "Provenance",
+ "id" : "1727133200761072000.6508f066-08f5-49cb-87c4-6305cabd20f6",
+ "recorded" : "2023-05-06T05:29:16-05:00",
+ "activity" : {
+ "coding" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "display" : "OML^O21^OML_O21"
}
]
- }
+ },
+ "agent" : [
+ {
+ "type" : {
+ "coding" : [
+ {
+ "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code" : "author"
+ }
+ ]
+ },
+ "who" : {
+ "reference" : "Organization/1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef"
+ }
+ }
+ ]
}
},
{
- "fullUrl" : "Organization/1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311",
+ "fullUrl" : "Organization/1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef",
"resource" : {
"resourceType" : "Organization",
- "id" : "1695669260998438000.c605a46a-9711-4fbb-b14e-fc6814ed8311",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200760575000.e1170a0a-e2a5-48cd-99b7-86c9298368ef",
"identifier" : [
{
"extension" : [
@@ -262,467 +281,542 @@
}
},
{
- "fullUrl" : "ServiceRequest/1695669261555831000.5ad804c8-3508-4a62-8ced-23eb4351c2f6",
+ "fullUrl" : "Provenance/1727133200768658000.8264ccb6-32c2-45be-a64d-e983aabee81a",
"resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1695669261555831000.5ad804c8-3508-4a62-8ced-23eb4351c2f6",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
+ "resourceType" : "Provenance",
+ "id" : "1727133200768658000.8264ccb6-32c2-45be-a64d-e983aabee81a",
+ "recorded" : "2024-09-23T16:13:20Z",
+ "policy" : [
+ "http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
+ ],
+ "activity" : {
+ "coding" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "code" : "v2-FHIR transformation"
}
]
},
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entered-by",
- "valueReference" : {
- "reference" : "Practitioner/1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a"
- }
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/collector-identifier",
- "valueReference" : {
- "reference" : "Practitioner/1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f"
- }
- },
+ "agent" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/order-control",
- "valueCodeableConcept" : {
+ "type" : {
"coding" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0119",
- "code" : "NW"
+ "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code" : "assembler"
}
]
- }
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/enterers-location",
- "valueReference" : {
- "reference" : "Location/1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3"
+ },
+ "who" : {
+ "reference" : "Organization/1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753"
}
}
- ],
+ ]
+ }
+ },
+ {
+ "fullUrl" : "Organization/1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727133200768394000.754699fa-4751-435b-b31f-46dfbfe99753",
"identifier" : [
{
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "VN",
- "display" : "Visit number"
- }
- ]
- },
- "value" : "20230506052916-0500"
+ "value" : "CDC PRIME - Atlanta"
},
{
"type" : {
"coding" : [
{
- "code" : "CMS"
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0301"
}
]
},
- "value" : "1043269798"
+ "system" : "urn:ietf:rfc:3986",
+ "value" : "2.16.840.1.114222.4.1.237821"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
+ "extension" : [
+ {
+ "url" : "PID.8",
+ "valueCodeableConcept" : {
+ "coding" : [
+ {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }
+ ],
+ "code" : "M"
+ }
+ ]
+ }
+ },
+ {
+ "url" : "PID.24",
+ "valueString" : "N"
+ },
+ {
+ "url" : "PID.30",
+ "valueString" : "N"
+ }
+ ]
},
{
- "type" : {
- "coding" : [
+ "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
+ "valueHumanName" : {
+ "extension" : [
{
- "code" : "MN Public Health Lab"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension" : [
+ {
+ "url" : "XPN.2",
+ "valueString" : "SADIE"
+ },
+ {
+ "url" : "XPN.3",
+ "valueString" : "S"
+ }
+ ]
}
+ ],
+ "family" : "SMITH",
+ "given" : [
+ "SADIE",
+ "S"
]
- },
- "value" : "739"
- },
+ }
+ }
+ ],
+ "identifier" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueOid" : "urn:oid:1.2.840.114350.1.13.145.2.7.2.695071"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension" : [
+ {
+ "url" : "CX.5",
+ "valueString" : "MR"
+ }
+ ]
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "PID.3"
}
],
"type" : {
"coding" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC",
- "display" : "Placer Identifier"
+ "code" : "MR"
}
]
},
- "system" : "urn:id:EPIC",
- "value" : "421832901"
- },
+ "value" : "11102779"
+ }
+ ],
+ "name" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7-use",
- "valueString" : "placer-order-number"
- },
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension" : [
+ {
+ "url" : "XPN.2",
+ "valueString" : "BB SARAH"
+ },
+ {
+ "url" : "XPN.7",
+ "valueString" : "L"
+ }
+ ]
+ }
+ ],
+ "use" : "official",
+ "family" : "SMITH",
+ "given" : [
+ "BB SARAH"
+ ]
+ }
+ ],
+ "telecom" : [
+ {
+ "extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "EPIC"
+ "url" : "XTN.2",
+ "valueString" : "PRN"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071"
+ "url" : "XTN.3",
+ "valueString" : "PH"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url" : "XTN.9",
+ "valueString" : "(763)555-5555"
+ },
+ {
+ "url" : "XTN.12",
+ "valueString" : "(763)555-5555"
}
]
}
],
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
- }
- ]
- },
- "value" : "421832901"
+ "system" : "phone",
+ "value" : "(763)555-5555",
+ "use" : "home"
}
],
- "status" : "unknown",
- "intent" : "order",
- "code" : {
- "coding" : [
- {
- "system" : "http://loinc.org",
- "code" : "54089-8",
- "display" : "Newborn screening panel American Health Information Community (AHIC)"
- }
- ]
- },
- "subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
- },
- "authoredOn" : "2023-05-06T05:29:13-05:00",
- "_authoredOn" : {
- "extension" : [
+ "gender" : "male",
+ "birthDate" : "2023-05-04",
+ "_birthDate" : {
+ "extension" : [
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230506052913-0500"
- }
- ]
- },
- "requester" : {
- "reference" : "PractitionerRole/1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b"
- }
- }
- },
- {
- "fullUrl" : "Practitioner/1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1695669261548614000.8d8ad999-27fa-4f35-9231-6e571f7bc87a",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- }
- }
- },
- {
- "fullUrl" : "Practitioner/1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1695669261552537000.d98fe0f9-f125-4509-a0ae-49239ddb7b7f",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- }
- }
- },
- {
- "fullUrl" : "Practitioner/1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
+ "valueString" : "20230504131023-0500"
+ },
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
+ "valueDateTime" : "2023-05-04T13:10:23-05:00"
}
]
},
- "extension" : [
+ "deceasedBoolean" : false,
+ "address" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-type",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "NPI"
- }
- ]
- }
+ "extension" : [
+ {
+ "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" : "555 STATE HIGHWAY 13"
+ }
+ ]
+ },
+ {
+ "url" : "XAD.7",
+ "valueCode" : "H"
+ }
+ ]
+ }
+ ],
+ "use" : "home",
+ "line" : [
+ "555 STATE HIGHWAY 13"
+ ],
+ "city" : "DEER CREEK",
+ "district" : "OTTER TAIL",
+ "state" : "IG",
+ "postalCode" : "56527-9657",
+ "country" : "USA"
}
],
- "identifier" : [
+ "multipleBirthBoolean" : false,
+ "contact" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "NPI"
+ "url" : "https://hl7.org/fhir/StructureDefinition/relationship",
+ "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" : "HL70131"
+ }
+ ],
+ "code" : "N",
+ "display" : "Next-of-Kin"
+ }
+ ]
+ }
}
],
- "type" : {
- "coding" : [
+ "relationship" : [
+ {
+ "coding" : [
+ {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70131"
+ }
+ ],
+ "code" : "N",
+ "display" : "Next-of-Kin"
+ }
+ ]
+ }
+ ],
+ "name" : {
+ "extension" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "NPI",
- "display" : "National provider identifier"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension" : [
+ {
+ "url" : "XPN.2",
+ "valueString" : "Leia"
+ }
+ ]
}
+ ],
+ "family" : "Organa",
+ "given" : [
+ "Leia"
]
},
- "system" : "http://hl7.org/fhir/sid/us-npi",
- "value" : "1265136360"
- }
- ],
- "name" : [
- {
- "use" : "official",
- "text" : "JANE JONES",
- "family" : "JONES",
- "given" : [
- "JANE"
+ "telecom" : [
+ {
+ "extension" : [
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString" : "31"
+ },
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString" : "201"
+ },
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString" : "234567"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension" : [
+ {
+ "url" : "XTN.3",
+ "valueString" : "PH"
+ },
+ {
+ "url" : "XTN.7",
+ "valueString" : "234567"
+ },
+ {
+ "url" : "XTN.12",
+ "valueString" : "+31201234567"
+ }
+ ]
+ }
+ ],
+ "system" : "phone",
+ "value" : "+31201234567"
+ }
]
}
]
}
},
{
- "fullUrl" : "Location/1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d",
+ "fullUrl" : "Provenance/1727133200788450000.13955a83-ca9d-4215-a89b-44e626579bba",
"resource" : {
- "resourceType" : "Location",
- "id" : "1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d",
- "meta" : {
- "extension" : [
+ "resourceType" : "Provenance",
+ "id" : "1727133200788450000.13955a83-ca9d-4215-a89b-44e626579bba",
+ "target" : [
+ {
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
+ }
+ ],
+ "recorded" : "2024-09-23T16:13:20Z",
+ "activity" : {
+ "coding" : [
{
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
}
]
}
}
},
{
- "fullUrl" : "Organization/1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362",
+ "fullUrl" : "RelatedPerson/1727133200790203000.00aa30cf-f5b2-4b0d-a294-4bf348c11b02",
"resource" : {
- "resourceType" : "Organization",
- "id" : "1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "resourceType" : "RelatedPerson",
+ "id" : "1727133200790203000.00aa30cf-f5b2-4b0d-a294-4bf348c11b02",
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0204",
- "code" : "L",
- "display" : "Legal name"
- }
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "NK1"
}
],
- "identifier" : [
+ "patient" : {
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
+ },
+ "relationship" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "NK1.3"
+ }
+ ],
+ "coding" : [
+ {
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CMS"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70131"
}
- ]
+ ],
+ "code" : "N",
+ "display" : "Next-of-Kin"
+ }
+ ]
+ }
+ ],
+ "name" : [
+ {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "NK1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Location/1695669261565432000.384cef22-33c2-45d7-bf14-fe1b2e82855d"
- }
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension" : [
+ {
+ "url" : "XPN.2",
+ "valueString" : "Leia"
+ }
+ ]
}
],
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "NPI"
- }
- ]
- },
- "value" : "1043269798"
+ "family" : "Organa",
+ "given" : [
+ "Leia"
+ ]
}
],
- "name" : "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl" : "PractitionerRole/1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1695669261568047000.72f08cf4-2bc0-4be2-bc26-ad36f1f0da5b",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
- "practitioner" : {
- "reference" : "Practitioner/1695669261560416000.a8835be5-eee4-4709-ba55-d4d997aaf896"
- },
- "organization" : {
- "reference" : "Organization/1695669261567733000.3bdd12c2-f56f-400b-aecc-9883e5685362"
- }
- }
- },
- {
- "fullUrl" : "Location/1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1695669261570648000.f8e4036c-2730-4423-918c-c694f1b902e3",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- }
+ "telecom" : [
+ {
+ "extension" : [
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString" : "31"
+ },
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString" : "201"
+ },
+ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString" : "234567"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension" : [
+ {
+ "url" : "XTN.3",
+ "valueString" : "PH"
+ },
+ {
+ "url" : "XTN.7",
+ "valueString" : "234567"
+ },
+ {
+ "url" : "XTN.12",
+ "valueString" : "+31201234567"
+ }
+ ]
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "NK1.5"
+ }
+ ],
+ "system" : "phone",
+ "value" : "+31201234567"
+ }
+ ]
}
},
{
- "fullUrl" : "Observation/1695669261775617000.d5df762f-03f4-4e6d-af35-446ec9df2c31",
+ "fullUrl" : "Observation/1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261775617000.d5df762f-03f4-4e6d-af35-446ec9df2c31",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/units",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "system" : "http://unitsofmeasure.org",
- "code" : "g",
- "display" : "gram"
- }
- ]
- }
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "NM"
+ },
+ {
+ "url" : "OBX.6",
+ "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" : "UCUM"
+ }
+ ],
+ "system" : "http://unitsofmeasure.org",
+ "code" : "g",
+ "display" : "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "8339-4",
"display" : "BIRTH WEIGHT MEASURED"
@@ -730,7 +824,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -742,78 +836,73 @@
]
},
"valueQuantity" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/alternate-value",
- "valueString" : "1769.859285"
- }
- ],
"value" : 1769.8593,
- "unit" : "g",
- "system" : "http://unitsofmeasure.org",
+ "unit" : "gram",
+ "system" : "UCUM",
"code" : "g"
}
}
},
{
- "fullUrl" : "Observation/1695669261780337000.da275dfc-1950-472b-8a3c-f558c8e69333",
+ "fullUrl" : "Observation/1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261780337000.da275dfc-1950-472b-8a3c-f558c8e69333",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/units",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "system" : "http://unitsofmeasure.org",
- "code" : "wk",
- "display" : "week"
- }
- ]
- }
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "NM"
+ },
+ {
+ "url" : "OBX.6",
+ "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" : "UCUM"
+ }
+ ],
+ "system" : "http://unitsofmeasure.org",
+ "code" : "wk",
+ "display" : "week"
+ }
+ ]
+ }
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "57714-8",
"display" : "OBSTETRIC ESTIMATION OF GESTATIONAL AGE"
@@ -821,7 +910,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -833,66 +922,51 @@
]
},
"valueQuantity" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/alternate-value",
- "valueString" : "32"
- }
- ],
"value" : 32,
- "unit" : "wk",
- "system" : "http://unitsofmeasure.org",
+ "unit" : "week",
+ "system" : "UCUM",
"code" : "wk"
}
}
},
{
- "fullUrl" : "Observation/1695669261784168000.35a25dff-438e-4262-9397-939eaf5f024e",
+ "fullUrl" : "Observation/1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261784168000.35a25dff-438e-4262-9397-939eaf5f024e",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "57713-0",
"display" : "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION"
@@ -900,7 +974,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -914,6 +988,16 @@
"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" : "LN"
+ }
+ ],
"system" : "http://loinc.org",
"code" : "LA12419-0",
"display" : "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
@@ -923,60 +1007,50 @@
}
},
{
- "fullUrl" : "Observation/1695669261787987000.904d10b9-c831-4d93-9751-edbec5b1f04d",
+ "fullUrl" : "Observation/1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261787987000.904d10b9-c831-4d93-9751-edbec5b1f04d",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "MNDSIB",
"display" : "DOES THE BABY HAVE A DECEASED SIBLING?"
}
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -990,7 +1064,16 @@
"valueCodeableConcept" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "N",
"display" : "No"
}
@@ -999,60 +1082,50 @@
}
},
{
- "fullUrl" : "Observation/1695669261791552000.5eef397b-048b-46d1-99c6-48bceaa95ecd",
+ "fullUrl" : "Observation/1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261791552000.5eef397b-048b-46d1-99c6-48bceaa95ecd",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "MNDEFECT",
"display" : "DOES THE BABY HAVE BIRTH DEFECTS?"
}
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1066,7 +1139,16 @@
"valueCodeableConcept" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "N",
"display" : "No"
}
@@ -1075,60 +1157,50 @@
}
},
{
- "fullUrl" : "Observation/1695669261794640000.aebb6fa3-9574-4f83-af82-06b6d2df27ae",
+ "fullUrl" : "Observation/1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261794640000.aebb6fa3-9574-4f83-af82-06b6d2df27ae",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "MNFAM",
"display" : "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL"
}
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1142,7 +1214,16 @@
"valueCodeableConcept" : {
"coding" : [
{
- "system" : "99MDH",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "99MDH"
+ }
+ ],
"code" : "N",
"display" : "No"
}
@@ -1151,52 +1232,43 @@
}
},
{
- "fullUrl" : "Observation/1695669261797898000.1f2a7080-6188-477b-8310-a7c82b28e81e",
+ "fullUrl" : "Observation/1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261797898000.1f2a7080-6188-477b-8310-a7c82b28e81e",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "67704-7",
"display" : "FEEDING TYPES"
@@ -1204,7 +1276,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1218,6 +1290,16 @@
"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" : "LN"
+ }
+ ],
"system" : "http://loinc.org",
"code" : "LA12418-2",
"display" : "TPN"
@@ -1227,52 +1309,43 @@
}
},
{
- "fullUrl" : "Observation/1695669261801446000.ddbee45e-3169-46f5-bb3c-6fb9f8458cd8",
+ "fullUrl" : "Observation/1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261801446000.ddbee45e-3169-46f5-bb3c-6fb9f8458cd8",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "2"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "67704-7",
"display" : "FEEDING TYPES"
@@ -1280,7 +1353,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1294,6 +1367,16 @@
"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" : "LN"
+ }
+ ],
"system" : "http://loinc.org",
"code" : "LA16914-6",
"display" : "BREAST MILK"
@@ -1303,52 +1386,43 @@
}
},
{
- "fullUrl" : "Observation/1695669261805167000.af8d435c-63ac-4874-a7ed-6f48797d1b1c",
+ "fullUrl" : "Observation/1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261805167000.af8d435c-63ac-4874-a7ed-6f48797d1b1c",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "57723-9",
"display" : "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE"
@@ -1356,7 +1430,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1370,6 +1444,12 @@
"valueCodeableConcept" : {
"coding" : [
{
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }
+ ],
"code" : "0516199364"
}
]
@@ -1377,52 +1457,43 @@
}
},
{
- "fullUrl" : "Observation/1695669261807707000.4f04a3ff-10bc-4cdd-be13-54cd68f7067c",
+ "fullUrl" : "Observation/1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261807707000.4f04a3ff-10bc-4cdd-be13-54cd68f7067c",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "ST"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "62328-0",
"display" : "DISCHARGE PROVIDER PRACTICE PHONE NUMBER"
@@ -1430,67 +1501,58 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230506050000-0500"
- }
- ]
- },
- "valueString" : "Daniel Davis/218-555-1000"
- }
- },
- {
- "fullUrl" : "Observation/1695669261810041000.e47d7a7f-b710-421f-b2fd-07337243454f",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1695669261810041000.e47d7a7f-b710-421f-b2fd-07337243454f",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
+ "extension" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230506050000-0500"
}
]
},
+ "valueString" : "Daniel Davis/218-555-1000"
+ }
+ },
+ {
+ "fullUrl" : "Observation/1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9",
+ "resource" : {
+ "resourceType" : "Observation",
+ "id" : "1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "ST"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "62324-9",
"display" : "POST-DISCHARGE PROVIDER NAME"
@@ -1498,7 +1560,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1513,52 +1575,43 @@
}
},
{
- "fullUrl" : "Observation/1695669261812411000.3a388f9f-a4d9-44da-80d5-c597bfec30e5",
+ "fullUrl" : "Observation/1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9",
"resource" : {
"resourceType" : "Observation",
- "id" : "1695669261812411000.3a388f9f-a4d9-44da-80d5-c597bfec30e5",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9",
"extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueString" : "AOE"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-type",
- "valueString" : "QST"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-status-original-text",
- "valueString" : "O"
- },
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
"valueString" : "1"
- }
- ],
- "identifier" : [
+ },
{
- "system" : "urn:id:extID",
- "value" : "421832901"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [
+ {
+ "url" : "OBX.2",
+ "valueId" : "ST"
+ },
+ {
+ "url" : "OBX.11",
+ "valueString" : "unknown"
+ }
+ ]
}
],
"status" : "unknown",
"code" : {
"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",
"code" : "62326-4",
"display" : "POST-DISCHARGE PROVIDER PRACTICE NAME"
@@ -1566,7 +1619,7 @@
]
},
"subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
},
"effectiveDateTime" : "2023-05-06T05:00:00-05:00",
"_effectiveDateTime" : {
@@ -1581,440 +1634,435 @@
}
},
{
- "fullUrl" : "Specimen/1695669261832353000.1ac58cbf-b88d-4758-842a-9bae875a9295",
+ "fullUrl" : "Specimen/1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375",
"resource" : {
"resourceType" : "Specimen",
- "id" : "1695669261832353000.1ac58cbf-b88d-4758-842a-9bae875a9295",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- }
- ]
- },
+ "id" : "1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "OBR"
+ }
+ ],
+ "collection" : {
+ "collectedDateTime" : "2023-05-06T05:00:00Z",
+ "_collectedDateTime" : {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230506050000+0000"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "fullUrl" : "Specimen/1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901",
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/specimen-name-or-code",
- "valueString" : "440500007"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "SPM"
}
],
"type" : {
"coding" : [
{
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "SCT"
+ }
+ ],
"system" : "http://snomed.info/sct",
"code" : "440500007",
"display" : "Blood spot specimen"
}
]
},
- "subject" : {
- "reference" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655"
- },
"collection" : {
- "collectedDateTime" : "2023-05-06T05:00:00Z"
+ "collectedDateTime" : "2023-05-06T05:00:00Z",
+ "_collectedDateTime" : {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230506050000+0000"
+ }
+ ]
+ }
}
}
},
{
- "fullUrl" : "Provenance/1695669261841269000.fc89473e-7bea-4d6d-b251-f56adfad0d81",
+ "fullUrl" : "ServiceRequest/1727133200936686000.bc160026-49d9-449d-ae77-afa1ebbd9be6",
"resource" : {
- "resourceType" : "Provenance",
- "id" : "1695669261841269000.fc89473e-7bea-4d6d-b251-f56adfad0d81",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
+ "resourceType" : "ServiceRequest",
+ "id" : "1727133200936686000.bc160026-49d9-449d-ae77-afa1ebbd9be6",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode" : "NW"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString" : "20230506052913-0500"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension" : [
+ {
+ "url" : "ORC.5",
+ "valueString" : "unknown"
+ },
+ {
+ "url" : "orc-21-ordering-facility-name",
+ "valueReference" : {
+ "reference" : "Organization/1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6"
+ }
+ }
+ ]
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [
+ {
+ "url" : "OBR.2",
+ "valueIdentifier" : {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "EPIC"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ }
+ ]
+ }
+ ],
+ "value" : "421832901"
+ }
+ },
+ {
+ "url" : "OBR.11",
+ "valueString" : "P"
+ }
+ ]
+ }
+ ],
+ "identifier" : [
+ {
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "ORC.2"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "EPIC"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ }
+ ]
+ }
+ ],
+ "type" : {
+ "coding" : [
+ {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "PLAC"
+ }
+ ]
},
+ "value" : "421832901"
+ }
+ ],
+ "status" : "unknown",
+ "intent" : "order",
+ "code" : {
+ "coding" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0207",
- "code" : "P"
+ "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",
+ "code" : "54089-8",
+ "display" : "Newborn screening panel American Health Information Community (AHIC)"
}
]
},
- "recorded" : "2023-05-06T05:29:16-05:00",
- "_recorded" : {
+ "subject" : {
+ "reference" : "Patient/1727133200785961000.81f0a0fd-2500-4d13-aace-6c921cff814e"
+ },
+ "authoredOn" : "2023-05-06T05:29:13-05:00",
+ "_authoredOn" : {
"extension" : [
{
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230506052916-0500"
+ "valueString" : "20230506052913-0500"
}
]
},
- "activity" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "ORM",
- "display" : "ORM_ORM"
- }
- ]
+ "requester" : {
+ "reference" : "PractitionerRole/1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73"
},
- "agent" : [
+ "supportingInfo" : [
{
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "author"
- }
- ]
- },
- "who" : {
- "reference" : "Organization/1695669261836791000.91b18428-3050-4162-9340-e69819fdd013"
- }
+ "reference" : "Observation/1727133200793272000.a7cc16be-b4a3-4f2e-82c9-e1d95a7149f5"
},
{
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "author"
- }
- ]
- },
- "who" : {
- "reference" : "Practitioner/1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2"
- }
+ "reference" : "Observation/1727133200795547000.8a17d6b0-ba46-4417-a7cd-dd15e7095eb7"
+ },
+ {
+ "reference" : "Observation/1727133200797365000.9b7d00cb-f2b8-4749-92c8-225cab5f259b"
+ },
+ {
+ "reference" : "Observation/1727133200799038000.534eab68-0842-4dfe-9d9c-c3cdd6828316"
+ },
+ {
+ "reference" : "Observation/1727133200800657000.5b01a1c4-e769-477d-88dd-8fac17a37ab4"
+ },
+ {
+ "reference" : "Observation/1727133200802546000.6215f7d5-6c47-4337-8b6a-503ac0bdb67f"
+ },
+ {
+ "reference" : "Observation/1727133200804303000.a749bc39-0714-4f69-87db-a634642d22d3"
+ },
+ {
+ "reference" : "Observation/1727133200805779000.834301e0-25fa-45d7-8ddc-3ad1b7561630"
+ },
+ {
+ "reference" : "Observation/1727133200808186000.7fcebe37-0de0-45aa-9872-ec3723585bf2"
+ },
+ {
+ "reference" : "Observation/1727133200809672000.42257385-71c9-4c34-b285-2f01d06e8f82"
+ },
+ {
+ "reference" : "Observation/1727133200811020000.2c39eec2-a445-4f80-8ef2-f3b8283dc0f9"
+ },
+ {
+ "reference" : "Observation/1727133200812409000.b17af112-d0f9-409b-ab63-6d3d3dbd4ff9"
}
],
- "entity" : [
+ "specimen" : [
{
- "role" : "source",
- "what" : {
- "reference" : "Device/1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d"
- }
+ "reference" : "Specimen/1727133200932421000.edb6d55e-9178-417f-8e7a-597f7e1e0901"
+ },
+ {
+ "reference" : "Specimen/1727133200930568000.b93de036-e291-4e43-86cd-87c54945e375"
}
]
}
},
{
- "fullUrl" : "Organization/1695669261836791000.91b18428-3050-4162-9340-e69819fdd013",
+ "fullUrl" : "Organization/1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4",
"resource" : {
"resourceType" : "Organization",
- "id" : "1695669261836791000.91b18428-3050-4162-9340-e69819fdd013",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- },
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0207",
- "code" : "P"
- }
- ]
- },
- "name" : "Centracare",
- "contact" : [
+ "id" : "1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4",
+ "extension" : [
{
- "purpose" : {
- "coding" : [
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
+ "valueCoding" : {
+ "extension" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/contactentity-type",
- "code" : "ADMIN",
- "display" : "Administrative"
+ "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"
+ }
+ ],
+ "code" : "L"
+ }
+ ]
+ }
}
],
- "text" : "Organization Medical Director"
- }
- }
- ]
- }
- },
- {
- "fullUrl" : "Practitioner/1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1695669261839977000.c8459a68-e347-4263-8fa3-4c1142a85dd2",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- },
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0207",
- "code" : "P"
+ "code" : "L"
}
- ]
- },
- "extension" : [
+ },
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-type",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "NPI"
- }
- ]
- }
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension" : [
+ {
+ "url" : "XON.10",
+ "valueString" : "1043269798"
+ }
+ ]
}
],
"identifier" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "NPI"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "CMS"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type"
+ },
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type"
+ }
+ ]
}
],
"type" : {
"coding" : [
{
+ "extension" : [
+ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name",
+ "valueString" : "identifier"
+ }
+ ],
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "NPI",
- "display" : "National provider identifier"
+ "code" : "NPI"
}
]
},
- "system" : "http://hl7.org/fhir/sid/us-npi",
- "value" : "1265136360"
+ "value" : "1043269798"
}
],
- "name" : [
- {
- "use" : "official",
- "text" : "JANE JONES",
- "family" : "JONES",
- "given" : [
- "JANE"
- ]
- }
- ]
+ "name" : "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl" : "Device/1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d",
+ "fullUrl" : "PractitionerRole/1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73",
"resource" : {
- "resourceType" : "Device",
- "id" : "1695669261842644000.c2c89cf8-1f3b-49b3-af27-274fb99c332d",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P",
- "display" : "Epic"
- },
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0207",
- "code" : "P",
- "display" : "Epic"
- }
- ]
- },
- "identifier" : [
- {
- "type" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/NamingSystem/uri",
- "code" : "Epic",
- "display" : "Epic"
- }
- ]
- }
- }
- ],
- "deviceName" : [
- {
- "name" : "Epic",
- "type" : "user-friendly-name"
- }
- ]
+ "resourceType" : "PractitionerRole",
+ "id" : "1727133200933005000.a8a10515-3bbf-42e6-b39f-9c1bcce88d73",
+ "organization" : {
+ "reference" : "Organization/1727133200933847000.64f9079f-21e1-408e-86d3-0d21fc9f69f4"
+ }
}
},
{
- "fullUrl" : "Patient/1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655",
+ "fullUrl" : "Organization/1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6",
"resource" : {
- "resourceType" : "Patient",
- "id" : "1695669261532305000.bb1b87fc-3c3d-4e3e-ba3e-ba612f880655",
- "meta" : {
- "extension" : [
- {
- "url" : "http://ibm.com/fhir/cdm/StructureDefinition/source-data-model-version",
- "valueString" : "2.5.1"
- }
- ],
- "tag" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "P"
- },
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0207",
- "code" : "P"
- }
- ]
- },
+ "resourceType" : "Organization",
+ "id" : "1727133200935545000.77ac7a1a-0fe6-43ad-b4a2-1febff073af6",
"extension" : [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueHumanName" : {
- "text" : "SADIE S SMITH",
- "family" : "SMITH",
- "given" : [
- "SADIE",
- "S"
- ]
- }
- }
- ],
- "identifier" : [
- {
- "type" : {
- "coding" : [
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
+ "valueCoding" : {
+ "extension" : [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MR",
- "display" : "Medical record number"
+ "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"
+ }
+ ],
+ "code" : "L"
+ }
+ ]
+ }
}
- ]
- },
- "system" : "CRPMRN",
- "value" : "11102779"
- }
- ],
- "name" : [
+ ],
+ "code" : "L"
+ }
+ },
{
- "use" : "official",
- "text" : "BB SARAH SMITH",
- "family" : "SMITH",
- "given" : [
- "BB SARAH"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension" : [
+ {
+ "url" : "XON.10",
+ "valueString" : "1043269798"
+ }
]
}
],
- "telecom" : [
+ "identifier" : [
{
"extension" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
"extension" : [
{
- "url" : "XTN.9",
- "valueString" : "(763)555-5555"
- },
- {
- "url" : "XTN.12",
- "valueString" : "(763)555-5555"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "CMS"
},
{
- "url" : "XTN.3",
- "valueString" : "PH"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type"
},
{
- "url" : "XTN.2",
- "valueString" : "PRN"
- }
- ]
- }
- ],
- "system" : "phone",
- "value" : "(763)555-5555",
- "use" : "home"
- }
- ],
- "gender" : "male",
- "birthDate" : "2023-05-04",
- "_birthDate" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230504131023-0500"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
- "valueDateTime" : "2023-05-04T13:10:23-05:00"
- }
- ]
- },
- "deceasedBoolean" : false,
- "address" : [
- {
- "use" : "home",
- "line" : [
- "555 STATE HIGHWAY 13"
- ],
- "city" : "DEER CREEK",
- "district" : "OTTER TAIL",
- "state" : "IG",
- "postalCode" : "56527-9657",
- "country" : "USA"
- }
- ],
- "multipleBirthBoolean" : false,
- "contact" : [
- {
- "relationship" : [
- {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
- "code" : "N",
- "display" : "Next-of-Kin"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type"
}
]
}
],
- "name" : {
- "extension" : [
+ "type" : {
+ "coding" : [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
"extension" : [
{
- "url" : "XPN.2",
- "valueString" : "Leia"
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/code-index-name",
+ "valueString" : "identifier"
}
- ]
+ ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "NPI"
}
- ],
- "family" : "Organa",
- "given" : [
- "Leia"
]
},
- "telecom" : [
- {
- "system" : "phone",
- "value" : "+31201234567"
- }
- ]
+ "value" : "1043269798"
}
- ]
+ ],
+ "name" : "ST. CLOUD HOSPITAL"
}
}
]
-}
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir
index 67884d8464b..9ef0b0fa1aa 100644
--- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.fhir
@@ -1,8 +1,8 @@
{
"resourceType": "Bundle",
- "id": "1730739114749225000.7a1d88aa-6583-4af7-9ea6-d57fe9b47681",
+ "id": "1732560543252705000.5512e3cc-f417-41f7-82f6-be5e073ca352",
"meta": {
- "lastUpdated": "2024-11-04T11:51:54.749-05:00"
+ "lastUpdated": "2024-11-25T13:49:03.252-05:00"
},
"identifier": {
"system": "https://reportstream.cdc.gov/prime-router",
@@ -12,10 +12,10 @@
"timestamp": "2023-05-06T06:29:16.000-04:00",
"entry": [
{
- "fullUrl": "MessageHeader/1730739114751857000.7b58d391-0a13-43e5-bf93-2b019746e3d6",
+ "fullUrl": "MessageHeader/1732560543255592000.5f135c2e-06a9-420a-ba40-e65e430321b2",
"resource": {
"resourceType": "MessageHeader",
- "id": "1730739114751857000.7b58d391-0a13-43e5-bf93-2b019746e3d6",
+ "id": "1732560543255592000.5f135c2e-06a9-420a-ba40-e65e430321b2",
"meta": {
"tag": [
{
@@ -129,12 +129,12 @@
],
"name": "NATUS",
"receiver": {
- "reference": "Organization/1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d"
+ "reference": "Organization/1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9"
}
}
],
"sender": {
- "reference": "Organization/1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565"
+ "reference": "Organization/1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c"
},
"source": {
"extension": [
@@ -160,10 +160,10 @@
}
},
{
- "fullUrl": "Organization/1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565",
+ "fullUrl": "Organization/1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c",
"resource": {
"resourceType": "Organization",
- "id": "1730739114750075000.3593d09a-2416-4d98-8b94-e73572042565",
+ "id": "1732560543253710000.36d373d9-88e5-4887-9327-c6c950bece4c",
"identifier": [
{
"extension": [
@@ -195,10 +195,10 @@
}
},
{
- "fullUrl": "Organization/1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d",
+ "fullUrl": "Organization/1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9",
"resource": {
"resourceType": "Organization",
- "id": "1730739114751409000.0359f09c-68a7-456f-b8aa-abf17e915c4d",
+ "id": "1732560543255125000.724b1882-ae9b-4c38-a49c-85cd2fa2edc9",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -237,16 +237,150 @@
}
},
{
- "fullUrl": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250",
+ "fullUrl": "Provenance/1732560543259001000.473ec996-7023-473e-8c6e-4c0bd4a75d9e",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560543259001000.473ec996-7023-473e-8c6e-4c0bd4a75d9e",
+ "recorded": "2023-05-06T05:29:16-05:00",
+ "activity": {
+ "coding": [
+ {
+ "display": "OML^O21^OML_O21"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560543258607000.2394b58e-2157-46a0-b071-3592847f38d8",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Centracare"
+ },
+ {
+ "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": "DNS"
+ }
+ ]
+ },
+ "value": "centracare.com"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560543260155000.01e7456b-28ac-469e-8b69-b7eb0f1b12c9",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560543260155000.01e7456b-28ac-469e-8b69-b7eb0f1b12c9",
+ "recorded": "2024-11-25T13:49:03Z",
+ "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/1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560543259939000.1fbf02d3-7cbe-4dca-a296-9a2220c97c98",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18",
"resource": {
"resourceType": "Patient",
- "id": "1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250",
+ "id": "1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
"extension": [
{
- "url": "PID.8"
+ "url": "PID.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "M"
+ }
+ ]
+ }
},
{
"url": "PID.24",
@@ -305,7 +439,7 @@
},
"value": "11102779",
"assigner": {
- "reference": "Organization/1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921"
+ "reference": "Organization/1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564"
}
}
],
@@ -415,10 +549,149 @@
}
],
"multipleBirthInteger": 2,
+ "contact": [
+ {
+ "extension": [
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "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": "HL70063"
+ }
+ ],
+ "code": "MTH",
+ "display": "Mother"
+ }
+ ],
+ "text": "Mother"
+ }
+ }
+ ],
+ "relationship": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70063"
+ }
+ ],
+ "code": "MTH",
+ "display": "Mother"
+ }
+ ],
+ "text": "Mother"
+ }
+ ],
+ "name": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "SADIE"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "S"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "SMITH",
+ "given": [
+ "SADIE",
+ "S"
+ ]
+ },
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "763"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5555555"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5555555"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "(763)555-5555"
+ }
+ ]
+ }
+ ],
+ "system": "phone"
+ }
+ ],
+ "address": {
+ "extension": [
+ {
+ "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": "555 STATE HIGHWAY 13"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "555 STATE HIGHWAY 13"
+ ],
+ "city": "DEER CREEK",
+ "district": "OTTER TAIL",
+ "state": "MN",
+ "postalCode": "56527-9657",
+ "country": "USA"
+ }
+ }
+ ],
"link": [
{
"other": {
- "reference": "RelatedPerson/1730739114760257000.8359778f-13da-4073-b947-83d222795489"
+ "reference": "RelatedPerson/1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0"
},
"type": "seealso"
}
@@ -426,10 +699,10 @@
}
},
{
- "fullUrl": "Organization/1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921",
+ "fullUrl": "Organization/1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564",
"resource": {
"resourceType": "Organization",
- "id": "1730739114755796000.79ba39f2-7250-4e19-8514-b7f67031d921",
+ "id": "1732560543261153000.da99bd79-38b6-4889-a2e7-8deb4c70c564",
"identifier": [
{
"extension": [
@@ -444,10 +717,10 @@
}
},
{
- "fullUrl": "RelatedPerson/1730739114760257000.8359778f-13da-4073-b947-83d222795489",
+ "fullUrl": "RelatedPerson/1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0",
"resource": {
"resourceType": "RelatedPerson",
- "id": "1730739114760257000.8359778f-13da-4073-b947-83d222795489",
+ "id": "1732560543265351000.06e2e182-70b9-4c60-8d81-9615a5b252d0",
"identifier": [
{
"extension": [
@@ -466,490 +739,619 @@
}
},
{
- "fullUrl": "ServiceRequest/1730739114772815000.f08fe69f-b60c-49b0-be01-539994cacce7",
+ "fullUrl": "Provenance/1732560543270089000.8f2030fa-a4b0-412a-b5d0-984806baf996",
"resource": {
- "resourceType": "ServiceRequest",
- "id": "1730739114772815000.f08fe69f-b60c-49b0-be01-539994cacce7",
- "extension": [
+ "resourceType": "Provenance",
+ "id": "1732560543270089000.8f2030fa-a4b0-412a-b5d0-984806baf996",
+ "target": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode": "NW"
- },
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ }
+ ],
+ "recorded": "2024-11-25T13:49:03Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732560543271838000.5ddafbe2-f480-41ee-aa2b-b03d88fd1bea",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732560543271838000.5ddafbe2-f480-41ee-aa2b-b03d88fd1bea",
+ "extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString": "20230506052913-0500"
- },
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
+ }
+ ],
+ "patient": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "relationship": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
"extension": [
{
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378"
- }
- },
- {
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6"
- }
- },
- {
- "url": "orc-12-ordering-provider",
- "valueReference": {
- "reference": "Practitioner/1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d"
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.3"
}
- ]
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension": [
+ ],
+ "coding": [
{
- "url": "OBR.2",
- "valueIdentifier": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
- }
- ]
- }
- ],
- "value": "421832901"
- }
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70063"
+ }
+ ],
+ "code": "MTH",
+ "display": "Mother"
}
- ]
+ ],
+ "text": "Mother"
}
],
- "identifier": [
+ "name": [
{
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.2"
+ "valueString": "NK1.2"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
+ "url": "XPN.2",
+ "valueString": "SADIE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ "url": "XPN.3",
+ "valueString": "S"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
+ "url": "XPN.7",
+ "valueString": "L"
}
]
}
],
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PLAC"
- }
- ]
- },
- "value": "421832901"
+ "use": "official",
+ "family": "SMITH",
+ "given": [
+ "SADIE",
+ "S"
+ ]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "authoredOn": "2023-05-06T05:29:13-05:00",
- "_authoredOn": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506052913-0500"
- }
- ]
- },
- "requester": {
- "reference": "PractitionerRole/1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80"
- }
- }
- },
- {
- "fullUrl": "Organization/1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3",
- "resource": {
- "resourceType": "Organization",
- "id": "1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3",
- "identifier": [
+ "telecom": [
{
"extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "763"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5555555"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5555555"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "(763)555-5555"
+ }
+ ]
+ },
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
+ "valueString": "NK1.5"
}
],
- "value": "NPI"
+ "system": "phone"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.4"
+ },
+ {
+ "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": "555 STATE HIGHWAY 13"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "555 STATE HIGHWAY 13"
+ ],
+ "city": "DEER CREEK",
+ "district": "OTTER TAIL",
+ "state": "MN",
+ "postalCode": "56527-9657",
+ "country": "USA"
}
]
}
},
{
- "fullUrl": "Practitioner/1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80",
+ "fullUrl": "Observation/1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80",
+ "resourceType": "Observation",
+ "id": "1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XCN.3",
- "valueString": "JANE"
+ "url": "OBX.2",
+ "valueId": "NM"
},
{
- "url": "XCN.10",
- "valueString": "L"
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "g",
+ "display": "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.12"
}
],
- "identifier": [
- {
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
- }
- ],
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730739114763901000.bfb9d0d8-ed2e-4ed7-ad63-da58d8bc35a3"
+ ],
+ "system": "http://loinc.org",
+ "code": "8339-4",
+ "display": "BIRTH WEIGHT MEASURED"
}
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueQuantity": {
+ "value": 1769.859285,
+ "unit": "gram",
+ "system": "UCUM",
+ "code": "g"
+ }
}
},
{
- "fullUrl": "Organization/1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790",
+ "fullUrl": "Observation/1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288",
"resource": {
- "resourceType": "Organization",
- "id": "1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790",
+ "resourceType": "Observation",
+ "id": "1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288",
"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"
- }
- ]
- }
- }
- ]
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XON.10",
- "valueString": "1043269798"
+ "url": "OBX.2",
+ "valueId": "NM"
+ },
+ {
+ "url": "OBX.6",
+ "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": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "wk",
+ "display": "week"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "1043269798"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "PractitionerRole/1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80",
- "resource": {
- "resourceType": "PractitionerRole",
- "id": "1730739114763601000.385766cc-2877-423a-b1c9-dfb84b4d8e80",
- "practitioner": {
- "reference": "Practitioner/1730739114764825000.f4721f7d-ac56-48a8-a3f0-9d144b1f5c80"
+ ],
+ "system": "http://loinc.org",
+ "code": "57714-8",
+ "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE"
+ }
+ ]
},
- "organization": {
- "reference": "Organization/1730739114766157000.64d5716b-8171-4056-9e75-5e7ffbbac790"
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueQuantity": {
+ "value": 32,
+ "unit": "week",
+ "system": "UCUM",
+ "code": "wk"
}
}
},
{
- "fullUrl": "Organization/1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378",
+ "fullUrl": "Observation/1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971",
"resource": {
- "resourceType": "Organization",
- "id": "1730739114769985000.c443f2f7-afca-4e7f-87ec-cc9cfaad7378",
+ "resourceType": "Observation",
+ "id": "1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971",
"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"
- }
- ]
- }
- }
- ]
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XON.10",
- "valueString": "1043269798"
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "1043269798"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
+ ],
+ "system": "http://loinc.org",
+ "code": "57713-0",
+ "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12419-0",
+ "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Organization/1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6",
+ "fullUrl": "Observation/1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168",
"resource": {
- "resourceType": "Organization",
- "id": "1730739114770672000.5569d652-2bf6-43c3-813b-fd28fbc5cad6",
+ "resourceType": "Observation",
+ "id": "1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168",
"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"
- }
- ]
- }
- }
- ]
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XON.10",
- "valueString": "739"
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "MN Public Health Lab"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
}
- ]
- },
- "value": "739"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "Organization/1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc",
- "resource": {
- "resourceType": "Organization",
- "id": "1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc",
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
- }
- ],
- "value": "NPI"
- }
- ]
+ ],
+ "code": "MNDSIB",
+ "display": "DOES THE BABY HAVE A DECEASED SIBLING?"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Practitioner/1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d",
+ "fullUrl": "Observation/1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730739114771807000.8fb0b5b9-4fb0-4fa0-8e59-4dff55660c8d",
+ "resourceType": "Observation",
+ "id": "1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XCN.3",
- "valueString": "JANE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url": "XCN.10",
- "valueString": "L"
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
- }
- ],
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
}
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730739114771078000.2e95644a-8011-468b-b67b-a8bf33eea9bc"
+ ],
+ "code": "MNDEFECT",
+ "display": "DOES THE BABY HAVE BIRTH DEFECTS?"
}
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Observation/1730739114775759000.5c618f5e-25f8-47c3-99be-9fa43387f2fe",
+ "fullUrl": "Observation/1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658",
"resource": {
"resourceType": "Observation",
- "id": "1730739114775759000.5c618f5e-25f8-47c3-99be-9fa43387f2fe",
+ "id": "1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -964,10 +1366,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -981,8 +1380,26 @@
}
],
"status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
+ }
+ ],
+ "code": "MNFAM",
+ "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -993,19 +1410,31 @@
}
]
},
- "valueQuantity": {
- "value": 1769.859285,
- "unit": "gram",
- "system": "UCUM",
- "code": "g"
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730739114778012000.3175dd30-ca5c-4291-853c-caa8a3be50b1",
+ "fullUrl": "Observation/1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce",
"resource": {
"resourceType": "Observation",
- "id": "1730739114778012000.3175dd30-ca5c-4291-853c-caa8a3be50b1",
+ "id": "1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1020,10 +1449,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -1037,8 +1463,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1049,23 +1494,36 @@
}
]
},
- "valueQuantity": {
- "value": 32,
- "unit": "week",
- "system": "UCUM",
- "code": "wk"
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12418-2",
+ "display": "TPN"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730739114781403000.c72e580a-921e-4985-9db4-c512c27ebc78",
+ "fullUrl": "Observation/1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e",
"resource": {
"resourceType": "Observation",
- "id": "1730739114781403000.c72e580a-921e-4985-9db4-c512c27ebc78",
+ "id": "1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
+ "valueString": "2"
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
@@ -1090,8 +1548,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1116,18 +1593,18 @@
}
],
"system": "http://loinc.org",
- "code": "LA12419-0",
- "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ "code": "LA16914-6",
+ "display": "BREAST MILK"
}
]
}
}
},
{
- "fullUrl": "Observation/1730739114783506000.a923c1e7-2c06-4387-9f91-c9ce8d0f2378",
+ "fullUrl": "Observation/1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a",
"resource": {
"resourceType": "Observation",
- "id": "1730739114783506000.a923c1e7-2c06-4387-9f91-c9ce8d0f2378",
+ "id": "1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1156,8 +1633,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "57723-9",
+ "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1175,24 +1671,19 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
"valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
}
],
- "code": "N",
- "display": "No"
+ "code": "0516199364"
}
]
}
}
},
{
- "fullUrl": "Observation/1730739114785823000.18ed61b6-eca0-47bb-a05f-940d36e93a6f",
+ "fullUrl": "Observation/1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead",
"resource": {
"resourceType": "Observation",
- "id": "1730739114785823000.18ed61b6-eca0-47bb-a05f-940d36e93a6f",
+ "id": "1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1207,7 +1698,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1221,8 +1712,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "62328-0",
+ "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1233,7 +1743,43 @@
}
]
},
- "valueCodeableConcept": {
+ "valueString": "Daniel Davis/218-555-1000"
+ }
+ },
+ {
+ "fullUrl": "Observation/1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "ST"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
+ }
+ ]
+ }
+ ],
+ "status": "unknown",
+ "code": {
"coding": [
{
"extension": [
@@ -1243,21 +1789,35 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
+ "valueString": "LN"
}
],
- "code": "N",
- "display": "No"
+ "system": "http://loinc.org",
+ "code": "62324-9",
+ "display": "POST-DISCHARGE PROVIDER NAME"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
}
]
- }
+ },
+ "valueString": "DAVIS, DANIEL, MD"
}
},
{
- "fullUrl": "Observation/1730739114788828000.7b33fda8-a4cd-451c-9cae-26f2a7cc728e",
+ "fullUrl": "Observation/1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8",
"resource": {
"resourceType": "Observation",
- "id": "1730739114788828000.7b33fda8-a4cd-451c-9cae-26f2a7cc728e",
+ "id": "1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1272,7 +1832,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1286,8 +1846,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "62326-4",
+ "display": "POST-DISCHARGE PROVIDER PRACTICE NAME"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1298,72 +1877,117 @@
}
]
},
- "valueCodeableConcept": {
+ "valueString": "Lakeridge Health Revere"
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "type": {
"coding": [
{
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
"valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
}
],
- "code": "N",
- "display": "No"
+ "code": "440500007"
}
]
- }
+ },
+ "collection": {
+ "collectedDateTime": "2023-05-06T05:00:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "additiveCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "Blood spot specimen"
+ }
+ ]
+ }
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "OBR.15.3"
+ }
+ ],
+ "text": "SCT"
+ }
+ ]
}
},
{
- "fullUrl": "Observation/1730739114790984000.0b193cfb-49f2-4d80-a07d-f0e2ee62003a",
+ "fullUrl": "Specimen/1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114790984000.0b193cfb-49f2-4d80-a07d-f0e2ee62003a",
+ "resourceType": "Specimen",
+ "id": "1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
- },
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ }
+ ],
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
},
{
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
}
- ]
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "421832901"
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "type": {
"coding": [
{
"extension": [
@@ -1373,63 +1997,182 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "LN"
+ "valueString": "SCT"
}
],
- "system": "http://loinc.org",
- "code": "LA12418-2",
- "display": "TPN"
+ "system": "http://snomed.info/sct",
+ "code": "440500042",
+ "display": "Blood spatter specimen"
}
]
+ },
+ "collection": {
+ "collectedDateTime": "2023-05-06T06:00:00-05:00",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506060000-0500"
+ }
+ ]
+ }
}
}
},
{
- "fullUrl": "Observation/1730739114793111000.b83aa2d3-8969-4069-969f-49217c3aca8d",
+ "fullUrl": "ServiceRequest/1732560543311645000.b57e1bdc-262e-422d-a16f-9f77660cf315",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114793111000.b83aa2d3-8969-4069-969f-49217c3aca8d",
+ "resourceType": "ServiceRequest",
+ "id": "1732560543311645000.b57e1bdc-262e-422d-a16f-9f77660cf315",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "NW"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230506052913-0500"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac"
+ }
},
{
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4"
+ }
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6"
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "421832901"
+ }
+ },
+ {
+ "url": "OBR.15.1",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500007"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.2",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "Blood spot specimen"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.3",
+ "valueString": "SCT"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2023-05-06T05:00:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
}
- ]
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "421832901"
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1443,289 +2186,466 @@
}
],
"system": "http://loinc.org",
- "code": "LA16914-6",
- "display": "BREAST MILK"
+ "code": "54089-8",
+ "display": "Newborn screening panel American Health Information Community (AHIC)"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560543268733000.fbcca191-5c13-4199-a3ee-796cb46b8b18"
+ },
+ "authoredOn": "2023-05-06T05:29:13-05:00",
+ "_authoredOn": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506052913-0500"
+ }
+ ]
+ },
+ "requester": {
+ "reference": "PractitionerRole/1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df"
+ },
+ "supportingInfo": [
+ {
+ "reference": "Observation/1732560543274855000.4d949d81-fa30-46bc-9cbc-78ce6ec7615a"
+ },
+ {
+ "reference": "Observation/1732560543277556000.688615ca-95a9-4338-b3b6-28ed0ce9a288"
+ },
+ {
+ "reference": "Observation/1732560543279677000.617ea6d5-9be1-4a98-bd30-8a28bc15c971"
+ },
+ {
+ "reference": "Observation/1732560543281793000.f04d11d4-e337-4e47-9a5e-ca8483f0f168"
+ },
+ {
+ "reference": "Observation/1732560543283827000.4b0a99f4-cd5b-477f-af08-058d47395f06"
+ },
+ {
+ "reference": "Observation/1732560543286362000.ef088072-bef6-4cfa-9cf9-4940af1b5658"
+ },
+ {
+ "reference": "Observation/1732560543288331000.ae179a9b-f56c-4d11-b149-293d2887ebce"
+ },
+ {
+ "reference": "Observation/1732560543290243000.d411deba-f6a1-45f1-a505-3713059b4a6e"
+ },
+ {
+ "reference": "Observation/1732560543292147000.2429838a-1b4f-490b-9ef3-8668bdb3444a"
+ },
+ {
+ "reference": "Observation/1732560543293778000.c8b6eaf4-48db-4d31-9dc7-4662b2dd5ead"
+ },
+ {
+ "reference": "Observation/1732560543295369000.775c794b-2f24-42b0-b890-e1e9e9f4a522"
+ },
+ {
+ "reference": "Observation/1732560543297140000.e55bde3c-775c-4635-a191-4030b16bb2c8"
+ }
+ ],
+ "specimen": [
+ {
+ "reference": "Specimen/1732560543303231000.2d9cfa3b-d077-47dc-b9e9-c6dbaf6d7e14"
+ },
+ {
+ "reference": "Specimen/1732560543300806000.406c938b-63f5-4b24-87a2-fe6df4db3c2e"
+ }
+ ]
}
},
{
- "fullUrl": "Observation/1730739114795312000.58c7b5f2-2fdb-4f97-9723-046eea56a341",
+ "fullUrl": "Organization/1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114795312000.58c7b5f2-2fdb-4f97-9723-046eea56a341",
- "extension": [
+ "resourceType": "Organization",
+ "id": "1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "NPI"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6",
+ "extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XCN.10",
+ "valueString": "L"
}
]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560543304112000.dc3c498d-a046-4f19-85d8-523a30bf309f"
}
- ]
- },
- "valueCodeableConcept": {
- "coding": [
- {
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
+ "valueCoding": {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
}
],
- "code": "0516199364"
+ "code": "L"
}
- ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "1043269798"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560543303804000.31426fcc-91fd-45d7-bd6e-291e762530df",
+ "practitioner": {
+ "reference": "Practitioner/1732560543304915000.2aea385b-1e59-400f-8533-ec48845b37d6"
+ },
+ "organization": {
+ "reference": "Organization/1732560543305808000.f46f933c-1599-4a9d-9e1b-8ba3fd09aa33"
}
}
},
{
- "fullUrl": "Observation/1730739114797071000.46ad5875-1800-4de1-b266-d690820909eb",
+ "fullUrl": "Organization/1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114797071000.46ad5875-1800-4de1-b266-d690820909eb",
+ "resourceType": "Organization",
+ "id": "1732560543307780000.31100ae8-a7cd-4d48-9c32-54ba4cf017ac",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "1043269798"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "Daniel Davis/218-555-1000"
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730739114798696000.6a08e93e-7012-4668-920f-6dd0b6086fba",
+ "fullUrl": "Organization/1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114798696000.6a08e93e-7012-4668-920f-6dd0b6086fba",
+ "resourceType": "Organization",
+ "id": "1732560543308452000.98aae0fd-f400-4fa4-81b1-edbf5c98b5d4",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "739"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "DAVIS, DANIEL, MD"
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MN Public Health Lab"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "739"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730739114800274000.f123aecc-501c-43eb-a4a1-5a4489e47952",
+ "fullUrl": "Organization/1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42",
"resource": {
- "resourceType": "Observation",
- "id": "1730739114800274000.f123aecc-501c-43eb-a4a1-5a4489e47952",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
- },
+ "resourceType": "Organization",
+ "id": "1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
- ]
+ ],
+ "value": "NPI"
}
- ],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739114762168000.c3aba8e9-f298-443e-b3a1-1ee5a8f68250"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "Lakeridge Health Revere"
+ ]
}
},
{
- "fullUrl": "Specimen/1730739114807923000.8f9e2bd9-31bf-4899-ac32-ba62d0b8a7c6",
+ "fullUrl": "Practitioner/1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6",
"resource": {
- "resourceType": "Specimen",
- "id": "1730739114807923000.8f9e2bd9-31bf-4899-ac32-ba62d0b8a7c6",
+ "resourceType": "Practitioner",
+ "id": "1732560543309446000.c33a9be2-d78d-4d54-a272-6ecc44333bf6",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString": "SPM"
- }
- ],
- "identifier": [
- {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
- },
+ "valueString": "NPI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString": "ISO"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString": "SPM.2.1"
+ "url": "XCN.10",
+ "valueString": "L"
}
- ],
+ ]
+ }
+ ],
+ "identifier": [
+ {
"type": {
"coding": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PGN"
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
}
]
},
- "value": "421832901"
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560543308800000.ad53ba99-d6bd-47f8-9a4c-f15fb6c1cd42"
+ }
}
],
- "type": {
- "coding": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "SCT"
- }
- ],
- "system": "http://snomed.info/sct",
- "code": "440500007",
- "display": "Blood spot specimen"
- }
- ]
- },
- "collection": {
- "collectedDateTime": "2023-05-06T06:00:00-05:00",
- "_collectedDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506060000-0500"
- }
+ "name": [
+ {
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
]
}
- }
+ ]
}
}
]
diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7 b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7
index 9bfab324e91..9966c871892 100644
--- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7
+++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oml_20240319-001.hl7
@@ -15,4 +15,4 @@ OBX|9|CWE|57723-9^UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE^LN|1|0516199364||||||
OBX|10|ST|62328-0^DISCHARGE PROVIDER PRACTICE PHONE NUMBER^LN|1|Daniel Davis/218-555-1000||||||O|||20230506050000-0500|||||||||||||||QST|AOE
OBX|11|ST|62324-9^POST-DISCHARGE PROVIDER NAME^LN|1|DAVIS, DANIEL, MD||||||O|||20230506050000-0500|||||||||||||||QST|AOE
OBX|12|ST|62326-4^POST-DISCHARGE PROVIDER PRACTICE NAME^LN|1|Lakeridge Health Revere||||||O|||20230506050000-0500|||||||||||||||QST|AOE
-SPM|1|421832901&EPIC&1.2.840.114350.1.13.145.2.7.2.695071&ISO||440500007^Blood spot specimen^SCT|||||||||||||20230506060000-0500
\ No newline at end of file
+SPM|1|421832901&EPIC&1.2.840.114350.1.13.145.2.7.2.695071&ISO||440500042^Blood spatter specimen^SCT|||||||||||||20230506060000-0500
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir
index c8349b24c2b..ef3cb6666c3 100644
--- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001-with-enrichment.fhir
@@ -1,8 +1,8 @@
{
"resourceType": "Bundle",
- "id": "1730739044768853000.b4938369-ac66-4abc-93a6-c1a8db4da033",
+ "id": "1732560511670724000.f32c77cf-ad23-43bc-a013-3fea9d443cd3",
"meta": {
- "lastUpdated": "2024-11-04T11:50:44.779-05:00"
+ "lastUpdated": "2024-11-25T13:48:31.670-05:00"
},
"identifier": {
"system": "https://reportstream.cdc.gov/prime-router",
@@ -12,10 +12,10 @@
"timestamp": "2023-05-06T06:29:16.000-04:00",
"entry": [
{
- "fullUrl": "MessageHeader/1730739044854563000.a02af09b-b5fc-460a-879d-d38e881ba202",
+ "fullUrl": "MessageHeader/1732560511672681000.d74fc9a5-4839-469c-beaa-071f45976033",
"resource": {
"resourceType": "MessageHeader",
- "id": "1730739044854563000.a02af09b-b5fc-460a-879d-d38e881ba202",
+ "id": "1732560511672681000.d74fc9a5-4839-469c-beaa-071f45976033",
"meta": {
"tag": [
{
@@ -129,12 +129,12 @@
],
"name": "NATUS",
"receiver": {
- "reference": "Organization/1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6"
+ "reference": "Organization/1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6"
}
}
],
"sender": {
- "reference": "Organization/1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e"
+ "reference": "Organization/1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92"
},
"source": {
"extension": [
@@ -162,10 +162,10 @@
}
},
{
- "fullUrl": "Organization/1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e",
+ "fullUrl": "Organization/1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92",
"resource": {
"resourceType": "Organization",
- "id": "1730739044832105000.94f279f5-2ad0-4b90-b5ad-80f818bd000e",
+ "id": "1732560511671630000.031ef0d6-4818-43f3-b16a-b1ee4acf5e92",
"identifier": [
{
"extension": [
@@ -197,10 +197,10 @@
}
},
{
- "fullUrl": "Organization/1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6",
+ "fullUrl": "Organization/1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6",
"resource": {
"resourceType": "Organization",
- "id": "1730739044853311000.a7c7630d-0fe8-4c46-aaf7-e3d8731f18b6",
+ "id": "1732560511672306000.d58e54ce-4c82-462c-b681-4496c250cca6",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -239,16 +239,150 @@
}
},
{
- "fullUrl": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f",
+ "fullUrl": "Provenance/1732560511675303000.2621144c-963e-4ab1-955f-16d7475c8ad3",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560511675303000.2621144c-963e-4ab1-955f-16d7475c8ad3",
+ "recorded": "2023-05-06T05:29:16-05:00",
+ "activity": {
+ "coding": [
+ {
+ "display": "ORM^O01^ORM_O01"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560511675026000.eab0c53f-3658-4b9e-b58b-b587acf35f89",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Centracare"
+ },
+ {
+ "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": "DNS"
+ }
+ ]
+ },
+ "value": "centracare.com"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560511677094000.f0412861-717d-4c48-96e7-2fe34bb54c8d",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560511677094000.f0412861-717d-4c48-96e7-2fe34bb54c8d",
+ "recorded": "2024-11-25T13:48:31Z",
+ "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/1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560511676926000.0b711c54-8b8d-4aea-8c98-68f92c12a44e",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a",
"resource": {
"resourceType": "Patient",
- "id": "1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f",
+ "id": "1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
"extension": [
{
- "url": "PID.8"
+ "url": "PID.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "M"
+ }
+ ]
+ }
},
{
"url": "PID.24",
@@ -307,7 +441,7 @@
},
"value": "11102779",
"assigner": {
- "reference": "Organization/1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374"
+ "reference": "Organization/1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e"
}
}
],
@@ -420,7 +554,7 @@
"link": [
{
"other": {
- "reference": "RelatedPerson/1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5"
+ "reference": "RelatedPerson/1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e"
},
"type": "seealso"
}
@@ -428,10 +562,10 @@
}
},
{
- "fullUrl": "Organization/1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374",
+ "fullUrl": "Organization/1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e",
"resource": {
"resourceType": "Organization",
- "id": "1730739045436383000.143cca78-1d3b-49b5-855d-0b68ae8fd374",
+ "id": "1732560511677929000.bc510668-0a60-42a3-88ab-a8c3328dbc3e",
"identifier": [
{
"extension": [
@@ -446,10 +580,10 @@
}
},
{
- "fullUrl": "RelatedPerson/1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5",
+ "fullUrl": "RelatedPerson/1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e",
"resource": {
"resourceType": "RelatedPerson",
- "id": "1730739045452628000.7cc7bd01-5335-4089-bb4a-452daa11cff5",
+ "id": "1732560511680963000.2918c42d-2608-4940-b18e-d3afc197779e",
"identifier": [
{
"extension": [
@@ -468,490 +602,470 @@
}
},
{
- "fullUrl": "ServiceRequest/1730739045486998000.12434c42-eb33-4391-95ed-206405199d4d",
+ "fullUrl": "Provenance/1732560511683387000.e6eb7827-be89-4bd4-afdc-0cadfe3c8380",
"resource": {
- "resourceType": "ServiceRequest",
- "id": "1730739045486998000.12434c42-eb33-4391-95ed-206405199d4d",
+ "resourceType": "Provenance",
+ "id": "1732560511683387000.e6eb7827-be89-4bd4-afdc-0cadfe3c8380",
+ "target": [
+ {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ }
+ ],
+ "recorded": "2024-11-25T13:48:31Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Observation/1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode": "NW"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString": "20230506052913-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75"
- }
- },
- {
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063"
- }
+ "url": "OBX.2",
+ "valueId": "NM"
},
{
- "url": "orc-12-ordering-provider",
- "valueReference": {
- "reference": "Practitioner/1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606"
- }
- }
- ]
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension": [
- {
- "url": "OBR.2",
- "valueIdentifier": {
- "extension": [
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
}
- ]
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "g",
+ "display": "gram"
}
- ],
- "value": "421832901"
+ ]
}
- }
- ]
- }
- ],
- "identifier": [
- {
- "extension": [
+ },
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.2"
+ "url": "OBX.29",
+ "valueId": "QST"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
- }
- ]
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PLAC"
- }
- ]
- },
- "value": "421832901"
+ ]
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "8339-4",
+ "display": "BIRTH WEIGHT MEASURED"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
},
- "authoredOn": "2023-05-06T05:29:13-05:00",
- "_authoredOn": {
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506052913-0500"
+ "valueString": "20230506050000-0500"
}
]
},
- "requester": {
- "reference": "PractitionerRole/1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c"
+ "valueQuantity": {
+ "value": 1769.859285,
+ "unit": "gram",
+ "system": "UCUM",
+ "code": "g"
}
}
},
{
- "fullUrl": "Organization/1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed",
- "resource": {
- "resourceType": "Organization",
- "id": "1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed",
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
- }
- ],
- "value": "NPI"
- }
- ]
- }
- },
- {
- "fullUrl": "Practitioner/1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be",
+ "fullUrl": "Observation/1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be",
+ "resourceType": "Observation",
+ "id": "1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension": [
- {
- "url": "XCN.3",
- "valueString": "JANE"
- },
- {
- "url": "XCN.10",
- "valueString": "L"
- }
- ]
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.12"
- }
- ],
- "identifier": [
- {
- "type": {
- "coding": [
- {
- "extension": [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "NM"
+ },
+ {
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "wk",
+ "display": "week"
}
- ],
- "code": "NPI"
- }
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730739045476392000.19543a23-10bc-47cb-9da4-707a24b3a6ed"
- }
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
- }
- },
- {
- "fullUrl": "Organization/1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d",
- "resource": {
- "resourceType": "Organization",
- "id": "1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d",
- "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"
- }
- ]
- }
+ ]
}
- ]
- }
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
+ },
{
- "url": "XON.10",
- "valueString": "1043269798"
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "1043269798"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "PractitionerRole/1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c",
- "resource": {
- "resourceType": "PractitionerRole",
- "id": "1730739045475925000.e4ec22c3-0315-4b18-a42c-fe9e88296e4c",
- "practitioner": {
- "reference": "Practitioner/1730739045477799000.3e4230fe-22a6-4972-8a1e-a8be2c2234be"
+ ],
+ "system": "http://loinc.org",
+ "code": "57714-8",
+ "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE"
+ }
+ ]
},
- "organization": {
- "reference": "Organization/1730739045479084000.cda1b269-0a63-4666-a1bd-d140ad91e24d"
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueQuantity": {
+ "value": 32,
+ "unit": "week",
+ "system": "UCUM",
+ "code": "wk"
}
}
},
{
- "fullUrl": "Organization/1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75",
+ "fullUrl": "Observation/1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5",
"resource": {
- "resourceType": "Organization",
- "id": "1730739045482221000.12655f3b-3a76-4149-92c7-eab672b22b75",
+ "resourceType": "Observation",
+ "id": "1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5",
"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"
- }
- ]
- }
- }
- ]
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
- {
- "url": "XON.10",
- "valueString": "1043269798"
- }
- ]
- }
- ],
- "identifier": [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
{
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
- }
- ]
- },
- "value": "1043269798"
+ ]
}
],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "Organization/1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063",
- "resource": {
- "resourceType": "Organization",
- "id": "1730739045483655000.fbf465a4-777d-44dd-84de-ab216725b063",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding": {
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "XON.2"
- }
- ]
- }
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
+ ],
+ "system": "http://loinc.org",
+ "code": "57713-0",
+ "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION"
}
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
- {
- "url": "XON.10",
- "valueString": "739"
- }
- ]
- }
- ],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "MN Public Health Lab"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "739"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12419-0",
+ "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Organization/1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a",
+ "fullUrl": "Observation/1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390",
"resource": {
- "resourceType": "Organization",
- "id": "1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a",
- "identifier": [
+ "resourceType": "Observation",
+ "id": "1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
{
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "value": "NPI"
+ ]
}
- ]
+ ],
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
+ }
+ ],
+ "code": "MNDSIB",
+ "display": "DOES THE BABY HAVE A DECEASED SIBLING?"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Practitioner/1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606",
+ "fullUrl": "Observation/1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730739045485318000.50da42d9-9ed8-49ca-8ce1-eb63a81a9606",
+ "resourceType": "Observation",
+ "id": "1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XCN.3",
- "valueString": "JANE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url": "XCN.10",
- "valueString": "L"
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
- }
- ],
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
}
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730739045484200000.76b8dad6-c380-4ecd-a397-d56cd876c36a"
+ ],
+ "code": "MNDEFECT",
+ "display": "DOES THE BABY HAVE BIRTH DEFECTS?"
}
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Observation/1730739045689805000.da48cbda-80e8-48e3-8374-38873b0f7770",
+ "fullUrl": "Observation/1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b",
"resource": {
"resourceType": "Observation",
- "id": "1730739045689805000.da48cbda-80e8-48e3-8374-38873b0f7770",
+ "id": "1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -966,10 +1080,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -983,8 +1094,26 @@
}
],
"status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
+ }
+ ],
+ "code": "MNFAM",
+ "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -995,19 +1124,31 @@
}
]
},
- "valueQuantity": {
- "value": 1769.859285,
- "unit": "gram",
- "system": "UCUM",
- "code": "g"
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730739045692808000.abe30e64-14d3-41cb-a5c3-abe28db35af5",
+ "fullUrl": "Observation/1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8",
"resource": {
"resourceType": "Observation",
- "id": "1730739045692808000.abe30e64-14d3-41cb-a5c3-abe28db35af5",
+ "id": "1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1022,10 +1163,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -1039,8 +1177,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1051,23 +1208,36 @@
}
]
},
- "valueQuantity": {
- "value": 32,
- "unit": "week",
- "system": "UCUM",
- "code": "wk"
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12418-2",
+ "display": "TPN"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730739045695721000.ca344441-ce4c-47d3-b018-d9b7f6a06e41",
+ "fullUrl": "Observation/1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8",
"resource": {
"resourceType": "Observation",
- "id": "1730739045695721000.ca344441-ce4c-47d3-b018-d9b7f6a06e41",
+ "id": "1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
+ "valueString": "2"
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
@@ -1092,8 +1262,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1118,18 +1307,18 @@
}
],
"system": "http://loinc.org",
- "code": "LA12419-0",
- "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ "code": "LA16914-6",
+ "display": "BREAST MILK"
}
]
}
}
},
{
- "fullUrl": "Observation/1730739045698125000.69ecfe90-4d71-4eba-8639-7cd2b5ca865c",
+ "fullUrl": "Observation/1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8",
"resource": {
"resourceType": "Observation",
- "id": "1730739045698125000.69ecfe90-4d71-4eba-8639-7cd2b5ca865c",
+ "id": "1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1158,8 +1347,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "57723-9",
+ "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1177,24 +1385,19 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
"valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
}
],
- "code": "N",
- "display": "No"
+ "code": "0516199364"
}
]
}
}
},
{
- "fullUrl": "Observation/1730739045700350000.59a61811-fb31-472b-b7e6-f524364d158b",
+ "fullUrl": "Observation/1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1",
"resource": {
"resourceType": "Observation",
- "id": "1730739045700350000.59a61811-fb31-472b-b7e6-f524364d158b",
+ "id": "1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1209,7 +1412,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1223,19 +1426,7 @@
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1245,21 +1436,35 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
+ "valueString": "LN"
}
],
- "code": "N",
- "display": "No"
+ "system": "http://loinc.org",
+ "code": "62328-0",
+ "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "Daniel Davis/218-555-1000"
}
},
{
- "fullUrl": "Observation/1730739045703506000.1e33d28c-8a2b-43ea-aca4-4476031b9f67",
+ "fullUrl": "Observation/1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d",
"resource": {
"resourceType": "Observation",
- "id": "1730739045703506000.1e33d28c-8a2b-43ea-aca4-4476031b9f67",
+ "id": "1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1274,7 +1479,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1288,19 +1493,7 @@
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1310,21 +1503,35 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
+ "valueString": "LN"
}
],
- "code": "N",
- "display": "No"
+ "system": "http://loinc.org",
+ "code": "62324-9",
+ "display": "POST-DISCHARGE PROVIDER NAME"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "DAVIS, DANIEL, MD"
}
},
{
- "fullUrl": "Observation/1730739045706083000.ac447d16-c594-4fac-8571-432fc8f7ca2e",
+ "fullUrl": "Observation/1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03",
"resource": {
"resourceType": "Observation",
- "id": "1730739045706083000.ac447d16-c594-4fac-8571-432fc8f7ca2e",
+ "id": "1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1339,7 +1546,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1349,23 +1556,198 @@
"url": "OBX.11",
"valueString": "O"
}
- ]
+ ]
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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",
+ "code": "62326-4",
+ "display": "POST-DISCHARGE PROVIDER PRACTICE NAME"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "Lakeridge Health Revere"
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1732560511725681000.1da16c6a-3fde-4b6b-b928-56d600c07c18",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732560511725681000.1da16c6a-3fde-4b6b-b928-56d600c07c18",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "NW"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230506052913-0500"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b"
+ }
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827"
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "421832901"
+ }
+ },
+ {
+ "url": "OBR.15.1",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500007"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.2",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "Blood spot specimen"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.3",
+ "valueString": "SCT"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2023-05-06T05:00:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "421832901"
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1379,292 +1761,456 @@
}
],
"system": "http://loinc.org",
- "code": "LA12418-2",
- "display": "TPN"
+ "code": "54089-8",
+ "display": "Newborn screening panel American Health Information Community (AHIC)"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560511682406000.b2715b85-dc15-42f7-b436-2342f935218a"
+ },
+ "authoredOn": "2023-05-06T05:29:13-05:00",
+ "_authoredOn": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506052913-0500"
+ }
+ ]
+ },
+ "requester": {
+ "reference": "PractitionerRole/1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159"
+ },
+ "supportingInfo": [
+ {
+ "reference": "Observation/1732560511685409000.68ec79c6-ca91-4584-a18c-edf96c10ea81"
+ },
+ {
+ "reference": "Observation/1732560511687601000.49535bc8-4b68-4f91-b9b7-c8750e2d8f7d"
+ },
+ {
+ "reference": "Observation/1732560511689759000.2564e813-a596-4109-80a4-ba7dc42d24e5"
+ },
+ {
+ "reference": "Observation/1732560511692143000.5ba6549d-7b30-40a2-8259-07901724e390"
+ },
+ {
+ "reference": "Observation/1732560511694464000.6c92cfb0-0578-45f0-b0be-390fb453fa53"
+ },
+ {
+ "reference": "Observation/1732560511696929000.06885dba-e795-4a03-8be4-76f255868d9b"
+ },
+ {
+ "reference": "Observation/1732560511700247000.83d485ad-8bf1-47d0-9a6c-bf7e83f78fb8"
+ },
+ {
+ "reference": "Observation/1732560511702948000.7d0cd160-1c90-40a5-9b5c-8e2c2f0a8bf8"
+ },
+ {
+ "reference": "Observation/1732560511705489000.b9fb605f-b56d-4789-9f59-58b4265df4f8"
+ },
+ {
+ "reference": "Observation/1732560511707736000.8cd8206b-364c-4b72-8b92-552921b30ec1"
+ },
+ {
+ "reference": "Observation/1732560511709616000.18975279-2dc6-48cb-b073-8dc2c123262d"
+ },
+ {
+ "reference": "Observation/1732560511713056000.b8cd9b90-6da3-4d22-ab0d-c8847d7d6b03"
+ }
+ ]
}
},
{
- "fullUrl": "Observation/1730739045708800000.071d99fc-d52a-49eb-8832-5ea9a8783a51",
+ "fullUrl": "Organization/1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b",
"resource": {
- "resourceType": "Observation",
- "id": "1730739045708800000.071d99fc-d52a-49eb-8832-5ea9a8783a51",
- "extension": [
+ "resourceType": "Organization",
+ "id": "1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "2"
- },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "NPI"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24",
+ "extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XCN.10",
+ "valueString": "L"
}
]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560511717357000.c2922d7b-cba8-496a-a7ca-cf304d64c11b"
}
- ]
- },
- "valueCodeableConcept": {
- "coding": [
- {
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
+ "valueCoding": {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "LN"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
}
],
- "system": "http://loinc.org",
- "code": "LA16914-6",
- "display": "BREAST MILK"
+ "code": "L"
}
- ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "1043269798"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560511717059000.fc4d1491-112d-49e6-a7af-b04c870de159",
+ "practitioner": {
+ "reference": "Practitioner/1732560511718325000.97a34171-7c25-4846-bc20-2c4e5232ca24"
+ },
+ "organization": {
+ "reference": "Organization/1732560511719345000.3958aac8-8a3a-4112-ac2f-7bf06f9b1671"
}
}
},
{
- "fullUrl": "Observation/1730739045711124000.6a42730c-2d26-4f7c-a363-265ddf0f78ea",
+ "fullUrl": "Organization/1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b",
"resource": {
- "resourceType": "Observation",
- "id": "1730739045711124000.6a42730c-2d26-4f7c-a363-265ddf0f78ea",
+ "resourceType": "Organization",
+ "id": "1732560511721539000.4c3275ea-1d6d-4358-b609-d98f4cd5b54b",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "1043269798"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
- "coding": [
- {
- "extension": [
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "coding"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
}
- ],
- "code": "0516199364"
- }
- ]
- }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730739045712805000.c6ba70d3-dd36-4033-85cb-e41197c6a2ca",
+ "fullUrl": "Organization/1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64",
"resource": {
- "resourceType": "Observation",
- "id": "1730739045712805000.c6ba70d3-dd36-4033-85cb-e41197c6a2ca",
+ "resourceType": "Organization",
+ "id": "1732560511722310000.3a3a3b2d-2eb1-4295-9b6a-b5dadea32a64",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "739"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "Daniel Davis/218-555-1000"
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MN Public Health Lab"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "739"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730739045714474000.1778e192-0a14-4b24-9fdd-56feeceab7c7",
+ "fullUrl": "Organization/1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2",
"resource": {
- "resourceType": "Observation",
- "id": "1730739045714474000.1778e192-0a14-4b24-9fdd-56feeceab7c7",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
- },
+ "resourceType": "Organization",
+ "id": "1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
- ]
+ ],
+ "value": "NPI"
}
- ],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "DAVIS, DANIEL, MD"
+ ]
}
},
{
- "fullUrl": "Observation/1730739045716087000.f8dae56a-14fe-4a40-a229-4978b250eb4f",
+ "fullUrl": "Practitioner/1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827",
"resource": {
- "resourceType": "Observation",
- "id": "1730739045716087000.f8dae56a-14fe-4a40-a229-4978b250eb4f",
+ "resourceType": "Practitioner",
+ "id": "1732560511723434000.d581902c-b16e-44d2-b43b-b6d3b0a48827",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XCN.10",
+ "valueString": "L"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730739045468027000.a6aaa802-b1a3-4d6e-a44f-16db0b64663f"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560511722669000.82aa091b-f7aa-438a-bba9-a3d888fd10a2"
}
- ]
- },
- "valueString": "Lakeridge Health Revere"
- }
- },
- {
- "fullUrl": "Specimen/1730739045723761000.769edddd-9a44-4394-af6d-bb7f2e6478e9",
- "resource": {
- "resourceType": "Specimen",
- "id": "1730739045723761000.769edddd-9a44-4394-af6d-bb7f2e6478e9",
- "extension": [
+ }
+ ],
+ "name": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString": "SPM"
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
+ ]
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir
index 03b6e85a36e..3392f6faf3f 100644
--- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_orm_20230809-001.fhir
@@ -1,8 +1,8 @@
{
"resourceType": "Bundle",
- "id": "1730738730597348000.b5a72365-7902-4cf3-a770-aae6df5dd1f9",
+ "id": "1732560463137196000.517d26a7-e9ca-4058-93f7-8779688fd074",
"meta": {
- "lastUpdated": "2024-11-04T11:45:30.608-05:00"
+ "lastUpdated": "2024-11-25T13:47:43.148-05:00"
},
"identifier": {
"system": "https://reportstream.cdc.gov/prime-router",
@@ -12,10 +12,10 @@
"timestamp": "2023-05-06T06:29:16.000-04:00",
"entry": [
{
- "fullUrl": "MessageHeader/1730738730688276000.3886156a-8ef5-419f-96ba-42fc39d41be9",
+ "fullUrl": "MessageHeader/1732560463224593000.c15da8d5-9824-4a8e-8e1b-b8da20182ebc",
"resource": {
"resourceType": "MessageHeader",
- "id": "1730738730688276000.3886156a-8ef5-419f-96ba-42fc39d41be9",
+ "id": "1732560463224593000.c15da8d5-9824-4a8e-8e1b-b8da20182ebc",
"meta": {
"tag": [
{
@@ -129,12 +129,12 @@
],
"name": "NATUS",
"receiver": {
- "reference": "Organization/1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15"
+ "reference": "Organization/1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896"
}
}
],
"sender": {
- "reference": "Organization/1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa"
+ "reference": "Organization/1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c"
},
"source": {
"extension": [
@@ -160,10 +160,10 @@
}
},
{
- "fullUrl": "Organization/1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa",
+ "fullUrl": "Organization/1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c",
"resource": {
"resourceType": "Organization",
- "id": "1730738730665862000.6238b114-270b-4f77-891a-39ac66cf8caa",
+ "id": "1732560463198995000.4ddc94e7-af16-42b1-9c77-566ef9c63d0c",
"identifier": [
{
"extension": [
@@ -195,10 +195,10 @@
}
},
{
- "fullUrl": "Organization/1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15",
+ "fullUrl": "Organization/1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896",
"resource": {
"resourceType": "Organization",
- "id": "1730738730687016000.cca4c775-6507-4106-8e64-1d3c3ba8ec15",
+ "id": "1732560463223416000.eb2d89b3-de83-4df1-8fb7-187d8a77b896",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
@@ -237,16 +237,150 @@
}
},
{
- "fullUrl": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873",
+ "fullUrl": "Provenance/1732560463817806000.c7fb5a8a-64f1-4a64-9047-e73b69a802a3",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560463817806000.c7fb5a8a-64f1-4a64-9047-e73b69a802a3",
+ "recorded": "2023-05-06T05:29:16-05:00",
+ "activity": {
+ "coding": [
+ {
+ "display": "ORM^O01^ORM_O01"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560463816972000.f19dff49-46b3-4fc3-9c5a-5ca3bd5fe13d",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Centracare"
+ },
+ {
+ "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": "DNS"
+ }
+ ]
+ },
+ "value": "centracare.com"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560463831364000.e4abf8f1-13de-4848-9210-1040538f6209",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560463831364000.e4abf8f1-13de-4848-9210-1040538f6209",
+ "recorded": "2024-11-25T13:47:43Z",
+ "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/1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560463830884000.0a87d5ea-d3da-4e51-8c33-149b9a248d42",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c",
"resource": {
"resourceType": "Patient",
- "id": "1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873",
+ "id": "1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
"extension": [
{
- "url": "PID.8"
+ "url": "PID.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "M"
+ }
+ ]
+ }
},
{
"url": "PID.24",
@@ -305,7 +439,7 @@
},
"value": "11102779",
"assigner": {
- "reference": "Organization/1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac"
+ "reference": "Organization/1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88"
}
}
],
@@ -418,7 +552,7 @@
"link": [
{
"other": {
- "reference": "RelatedPerson/1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38"
+ "reference": "RelatedPerson/1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c"
},
"type": "seealso"
}
@@ -426,10 +560,10 @@
}
},
{
- "fullUrl": "Organization/1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac",
+ "fullUrl": "Organization/1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88",
"resource": {
"resourceType": "Organization",
- "id": "1730738731258707000.cf31cadb-f202-4bde-aa3e-58aeeb2b27ac",
+ "id": "1732560463839308000.47e0c50d-64f5-42dd-8f8e-b18d52dfbc88",
"identifier": [
{
"extension": [
@@ -444,10 +578,10 @@
}
},
{
- "fullUrl": "RelatedPerson/1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38",
+ "fullUrl": "RelatedPerson/1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c",
"resource": {
"resourceType": "RelatedPerson",
- "id": "1730738731274605000.5d0a2328-c431-4aab-9064-26de004d7d38",
+ "id": "1732560463848989000.e6c3e63c-9219-430b-9587-4dfa5fef089c",
"identifier": [
{
"extension": [
@@ -466,490 +600,470 @@
}
},
{
- "fullUrl": "ServiceRequest/1730738731313444000.eb728ed1-85c7-41f6-8ac5-b9f9da838787",
+ "fullUrl": "Provenance/1732560463865026000.14ec571c-6d04-425e-9125-a3c966e1d57a",
"resource": {
- "resourceType": "ServiceRequest",
- "id": "1730738731313444000.eb728ed1-85c7-41f6-8ac5-b9f9da838787",
+ "resourceType": "Provenance",
+ "id": "1732560463865026000.14ec571c-6d04-425e-9125-a3c966e1d57a",
+ "target": [
+ {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ }
+ ],
+ "recorded": "2024-11-25T13:47:43Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Observation/1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode": "NW"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString": "20230506052913-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f"
- }
- },
- {
- "url": "orc-21-ordering-facility-name",
- "valueReference": {
- "reference": "Organization/1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5"
- }
+ "url": "OBX.2",
+ "valueId": "NM"
},
{
- "url": "orc-12-ordering-provider",
- "valueReference": {
- "reference": "Practitioner/1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6"
- }
- }
- ]
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension": [
- {
- "url": "OBR.2",
- "valueIdentifier": {
- "extension": [
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
}
- ]
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "g",
+ "display": "gram"
}
- ],
- "value": "421832901"
+ ]
}
- }
- ]
- }
- ],
- "identifier": [
- {
- "extension": [
+ },
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.2"
+ "url": "OBX.29",
+ "valueId": "QST"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "EPIC"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode": "ISO"
- }
- ]
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PLAC"
- }
- ]
- },
- "value": "421832901"
+ ]
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "8339-4",
+ "display": "BIRTH WEIGHT MEASURED"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
},
- "authoredOn": "2023-05-06T05:29:13-05:00",
- "_authoredOn": {
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506052913-0500"
+ "valueString": "20230506050000-0500"
}
]
},
- "requester": {
- "reference": "PractitionerRole/1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb"
+ "valueQuantity": {
+ "value": 1769.859285,
+ "unit": "gram",
+ "system": "UCUM",
+ "code": "g"
}
}
},
{
- "fullUrl": "Organization/1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215",
- "resource": {
- "resourceType": "Organization",
- "id": "1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215",
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
- }
- ],
- "value": "NPI"
- }
- ]
- }
- },
- {
- "fullUrl": "Practitioner/1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255",
+ "fullUrl": "Observation/1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255",
+ "resourceType": "Observation",
+ "id": "1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension": [
- {
- "url": "XCN.3",
- "valueString": "JANE"
- },
- {
- "url": "XCN.10",
- "valueString": "L"
- }
- ]
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "ORC.12"
- }
- ],
- "identifier": [
- {
- "type": {
- "coding": [
- {
- "extension": [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "NM"
+ },
+ {
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
+ }
+ ],
+ "system": "http://unitsofmeasure.org",
+ "code": "wk",
+ "display": "week"
}
- ],
- "code": "NPI"
- }
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730738731303356000.1d550b83-438d-4d19-9998-5434be62a215"
- }
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
- }
- },
- {
- "fullUrl": "Organization/1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42",
- "resource": {
- "resourceType": "Organization",
- "id": "1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42",
- "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"
- }
- ]
- }
+ ]
}
- ]
- }
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
+ },
{
- "url": "XON.10",
- "valueString": "1043269798"
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "1043269798"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "PractitionerRole/1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb",
- "resource": {
- "resourceType": "PractitionerRole",
- "id": "1730738731302914000.403c7e15-3b25-4800-bbdd-abf7589450cb",
- "practitioner": {
- "reference": "Practitioner/1730738731304793000.ea2b1372-fc3a-44cc-ad74-4ca94fc13255"
+ ],
+ "system": "http://loinc.org",
+ "code": "57714-8",
+ "display": "OBSTETRIC ESTIMATION OF GESTATIONAL AGE"
+ }
+ ]
},
- "organization": {
- "reference": "Organization/1730738731306205000.ae1ce8c4-b120-40f7-9470-5180ef5aba42"
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueQuantity": {
+ "value": 32,
+ "unit": "week",
+ "system": "UCUM",
+ "code": "wk"
}
}
},
{
- "fullUrl": "Organization/1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f",
+ "fullUrl": "Observation/1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c",
"resource": {
- "resourceType": "Organization",
- "id": "1730738731309095000.03da74e9-6434-4ded-9742-09c5ab19932f",
+ "resourceType": "Observation",
+ "id": "1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c",
"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"
- }
- ]
- }
- }
- ]
- }
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
- {
- "url": "XON.10",
- "valueString": "1043269798"
- }
- ]
- }
- ],
- "identifier": [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
{
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "CMS"
- }
- ]
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
- }
- ]
- },
- "value": "1043269798"
+ ]
}
],
- "name": "ST. CLOUD HOSPITAL"
- }
- },
- {
- "fullUrl": "Organization/1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5",
- "resource": {
- "resourceType": "Organization",
- "id": "1730738731310360000.2f784e80-0a21-4ad9-87ff-c5e7f5d5afd5",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding": {
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "XON.2"
- }
- ]
- }
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
+ ],
+ "system": "http://loinc.org",
+ "code": "57713-0",
+ "display": "INFANT FACTORS THAT AFFECT NEWBORN SCREENING INTERPRETATION"
}
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension": [
- {
- "url": "XON.10",
- "valueString": "739"
- }
- ]
- }
- ],
- "identifier": [
- {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString": "MN Public Health Lab"
- }
- ]
- }
- ],
- "type": {
- "coding": [
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
{
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
- ]
- },
- "value": "739"
- }
- ],
- "name": "ST. CLOUD HOSPITAL"
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12419-0",
+ "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Organization/1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1",
+ "fullUrl": "Observation/1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43",
"resource": {
- "resourceType": "Organization",
- "id": "1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1",
- "identifier": [
+ "resourceType": "Observation",
+ "id": "1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
{
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString": "HD.1"
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
- ],
- "value": "NPI"
+ ]
}
- ]
+ ],
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
+ }
+ ],
+ "code": "MNDSIB",
+ "display": "DOES THE BABY HAVE A DECEASED SIBLING?"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Practitioner/1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6",
+ "fullUrl": "Observation/1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b",
"resource": {
- "resourceType": "Practitioner",
- "id": "1730738731311977000.d7ea85e0-64d8-4234-ad65-abcf714feec6",
+ "resourceType": "Observation",
+ "id": "1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b",
"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/sub-id",
+ "valueString": "1"
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "AOE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "XCN.3",
- "valueString": "JANE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url": "XCN.10",
- "valueString": "L"
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "O"
}
]
}
],
- "identifier": [
- {
- "type": {
- "coding": [
+ "status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
{
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean": true
- }
- ],
- "code": "NPI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
}
- ]
- },
- "value": "1265136360",
- "assigner": {
- "reference": "Organization/1730738731310862000.0ea5a2e1-5333-40f0-a17d-38cbe92257a1"
+ ],
+ "code": "MNDEFECT",
+ "display": "DOES THE BABY HAVE BIRTH DEFECTS?"
}
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "JONES",
- "given": [
- "JANE"
- ]
- }
- ]
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
+ }
}
},
{
- "fullUrl": "Observation/1730738731510327000.88b4ec9b-b9b3-4502-a606-0e7a3cb9b155",
+ "fullUrl": "Observation/1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe",
"resource": {
"resourceType": "Observation",
- "id": "1730738731510327000.88b4ec9b-b9b3-4502-a606-0e7a3cb9b155",
+ "id": "1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -964,10 +1078,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -981,8 +1092,26 @@
}
],
"status": "unknown",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "99MDH"
+ }
+ ],
+ "code": "MNFAM",
+ "display": "FAMILY HISTORY OF DISORDER ON MN SCREENING PANEL"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -993,19 +1122,31 @@
}
]
},
- "valueQuantity": {
- "value": 1769.859285,
- "unit": "gram",
- "system": "UCUM",
- "code": "g"
+ "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": "99MDH"
+ }
+ ],
+ "code": "N",
+ "display": "No"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730738731513131000.f5e9b62c-add4-41d8-897b-03c1f6ae8500",
+ "fullUrl": "Observation/1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f",
"resource": {
"resourceType": "Observation",
- "id": "1730738731513131000.f5e9b62c-add4-41d8-897b-03c1f6ae8500",
+ "id": "1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1020,10 +1161,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "NM"
- },
- {
- "url": "OBX.6"
+ "valueId": "CWE"
},
{
"url": "OBX.29",
@@ -1037,8 +1175,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1049,23 +1206,36 @@
}
]
},
- "valueQuantity": {
- "value": 32,
- "unit": "week",
- "system": "UCUM",
- "code": "wk"
+ "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": "LN"
+ }
+ ],
+ "system": "http://loinc.org",
+ "code": "LA12418-2",
+ "display": "TPN"
+ }
+ ]
}
}
},
{
- "fullUrl": "Observation/1730738731515940000.b6b3f42f-91f0-496f-9fd9-eb22a31a7ffa",
+ "fullUrl": "Observation/1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc",
"resource": {
"resourceType": "Observation",
- "id": "1730738731515940000.b6b3f42f-91f0-496f-9fd9-eb22a31a7ffa",
+ "id": "1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
+ "valueString": "2"
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
@@ -1090,8 +1260,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "67704-7",
+ "display": "FEEDING TYPES"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1116,18 +1305,18 @@
}
],
"system": "http://loinc.org",
- "code": "LA12419-0",
- "display": "INFANT IN NICU AT TIME OF SPECIMEN COLLECTION"
+ "code": "LA16914-6",
+ "display": "BREAST MILK"
}
]
}
}
},
{
- "fullUrl": "Observation/1730738731518273000.190131f9-cfca-4cee-8478-e0b07408fb03",
+ "fullUrl": "Observation/1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08",
"resource": {
"resourceType": "Observation",
- "id": "1730738731518273000.190131f9-cfca-4cee-8478-e0b07408fb03",
+ "id": "1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1156,8 +1345,27 @@
}
],
"status": "unknown",
+ "code": {
+ "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",
+ "code": "57723-9",
+ "display": "UNIQUE BAR CODE NUMBER OF CURRENT SAMPLE"
+ }
+ ]
+ },
"subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
},
"effectiveDateTime": "2023-05-06T05:00:00-05:00",
"_effectiveDateTime": {
@@ -1175,24 +1383,19 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
"valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
}
],
- "code": "N",
- "display": "No"
+ "code": "0516199364"
}
]
}
}
},
{
- "fullUrl": "Observation/1730738731520682000.b4c586d3-597e-47ab-80c2-c7c2bc54ea49",
+ "fullUrl": "Observation/1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572",
"resource": {
"resourceType": "Observation",
- "id": "1730738731520682000.b4c586d3-597e-47ab-80c2-c7c2bc54ea49",
+ "id": "1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1207,7 +1410,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1221,19 +1424,7 @@
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1243,21 +1434,35 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
+ "valueString": "LN"
}
],
- "code": "N",
- "display": "No"
+ "system": "http://loinc.org",
+ "code": "62328-0",
+ "display": "DISCHARGE PROVIDER PRACTICE PHONE NUMBER"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "Daniel Davis/218-555-1000"
}
},
{
- "fullUrl": "Observation/1730738731523380000.352af6c9-ee7a-46dd-affc-ae5072396619",
+ "fullUrl": "Observation/1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b",
"resource": {
"resourceType": "Observation",
- "id": "1730738731523380000.352af6c9-ee7a-46dd-affc-ae5072396619",
+ "id": "1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1272,7 +1477,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1286,19 +1491,7 @@
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1308,21 +1501,35 @@
},
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "99MDH"
+ "valueString": "LN"
}
],
- "code": "N",
- "display": "No"
+ "system": "http://loinc.org",
+ "code": "62324-9",
+ "display": "POST-DISCHARGE PROVIDER NAME"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "DAVIS, DANIEL, MD"
}
},
{
- "fullUrl": "Observation/1730738731526556000.2b0159b2-169e-48c8-9015-0e1b8818ca0c",
+ "fullUrl": "Observation/1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3",
"resource": {
"resourceType": "Observation",
- "id": "1730738731526556000.2b0159b2-169e-48c8-9015-0e1b8818ca0c",
+ "id": "1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
@@ -1337,7 +1544,7 @@
"extension": [
{
"url": "OBX.2",
- "valueId": "CWE"
+ "valueId": "ST"
},
{
"url": "OBX.29",
@@ -1347,23 +1554,198 @@
"url": "OBX.11",
"valueString": "O"
}
- ]
+ ]
+ }
+ ],
+ "status": "unknown",
+ "code": {
+ "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",
+ "code": "62326-4",
+ "display": "POST-DISCHARGE PROVIDER PRACTICE NAME"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "effectiveDateTime": "2023-05-06T05:00:00-05:00",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000-0500"
+ }
+ ]
+ },
+ "valueString": "Lakeridge Health Revere"
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1732560464091181000.f098610a-e954-4a1f-962a-84a040c087a3",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732560464091181000.f098610a-e954-4a1f-962a-84a040c087a3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "NW"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230506052913-0500"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8"
+ }
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec"
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "421832901"
+ }
+ },
+ {
+ "url": "OBR.15.1",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500007"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.2",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "Blood spot specimen"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.3",
+ "valueString": "SCT"
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2023-05-06T05:00:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506050000"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "EPIC"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.2.840.114350.1.13.145.2.7.2.695071"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "421832901"
}
],
"status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
+ "code": {
"coding": [
{
"extension": [
@@ -1377,292 +1759,456 @@
}
],
"system": "http://loinc.org",
- "code": "LA12418-2",
- "display": "TPN"
+ "code": "54089-8",
+ "display": "Newborn screening panel American Health Information Community (AHIC)"
}
]
- }
+ },
+ "subject": {
+ "reference": "Patient/1732560463859667000.43594f6f-27b3-4553-9415-eba10646731c"
+ },
+ "authoredOn": "2023-05-06T05:29:13-05:00",
+ "_authoredOn": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230506052913-0500"
+ }
+ ]
+ },
+ "requester": {
+ "reference": "PractitionerRole/1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c"
+ },
+ "supportingInfo": [
+ {
+ "reference": "Observation/1732560463868656000.d9931814-009e-488f-9e9e-d9e2e9a0d88e"
+ },
+ {
+ "reference": "Observation/1732560463872437000.ff33bbbf-a19c-4168-a776-d777e6292a53"
+ },
+ {
+ "reference": "Observation/1732560463875990000.b2d5769f-bf17-4c33-9fe8-ab809ff5432c"
+ },
+ {
+ "reference": "Observation/1732560463878796000.a41e65dc-a9b1-4a28-8206-6131bd92cd43"
+ },
+ {
+ "reference": "Observation/1732560463881421000.b5199e33-5e9c-4cda-832e-da7faf1c6d2b"
+ },
+ {
+ "reference": "Observation/1732560463884184000.9eb8d049-95d5-45f3-8017-84984bc98cfe"
+ },
+ {
+ "reference": "Observation/1732560463886871000.629e13bb-5ce8-4d9e-a2c9-1d935b10ca9f"
+ },
+ {
+ "reference": "Observation/1732560463889572000.c7462fee-e160-41ec-b001-8ab991db07cc"
+ },
+ {
+ "reference": "Observation/1732560463892002000.02dfff3e-dff7-47e8-a365-e2f492e64d08"
+ },
+ {
+ "reference": "Observation/1732560463894461000.9b02a635-1544-4b4e-a632-8cf72a382572"
+ },
+ {
+ "reference": "Observation/1732560463896580000.b4921e15-5a39-445b-bcd2-fe30902cac6b"
+ },
+ {
+ "reference": "Observation/1732560463898808000.9872ccd7-0e23-4fa6-a2ce-2cc7e0ce07a3"
+ }
+ ]
}
},
{
- "fullUrl": "Observation/1730738731529037000.180d231d-59dd-4321-8845-27197fa048fd",
+ "fullUrl": "Organization/1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e",
"resource": {
- "resourceType": "Observation",
- "id": "1730738731529037000.180d231d-59dd-4321-8845-27197fa048fd",
- "extension": [
+ "resourceType": "Organization",
+ "id": "1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "2"
- },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "NPI"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207",
+ "extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XCN.10",
+ "valueString": "L"
}
]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560464079844000.0841fbf6-fb0f-4996-a66f-95df2651bc5e"
}
- ]
- },
- "valueCodeableConcept": {
- "coding": [
- {
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
+ "valueCoding": {
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "coding"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString": "LN"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
}
],
- "system": "http://loinc.org",
- "code": "LA16914-6",
- "display": "BREAST MILK"
+ "code": "L"
}
- ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "1043269798"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560464079296000.34904a47-9965-4150-ae6d-2d1795f5492c",
+ "practitioner": {
+ "reference": "Practitioner/1732560464080827000.fbc9b2c7-9a0b-48ec-8769-0af93a42d207"
+ },
+ "organization": {
+ "reference": "Organization/1732560464081718000.d477fd89-88c5-4c92-93d2-e06b84429c8f"
}
}
},
{
- "fullUrl": "Observation/1730738731531149000.c5106738-6a97-4414-9da1-bea8ae0d9965",
+ "fullUrl": "Organization/1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8",
"resource": {
- "resourceType": "Observation",
- "id": "1730738731531149000.c5106738-6a97-4414-9da1-bea8ae0d9965",
+ "resourceType": "Organization",
+ "id": "1732560464084616000.557a839f-fd07-44e4-8a5a-6a809c443dc8",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "CWE"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "1043269798"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueCodeableConcept": {
- "coding": [
- {
- "extension": [
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CMS"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString": "coding"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
}
- ],
- "code": "0516199364"
- }
- ]
- }
+ ]
+ },
+ "value": "1043269798"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730738731532885000.a4961dae-caa2-429c-b378-454e3a868984",
+ "fullUrl": "Organization/1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de",
"resource": {
- "resourceType": "Observation",
- "id": "1730738731532885000.a4961dae-caa2-429c-b378-454e3a868984",
+ "resourceType": "Organization",
+ "id": "1732560464085384000.81024e7a-2bdc-4cb6-beba-2aaa10eeb4de",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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"
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "L"
+ }
},
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XON.10",
+ "valueString": "739"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "Daniel Davis/218-555-1000"
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "MN Public Health Lab"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "739"
+ }
+ ],
+ "name": "ST. CLOUD HOSPITAL"
}
},
{
- "fullUrl": "Observation/1730738731534684000.1cf416d4-71bd-4cc2-aa61-d11e9df2aace",
+ "fullUrl": "Organization/1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6",
"resource": {
- "resourceType": "Observation",
- "id": "1730738731534684000.1cf416d4-71bd-4cc2-aa61-d11e9df2aace",
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
- },
+ "resourceType": "Organization",
+ "id": "1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6",
+ "identifier": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
- },
- {
- "url": "OBX.11",
- "valueString": "O"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
- ]
+ ],
+ "value": "NPI"
}
- ],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
- }
- ]
- },
- "valueString": "DAVIS, DANIEL, MD"
+ ]
}
},
{
- "fullUrl": "Observation/1730738731536431000.f80e1acd-096d-4dc3-9ce4-a83034097979",
+ "fullUrl": "Practitioner/1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec",
"resource": {
- "resourceType": "Observation",
- "id": "1730738731536431000.f80e1acd-096d-4dc3-9ce4-a83034097979",
+ "resourceType": "Practitioner",
+ "id": "1732560464086477000.a4c334f5-625e-4f80-ac45-0582c86e78ec",
"extension": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString": "1"
- },
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
- "valueCode": "AOE"
+ "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/obx-observation",
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
"extension": [
{
- "url": "OBX.2",
- "valueId": "ST"
- },
- {
- "url": "OBX.29",
- "valueId": "QST"
+ "url": "XCN.3",
+ "valueString": "JANE"
},
{
- "url": "OBX.11",
- "valueString": "O"
+ "url": "XCN.10",
+ "valueString": "L"
}
]
}
],
- "status": "unknown",
- "subject": {
- "reference": "Patient/1730738731286343000.2d0c8167-3311-4d33-8612-03527b335873"
- },
- "effectiveDateTime": "2023-05-06T05:00:00-05:00",
- "_effectiveDateTime": {
- "extension": [
- {
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString": "20230506050000-0500"
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "NPI"
+ }
+ ]
+ },
+ "value": "1265136360",
+ "assigner": {
+ "reference": "Organization/1732560464085781000.072e5d55-f93d-4fd4-b49f-2eded70f92e6"
}
- ]
- },
- "valueString": "Lakeridge Health Revere"
- }
- },
- {
- "fullUrl": "Specimen/1730738731544333000.8f505bef-a90a-4fdf-b4fa-27a1777dae04",
- "resource": {
- "resourceType": "Specimen",
- "id": "1730738731544333000.8f505bef-a90a-4fdf-b4fa-27a1777dae04",
- "extension": [
+ }
+ ],
+ "name": [
{
- "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString": "SPM"
+ "use": "official",
+ "family": "JONES",
+ "given": [
+ "JANE"
+ ]
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir
index 825d26e4e1f..7a867edd798 100644
--- a/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/HL7_to_FHIR/sample_oru_20241015-001.fhir
@@ -450,6 +450,22 @@
}
}
],
+ "relationship": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "MTH",
+ "display": "Mother"
+ }
+ ]
+ }
+ ],
"name": {
"family": "CDPHSIX"
},
@@ -14207,7 +14223,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14220,7 +14247,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T15:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410151535"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14233,7 +14271,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T15:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410151535"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14246,7 +14295,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14259,7 +14319,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14272,7 +14343,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14285,7 +14367,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14298,7 +14391,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14311,7 +14415,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14324,7 +14439,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14337,7 +14463,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14350,7 +14487,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14363,7 +14511,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14376,7 +14535,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14389,7 +14559,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14402,7 +14583,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14415,7 +14607,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14428,7 +14631,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14441,7 +14655,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14454,7 +14679,18 @@
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2024-10-15T03:35:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
+ }
+ }
}
},
{
@@ -14531,6 +14767,12 @@
"value": "55555555"
}
},
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -14540,9 +14782,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -14807,10 +15055,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8",
+ "fullUrl": "Practitioner/1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865259286197.346a3816-311c-4378-beab-801edd9b75b8",
+ "id": "1731693602713184000.734a188a-2520-4f05-bf34-6622b15dbab7",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -14841,6 +15089,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -14850,9 +15104,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T15:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410151535"
+ }
+ ]
}
}
]
@@ -14940,10 +15200,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e",
+ "fullUrl": "Practitioner/1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865274418038.e663574d-f32d-46d5-a9cc-afb5b456037e",
+ "id": "1731693602715782000.9b3bc61b-45b4-450e-862b-7b10e639b4db",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -14974,6 +15234,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -14983,9 +15249,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T15:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410151535"
+ }
+ ]
}
}
]
@@ -15073,10 +15345,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166",
+ "fullUrl": "Practitioner/1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865288484220.ff33ae57-9ee3-4143-bbe7-1f571cd5a166",
+ "id": "1731693602718412000.51cfb819-c199-4852-a0e7-c0e4f3ad4c8f",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15107,6 +15379,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15116,9 +15394,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15206,10 +15490,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c",
+ "fullUrl": "Practitioner/1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865302786215.5b5dc9e8-8430-4c2a-80cd-bb5ea867af4c",
+ "id": "1731693602720664000.6053b7ca-d471-40a1-9d44-67d93cafb3af",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15240,6 +15524,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602722936000.05f7e286-9982-437c-8960-771942e12635"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15249,9 +15539,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15339,10 +15635,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520",
+ "fullUrl": "Practitioner/1731693602722936000.05f7e286-9982-437c-8960-771942e12635",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865334206662.6f2a02d3-2252-4ed3-b792-440aef2f0520",
+ "id": "1731693602722936000.05f7e286-9982-437c-8960-771942e12635",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15373,6 +15669,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15382,9 +15684,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15472,10 +15780,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d",
+ "fullUrl": "Practitioner/1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865349254698.75e18fa4-d581-400f-974a-f57ed2eaaa7d",
+ "id": "1731693602733178000.4956bd78-e583-4ee8-b665-62d60279f2be",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15506,6 +15814,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15515,9 +15829,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15605,10 +15925,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400",
+ "fullUrl": "Practitioner/1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865364623153.c29075d3-d3fb-4fcd-95eb-9b541c22a400",
+ "id": "1731693602735825000.ca2d0314-066b-4c6a-bca7-fad2712cd68e",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15639,6 +15959,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15648,9 +15974,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15738,10 +16070,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9",
+ "fullUrl": "Practitioner/1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865382820865.a396a3e5-8337-4ba2-8156-55fe16dedbe9",
+ "id": "1731693602738103000.6db2d6da-4963-4eca-a9b2-c3f32faa3448",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15772,6 +16104,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15781,9 +16119,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -15871,10 +16215,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde",
+ "fullUrl": "Practitioner/1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865400018421.bbfd232a-a5bd-4ca2-aeaf-92c8b64acbde",
+ "id": "1731693602740434000.0f65a61d-eabc-47ec-9a81-4f12f491d04c",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -15905,6 +16249,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -15914,9 +16264,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16004,10 +16360,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1",
+ "fullUrl": "Practitioner/1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865415003354.518deaef-14ae-47e2-a0e2-f3953f8a42b1",
+ "id": "1731693602742639000.75de4f5e-8ff9-420a-89c7-dfc96b021b47",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16038,6 +16394,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16047,9 +16409,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16137,10 +16505,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f",
+ "fullUrl": "Practitioner/1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865429841279.b8ebe18d-2976-470f-8370-cdaa47b5190f",
+ "id": "1731693602744828000.d18eacd1-7729-4580-bf63-d069b7733864",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16171,6 +16539,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16180,9 +16554,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16270,10 +16650,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e",
+ "fullUrl": "Practitioner/1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865445277037.9fb23c6e-6525-4fa5-8656-ae2f9c93640e",
+ "id": "1731693602747010000.53bd28ca-2e5e-4714-9eeb-113e6cb1404d",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16304,6 +16684,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16313,9 +16699,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16403,10 +16795,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005",
+ "fullUrl": "Practitioner/1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865460259370.b550f180-92c4-4c17-8ed2-14d222e2a005",
+ "id": "1731693602749196000.37010e13-9103-42e2-af39-78d621cd2956",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16437,6 +16829,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16446,9 +16844,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16536,10 +16940,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860",
+ "fullUrl": "Practitioner/1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865474539664.110c834b-856b-4af7-a04a-022d97f85860",
+ "id": "1731693602751351000.bc2bf032-9522-4e97-9d4e-aebb25c59820",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16570,6 +16974,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16579,9 +16989,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16669,10 +17085,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7",
+ "fullUrl": "Practitioner/1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865490316841.6b130d46-d6e4-416f-9703-6e3fcd64b1b7",
+ "id": "1731693602753548000.d9176daf-bbdb-4940-947d-1c46642767f6",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16703,6 +17119,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16712,9 +17134,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16802,10 +17230,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e",
+ "fullUrl": "Practitioner/1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865505065961.73827d17-696e-41f8-965f-8c0c3178618e",
+ "id": "1731693602755700000.96bfb6e9-3e3d-4578-a3c5-70073e1b8c04",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16836,6 +17264,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16845,9 +17279,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -16935,10 +17375,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549",
+ "fullUrl": "Practitioner/1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865522358322.6e8d8944-8783-4d5f-ad00-57357e087549",
+ "id": "1731693602757880000.b29654c1-31a2-4351-bdd5-5ad765a6592d",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -16969,6 +17409,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -16978,9 +17424,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -17068,10 +17520,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b",
+ "fullUrl": "Practitioner/1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865535416648.acae9afe-d587-455b-9247-069d6ec4643b",
+ "id": "1731693602760044000.7f91a118-c072-4838-ae1a-e0dbfa446021",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -17102,6 +17554,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -17111,9 +17569,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -17206,10 +17670,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d",
+ "fullUrl": "Practitioner/1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865593660086.c3a3d3c1-400b-44e4-91b7-b43294c56b7d",
+ "id": "1731693602762176000.415e4af4-0caa-467f-bda2-575d0efb347f",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
@@ -17240,6 +17704,12 @@
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81"
+ }
+ },
{
"url": "OBR.22",
"valueString": "20241015034304"
@@ -17249,9 +17719,15 @@
"valueId": "F"
},
{
- "url": "OBR.16",
- "valueReference": {
- "reference": "Practitioner/1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165"
+ "url": "OBR.7",
+ "valueDateTime": "2024-10-15T03:35:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202410150335"
+ }
+ ]
}
}
]
@@ -17344,10 +17820,10 @@
}
},
{
- "fullUrl": "Practitioner/1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165",
+ "fullUrl": "Practitioner/1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81",
"resource": {
"resourceType": "Practitioner",
- "id": "1729025865680272601.0c1682e6-d771-497d-94a0-7ee2fa153165",
+ "id": "1731693602764326000.bb30014c-0830-4cc1-a234-aa3573ce7a81",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir
index df861fa9b0e..c703f63d597 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ei/EI-to-Identifier-Extension.fhir
@@ -119,7 +119,16 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
- } ]
+ } ],
+ "collection" : {
+ "collectedDateTime" : "2023-02-27",
+ "_collectedDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230227"
+ } ]
+ }
+ }
}
}, {
"fullUrl" : "ServiceRequest/1710882479463509000.8bf4d839-88e3-40b8-9d4e-6795636a4aff",
@@ -129,15 +138,24 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
"extension" : [ {
+ "url" : "OBR.16",
+ "valueReference" : {
+ "reference" : "Practitioner/1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495"
+ }
+ }, {
"url" : "OBR.22",
"valueString" : "20230405133600-0400"
}, {
"url" : "OBR.25",
"valueId" : "F"
}, {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd"
+ "url" : "OBR.7",
+ "valueDateTime" : "2023-02-27",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230227"
+ } ]
}
} ]
} ],
@@ -291,10 +309,10 @@
} ]
}
}, {
- "fullUrl" : "Practitioner/1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd",
+ "fullUrl" : "Practitioner/1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495",
"resource" : {
"resourceType" : "Practitioner",
- "id" : "1710882479459596000.dea2fa3a-c4d5-42c1-a425-7756c8c633fd",
+ "id" : "1731634783563452000.70fb569b-0b26-4b24-88e5-9e3b5130b495",
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
"extension" : [ {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir
index a97246c317f..cc7c34776c0 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson-with-repeats.fhir
@@ -147,6 +147,29 @@
}
} ],
"relationship" : [ {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70063"
+ } ],
+ "code" : "OTH",
+ "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" : "L"
+ } ],
+ "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code" : "OT",
+ "display" : "OTHER RELATIONSHIP"
+ } ]
+ }, {
"coding" : [ {
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir
index c64ca412bf4..d49f2105335 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/nk1/NK1-to-RelatedPerson.fhir
@@ -147,6 +147,29 @@
}
} ],
"relationship" : [ {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70063"
+ } ],
+ "code" : "OTH",
+ "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" : "L"
+ } ],
+ "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code" : "OT",
+ "display" : "OTHER RELATIONSHIP"
+ } ]
+ }, {
"coding" : [ {
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
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
new file mode 100644
index 00000000000..049fc4fbdce
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.fhir
@@ -0,0 +1,16620 @@
+{
+ "resourceType": "Bundle",
+ "id": "1732560946103663000.00c83475-61b1-4722-b571-392974c116e2",
+ "meta": {
+ "lastUpdated": "2024-11-25T13:55:46.115-05:00"
+ },
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "0123"
+ },
+ "type": "message",
+ "timestamp": "2019-07-20T09:12:29.000-04:00",
+ "entry": [
+ {
+ "fullUrl": "MessageHeader/1732560946205658000.d9f872a1-d8e0-4027-a6ff-0dd10709fdaa",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1732560946205658000.d9f872a1-d8e0-4027-a6ff-0dd10709fdaa",
+ "meta": {
+ "security": [
+ {
+ "code": "msh8placeholder"
+ }
+ ],
+ "tag": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0103",
+ "code": "P"
+ },
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0207",
+ "code": "A"
+ }
+ ]
+ },
+ "language": "ENG",
+ "extension": [
+ {
+ "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": "20190720091229"
+ },
+ {
+ "url": "MSH.13",
+ "valueString": "42"
+ },
+ {
+ "url": "MSH.14",
+ "valueString": "msh14placeholder"
+ },
+ {
+ "url": "MSH.15",
+ "valueString": "AL"
+ },
+ {
+ "url": "MSH.16",
+ "valueString": "AL"
+ },
+ {
+ "url": "MSH.19",
+ "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": "ISO"
+ }
+ ],
+ "version": "131",
+ "code": "ENG",
+ "display": "English"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
+ }
+ ],
+ "code": "2ndalt",
+ "display": "Second Alt"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "altISO"
+ }
+ ],
+ "version": "313",
+ "code": "altE",
+ "display": "altEnglish"
+ }
+ ],
+ "text": "originaltext"
+ }
+ },
+ {
+ "url": "MSH.20",
+ "valueString": "UNICODE UTF-16"
+ },
+ {
+ "url": "MSH.21",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "PHIN"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.9.11"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "PHLabReport-NoAck"
+ }
+ },
+ {
+ "url": "MSH.21",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "PHIN"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.9.11"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "PHLabReport2x"
+ }
+ },
+ {
+ "url": "MSH.24",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SendingNetworkAddress"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.23.987.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "O21",
+ "display": "OML^O21^OML_O21"
+ },
+ "destination": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.181960.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.5"
+ }
+ ],
+ "name": "txdshslabNBS",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2",
+ "receiver": {
+ "reference": "Organization/1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "9.87.123.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.25"
+ }
+ ],
+ "name": "ReceivingNetworkAddress",
+ "endpoint": "urn:oid:9.87.123.1.114222.XXX",
+ "receiver": {
+ "reference": "Organization/1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5"
+ }
+ },
+ {
+ "receiver": {
+ "reference": "Organization/1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67"
+ }
+ }
+ ],
+ "sender": {
+ "reference": "Organization/1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9"
+ },
+ "source": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "OrderingFacilityApplicationName"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.3"
+ }
+ ],
+ "software": "STARLIMS",
+ "version": "ELIMS V11",
+ "endpoint": "urn:oid:2.16.840.1.114222.XXX"
+ },
+ "responsible": {
+ "reference": "Organization/1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be"
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946168730000.5485c015-7831-4992-bc78-8c2eff3d4da9",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "OrderingFacilityName"
+ },
+ {
+ "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.114222.XXX"
+ }
+ ],
+ "address": [
+ {
+ "country": "FR"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1.8.440.1.1138.9.22"
+ }
+ ],
+ "name": "Clinic A",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946197609000.fd024ea0-f02b-43bf-8ad9-efaec4e623be",
+ "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": "1357-9",
+ "display": "SomeText"
+ },
+ {
+ "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": "2468-5",
+ "display": "SomeAltText"
+ }
+ ],
+ "text": "OriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1357-9",
+ "display": "SomeText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "1111"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "9"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "The Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "4.2.8.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "BCV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560946190626000.6ba520df-aae4-4f54-ba3c-d3a837243f5b"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BC"
+ }
+ ]
+ },
+ "value": "OrgIdentifier2"
+ }
+ ],
+ "name": "Sending Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946198606000.5af9a2d6-b4b1-46ca-8549-a276f1770944",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "txdshslab"
+ },
+ {
+ "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.114222.4.1.181960"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946201623000.fc8b853a-cce6-4662-abb3-cbbc902841f5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "txdshslab"
+ },
+ {
+ "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.114222.4.1.181960"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "10.10.40.10.11380.90.22"
+ }
+ ],
+ "name": "Clinic B",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946205362000.259d38b6-49a7-4764-add4-94f024ea3c67",
+ "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": "1133-5",
+ "display": "SomeOtherText"
+ },
+ {
+ "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": "1298-7",
+ "display": "SomeOtherAltText"
+ }
+ ],
+ "text": "TheOriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1133-5",
+ "display": "SomeOtherText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "5555"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier3"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.23"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "8"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "An Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "45.24.167.43"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "CCTV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560946203403000.742d2718-8261-4ae3-95db-a1e2b4850513"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BCVan"
+ }
+ ]
+ },
+ "value": "OrgIdentifier3"
+ }
+ ],
+ "name": "Receiving Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560946950155000.6a4d9d77-12e7-4c31-992b-ab9a588bf871",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560946950155000.6a4d9d77-12e7-4c31-992b-ab9a588bf871",
+ "recorded": "2019-07-20T09:12:29Z",
+ "activity": {
+ "coding": [
+ {
+ "display": "OML^O21^OML_O21"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a"
+ }
+ }
+ ],
+ "entity": [
+ {
+ "role": "source",
+ "what": {
+ "reference": "Device/1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1.8.440.1.1138.9.22"
+ }
+ ],
+ "name": "Clinic A",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946949876000.eed26c8d-bc43-488b-abf4-7dbf519d040a",
+ "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": "1357-9",
+ "display": "SomeText"
+ },
+ {
+ "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": "2468-5",
+ "display": "SomeAltText"
+ }
+ ],
+ "text": "OriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1357-9",
+ "display": "SomeText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "1111"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "9"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "The Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "4.2.8.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "BCV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560946948248000.bb3918f3-8c0b-4272-9f84-da2d16ca2100"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BC"
+ }
+ ]
+ },
+ "value": "OrgIdentifier2"
+ }
+ ],
+ "name": "Sending Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2.16.8121.1.113883.9.11"
+ }
+ ],
+ "name": "Hospital C",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11",
+ "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": "HL70204"
+ }
+ ],
+ "code": "A",
+ "display": "Alias Name"
+ }
+ ]
+ }
+ }
+ ],
+ "system": "HL70204",
+ "code": "A",
+ "display": "Alias Name"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "A"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "789"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "CDC CLIA"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Check Digit3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CDC OML SFT"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.1.9.1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560946954537000.2269571e-e826-4fe9-bb65-480d6ecdada8"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "CDC CLIA"
+ }
+ ],
+ "name": "CDC"
+ }
+ },
+ {
+ "fullUrl": "Device/1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560946956044000.478dcbef-ef28-460c-a0c9-5034ef9bcd78",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
+ "valueReference": {
+ "reference": "Organization/1732560946955765000.cc7695af-f122-42eb-854b-4401e669da11"
+ }
+ }
+ ],
+ "manufacturer": "CDC",
+ "deviceName": [
+ {
+ "name": "STARLIMS",
+ "type": "manufacturer-name"
+ }
+ ],
+ "modelNumber": "Binary ID unknown",
+ "version": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
+ "valueDateTime": "2023-08-02T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230802180802-0400"
+ }
+ ]
+ }
+ }
+ ],
+ "value": "ELIMS V11"
+ }
+ ],
+ "note": [
+ {
+ "text": "testsft5data"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560946971375000.14423481-71a6-46d5-a500-0f60d1fb345b",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560946971375000.14423481-71a6-46d5-a500-0f60d1fb345b",
+ "recorded": "2024-11-25T13:55:46Z",
+ "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/1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946971002000.4116387f-caed-496f-a3c7-10c5a7217a34",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee",
+ "meta": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id",
+ "valueReference": {
+ "reference": "Organization/1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430"
+ }
+ }
+ ],
+ "lastUpdated": "2024-08-21T11:38:00Z",
+ "_lastUpdated": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202408211138"
+ }
+ ]
+ }
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20210207"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20210208"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Coded Patient note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Just a little note on the patient"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "another little comment"
+ }
+ ],
+ "time": "2021-02-06",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210206"
+ }
+ ]
+ },
+ "text": "Just a little note on the patient"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230601"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20350201"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Coded comment for patient note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Accession level coment."
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "y"
+ }
+ ],
+ "version": "a",
+ "code": "z",
+ "display": "x"
+ }
+ ],
+ "text": "b"
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9"
+ },
+ "time": "2023-05-31",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230531"
+ }
+ ]
+ },
+ "text": "Accession level coment."
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
+ "extension": [
+ {
+ "url": "PID.8",
+ "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": "HL70001"
+ }
+ ],
+ "code": "F",
+ "display": "Female"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.18",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.18"
+ }
+ ],
+ "value": "32"
+ }
+ },
+ {
+ "url": "PID.24",
+ "valueString": "Y"
+ },
+ {
+ "url": "PID.30",
+ "valueString": "Y"
+ },
+ {
+ "url": "PID.32",
+ "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": "HL70445"
+ }
+ ],
+ "code": "AL",
+ "display": "Alias"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.32",
+ "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": "HL70445"
+ }
+ ],
+ "code": "UA",
+ "display": "Unknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.38",
+ "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": "HL70429"
+ }
+ ],
+ "code": "RA",
+ "display": "Racing"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status",
+ "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": "HL70172"
+ }
+ ],
+ "code": "NA",
+ "display": "Not Applicable"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-nationality",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.28"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70212"
+ }
+ ],
+ "code": "A",
+ "display": "American"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown",
+ "valueString": "N"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-animal",
+ "extension": [
+ {
+ "url": "species",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.35"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70446"
+ }
+ ],
+ "code": "D",
+ "display": "Dog"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "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/1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148"
+ }
+ },
+ {
+ "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/1732560947001505000.8b598190-3017-4cf9-9909-495e77538013"
+ }
+ },
+ {
+ "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/1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53"
+ }
+ },
+ {
+ "url": "PD1.14",
+ "valueReference": {
+ "reference": "Organization/1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e"
+ }
+ },
+ {
+ "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": {
+ "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": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
+ "valueHumanName": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "FHIR"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "WI"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "Mind",
+ "given": [
+ "FHIR",
+ "WI"
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
+ "valueHumanName": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "FHIR"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "WI"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "Mind2x",
+ "given": [
+ "FHIR",
+ "WI"
+ ]
+ }
+ },
+ {
+ "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
+ "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": "HL70005"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
+ "code": "2106-3",
+ "display": "White"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
+ "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": "HL70005"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
+ "code": "2131-1",
+ "display": "Other Race"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-religion",
+ "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": "HL70006"
+ }
+ ],
+ "code": "AGN",
+ "display": "Agnostic"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
+ "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": "HL70189"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
+ "code": "U",
+ "display": "Uknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
+ "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": "HL70189"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
+ "code": "AU",
+ "display": "Also Uknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
+ "valueAddress": {
+ "text": "Bayou"
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.26"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "USA",
+ "display": "United States"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.26"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "CAN",
+ "display": "Canada"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.39"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "N",
+ "display": "None"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.39"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "SN",
+ "display": "Still None"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "forty"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueString": "123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ },
+ {
+ "url": "CX.9",
+ "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": "HL7123"
+ }
+ ],
+ "code": "IX",
+ "display": "Ninth"
+ }
+ ]
+ }
+ },
+ {
+ "url": "CX.10",
+ "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": "HL7123"
+ }
+ ],
+ "code": "X",
+ "display": "Tenth"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "STARLIMS.CDC.Stag",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "Patidlist",
+ "period": {
+ "start": "2021-01-13",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210113"
+ }
+ ]
+ },
+ "end": "2021-12-30",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20211230"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "SPHL-000048",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "PID123"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "STARLIMS.CDC.Stag",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "test"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "HL7"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "MI"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Prof"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "V"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "BCN"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "Naaame"
+ },
+ {
+ "url": "XPN.9",
+ "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": "HL7444"
+ }
+ ],
+ "code": "C",
+ "display": "Name Context"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "Yes"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "19900503"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "20030503"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Mega",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Mr"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "MrOwnMega"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "Mrs"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "MrsOwn"
+ }
+ ]
+ },
+ "given": [
+ "HL7",
+ "MI"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "V",
+ "BCN",
+ "Prof"
+ ],
+ "period": {
+ "start": "1990-05-03",
+ "end": "2003-05-03"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "HL7"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "MI"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Prof"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "V"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "BCN"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "Naaame"
+ },
+ {
+ "url": "XPN.9",
+ "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": "HL7444"
+ }
+ ],
+ "code": "C",
+ "display": "Name Context"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "Yes"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "19900503"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "20030503"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Mega",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Mr"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "MrOwnMega"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "Mrs"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "MrsOwn"
+ }
+ ]
+ },
+ "given": [
+ "HL7",
+ "MI"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "V",
+ "BCN",
+ "Prof"
+ ],
+ "period": {
+ "start": "1990-05-03",
+ "end": "2003-05-03"
+ }
+ }
+ ],
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "713"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "12345"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "PRS"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "CP"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "real@example.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "himom"
+ },
+ {
+ "url": "XTN.11",
+ "valueString": "4"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "17145553862"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "17145553862",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "714"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "12345"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "PRS"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "CP"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "notreal@example.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "himom"
+ },
+ {
+ "url": "XTN.11",
+ "valueString": "4"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "17135553862"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "17135553862",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "281"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "9865"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "EMR"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "SAT"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "alsoreal@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ }
+ ]
+ }
+ ],
+ "system": "other",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "40"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.40"
+ }
+ ],
+ "_system": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
+ "valueCode": "unknown"
+ }
+ ]
+ },
+ "value": "40"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "41"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.40"
+ }
+ ],
+ "_system": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
+ "valueCode": "unknown"
+ }
+ ]
+ },
+ "value": "41"
+ }
+ ],
+ "gender": "female",
+ "birthDate": "1640",
+ "_birthDate": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "1640"
+ }
+ ]
+ },
+ "deceasedDateTime": "2031",
+ "_deceasedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2031"
+ }
+ ]
+ },
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "123 Main St"
+ }
+ ]
+ },
+ {
+ "url": "XAD.2",
+ "valueString": "Altxad"
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ },
+ {
+ "url": "XAD.12",
+ "extension": [
+ {
+ "url": "XAD.12.1",
+ "valueString": "2020"
+ },
+ {
+ "url": "XAD.12.2",
+ "valueString": "2024"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "123 Main St",
+ "Altxad"
+ ],
+ "city": "AnyTown",
+ "district": "Thurston County",
+ "state": "IG",
+ "postalCode": "95802",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2020"
+ }
+ ]
+ },
+ "end": "2024",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2024"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "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": "1234 Main St"
+ }
+ ]
+ },
+ {
+ "url": "XAD.2",
+ "valueString": "Address 2x"
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ },
+ {
+ "url": "XAD.12",
+ "extension": [
+ {
+ "url": "XAD.12.1",
+ "valueString": "2020"
+ },
+ {
+ "url": "XAD.12.2",
+ "valueString": "2024"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "1234 Main St",
+ "Address 2x"
+ ],
+ "city": "AnyTown",
+ "district": "Thurston County",
+ "state": "IG",
+ "postalCode": "95802",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2020"
+ }
+ ]
+ },
+ "end": "2024",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2024"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "maritalStatus": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70002"
+ }
+ ],
+ "code": "P",
+ "display": "Domestic Partnet"
+ }
+ ]
+ },
+ "multipleBirthInteger": 11,
+ "contact": [
+ {
+ "extension": [
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "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": "HL70063"
+ }
+ ],
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "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": "HL70063"
+ }
+ ],
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ }
+ }
+ ],
+ "relationship": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70063"
+ }
+ ],
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ },
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
+ }
+ ],
+ "code": "F",
+ "display": "Federal Agency"
+ }
+ ]
+ }
+ ],
+ "name": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "GR"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Dr"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "JR"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "Md"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "I"
+ },
+ {
+ "url": "XPN.9",
+ "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": "HL70448"
+ }
+ ],
+ "code": "CON",
+ "display": "Context of the name"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2",
+ "valueString": "2030"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "2000"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "20000501102531"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "2030501102531"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "SURYAN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Prefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Own"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "SpousePrefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "Spouse"
+ }
+ ]
+ },
+ "given": [
+ "GENARO",
+ "GR"
+ ],
+ "prefix": [
+ "Sir"
+ ],
+ "suffix": [
+ "JR",
+ "Md",
+ "Dr"
+ ],
+ "period": {
+ "start": "2000-05-01T10:25:31Z"
+ }
+ },
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3954"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3954",
+ "use": "home"
+ },
+ {
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example2@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3954"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3954",
+ "use": "home"
+ },
+ {
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example2@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3955"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3955",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "555"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 555 467 2293"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 555 467 2293",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "666"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 666 467 2293"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 666 467 2293",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "555"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 555 467 2294"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "+1 555 467 2294",
+ "use": "work"
+ }
+ ],
+ "address": {
+ "extension": [
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ "gender": "unknown",
+ "organization": {
+ "reference": "Organization/1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100"
+ },
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "communication": [
+ {
+ "language": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70296"
+ }
+ ],
+ "code": "E",
+ "display": "English"
+ }
+ ]
+ }
+ }
+ ],
+ "generalPractitioner": [
+ {
+ "reference": "Organization/1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce"
+ },
+ {
+ "reference": "Organization/1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47"
+ }
+ ],
+ "link": [
+ {
+ "other": {
+ "reference": "RelatedPerson/1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0"
+ },
+ "type": "seealso"
+ },
+ {
+ "other": {
+ "reference": "RelatedPerson/1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827"
+ },
+ "type": "seealso"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946978236000.1a73fe05-85b2-4cfc-acd5-4e741a9211fd",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "STARLINKED.CDC.Stag"
+ },
+ {
+ "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.114222.9.8.7.6.3.2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946981369000.8df5b7cc-7da6-4468-9161-c365e8b34d8a",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "STARLINKED.CDC.Stag"
+ },
+ {
+ "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.114222.9.8.7.6.3.2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008",
+ "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/1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946984073000.f6b31c9f-398c-40e1-8d29-dc1793f16cce",
+ "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/1732560946982710000.80cd8a74-be3f-485c-b9df-bd3e7b9b7008"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "OrgIdentifier"
+ }
+ ],
+ "name": "Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8",
+ "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/1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560946986249000.e2ca7f4b-09a9-4aec-b013-cd1a6c5f9d47",
+ "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/1732560946984997000.0d781aeb-6dad-466f-8e06-6ba588e902b8"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "OrgIdentifier"
+ }
+ ],
+ "name": "Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560946990177000.ea0532ae-f999-491a-9a49-1dd341ee36b9",
+ "identifier": [
+ {
+ "value": "Bob R.N."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947000285000.cad4e4e2-bae9-4adb-8b01-d7a6c6f10148",
+ "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/1732560947001505000.8b598190-3017-4cf9-9909-495e77538013",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947001505000.8b598190-3017-4cf9-9909-495e77538013",
+ "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/1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c",
+ "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/1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947004561000.e2b0f63b-e4ac-4731-9213-2982445eac53",
+ "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"
+ }
+ ]
+ }
+ ],
+ "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/1732560947003406000.c4cab69c-62b5-42e4-816f-9d6ec0eea29c"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "1st OrgIdentifier"
+ }
+ ],
+ "name": "1st Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd",
+ "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/1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947006034000.092cb85f-9594-4697-85cd-fc3119b7430e",
+ "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/1732560947005240000.cfe9822d-c368-4536-a335-cef80cdf0cdd"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "2nd OrgIdentifier"
+ }
+ ],
+ "name": "2nd Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732560947019898000.8912d887-a4d5-4ce9-af9d-c04c12e6dcb0",
+ "identifier": [
+ {
+ "value": "maybe"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732560947020256000.43a42303-ede4-421c-b7c5-7ddf28da8827",
+ "identifier": [
+ {
+ "value": "maybe not"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947028683000.e8d76b91-dd13-4728-922a-841490e02430",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947033318000.460ab4a3-da0f-4bec-a270-ae253a95d100",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "112233"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "HRU"
+ }
+ ]
+ }
+ ],
+ "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"
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE",
+ "#B"
+ ],
+ "city": "AURORA",
+ "district": "King",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "end": "2021"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732560947067669000.a71997f2-8202-4359-b2bc-87d0c35d7122",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732560947067669000.a71997f2-8202-4359-b2bc-87d0c35d7122",
+ "target": [
+ {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ }
+ ],
+ "occurredDateTime": "2024-08-21T11:38:00Z",
+ "recorded": "2024-11-25T13:55:47Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "performer"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947067347000.b0dfe50b-7dd5-4db3-bf94-2660507b9a6b",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732560947078273000.c258bc9d-a81e-4489-ac7b-b42f17bdcdff",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732560947078273000.c258bc9d-a81e-4489-ac7b-b42f17bdcdff",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-related-person",
+ "extension": [
+ {
+ "url": "NK1.13",
+ "valueReference": {
+ "reference": "Organization/1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb"
+ }
+ },
+ {
+ "url": "NK1.13",
+ "valueReference": {
+ "reference": "Organization/1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb"
+ }
+ },
+ {
+ "url": "NK1.16",
+ "valueString": "19860505"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.12"
+ }
+ ],
+ "value": "052479",
+ "period": {
+ "start": "2016-08-22",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20160822"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.33"
+ }
+ ],
+ "value": "052479",
+ "period": {
+ "end": "2021-04-28",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210428"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.33"
+ }
+ ],
+ "value": "052470",
+ "period": {
+ "end": "2021-04-29",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210429"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "patient": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "relationship": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70063"
+ }
+ ],
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.7"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
+ }
+ ],
+ "code": "F",
+ "display": "Federal Agency"
+ }
+ ]
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "GR"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Dr"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "JR"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "Md"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "I"
+ },
+ {
+ "url": "XPN.9",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70448"
+ }
+ ],
+ "code": "CON",
+ "display": "Context of the name"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2",
+ "valueString": "2030"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "2000"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "20000501102531"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "2030501102531"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "SURYAN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Prefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Own"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "SpousePrefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "Spouse"
+ }
+ ]
+ },
+ "given": [
+ "GENARO",
+ "GR"
+ ],
+ "prefix": [
+ "Sir"
+ ],
+ "suffix": [
+ "JR",
+ "Md",
+ "Dr"
+ ],
+ "period": {
+ "start": "2000-05-01T10:25:31Z"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "GR"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Dr"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "JR"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "Md"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "I"
+ },
+ {
+ "url": "XPN.9",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70448"
+ }
+ ],
+ "code": "CON",
+ "display": "Context of the name"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2",
+ "valueString": "2030"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "2000"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "20000501102531"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "2030501102531"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "SURYANS",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Prefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Own"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "SpousePrefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "Spouse"
+ }
+ ]
+ },
+ "given": [
+ "GENARO",
+ "GR"
+ ],
+ "prefix": [
+ "Sir"
+ ],
+ "suffix": [
+ "JR",
+ "Md",
+ "Dr"
+ ],
+ "period": {
+ "start": "2000-05-01T10:25:31Z"
+ }
+ }
+ ],
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3954"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3954",
+ "use": "home"
+ },
+ {
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example2@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3954"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3954",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "555"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 555 467 2293"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.6"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 555 467 2293",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "666"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 666 467 2293"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.6"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 666 467 2293",
+ "use": "work"
+ },
+ {
+ "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"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.31"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3954",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "666"
+ },
+ {
+ "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 666 555 3954"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.31"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 666 555 3954",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "314"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553131"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "VHN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "SAT"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553131"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 314 555 3131"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.40"
+ }
+ ],
+ "system": "other",
+ "value": "+1 314 555 3131"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "281"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5558181"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "AWN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "FX"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5558181"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 281 555 8181"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.41"
+ }
+ ],
+ "system": "fax",
+ "value": "+1 281 555 8181"
+ }
+ ],
+ "gender": "unknown",
+ "_gender": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-15-administrative-sex",
+ "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": "HL70001"
+ }
+ ],
+ "code": "N",
+ "display": "Not Applicable"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "birthDate": "1986-05-05",
+ "address": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.4"
+ },
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.4"
+ },
+ {
+ "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": "4860 21ST AVE"
+ }
+ ]
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4860 21ST AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "12"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.32"
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE",
+ "#B"
+ ],
+ "city": "AURORA",
+ "district": "King",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "end": "2021"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "12"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.32"
+ },
+ {
+ "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 24TH 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"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 24TH AVE",
+ "#B"
+ ],
+ "city": "AURORA",
+ "district": "King",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "end": "2021"
+ }
+ }
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ },
+ "communication": [
+ {
+ "language": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70296"
+ }
+ ],
+ "code": "E",
+ "display": "English"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947070415000.fd05515b-a14d-4605-9a55-af19963cbadb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "112233"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "HRU"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "HRU"
+ }
+ ],
+ "name": "HospitalsRUs"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947070704000.d32971c4-235f-4c2a-8d99-c34b900850bb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "112233"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "H20"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "H20"
+ }
+ ],
+ "name": "Hospitals 2.0"
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732560947085287000.b3d57f6d-c29b-43d4-b611-3aca9fda506d",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732560947085287000.b3d57f6d-c29b-43d4-b611-3aca9fda506d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-related-person",
+ "extension": [
+ {
+ "url": "NK1.13",
+ "valueReference": {
+ "reference": "Organization/1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188"
+ }
+ },
+ {
+ "url": "NK1.16",
+ "valueString": "19860505"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.12"
+ }
+ ],
+ "value": "052479",
+ "period": {
+ "start": "2016-08-22",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20160822"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.33"
+ }
+ ],
+ "value": "052479",
+ "period": {
+ "end": "2021-04-28",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210428"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "patient": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "relationship": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70063"
+ }
+ ],
+ "code": "OTH",
+ "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": "L"
+ }
+ ],
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "OT",
+ "display": "OTHER RELATIONSHIP"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.7"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
+ }
+ ],
+ "code": "F",
+ "display": "Federal Agency"
+ }
+ ]
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "GENARO"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "GR"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Dr"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "JR"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "Md"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "I"
+ },
+ {
+ "url": "XPN.9",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.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": "HL70448"
+ }
+ ],
+ "code": "CON",
+ "display": "Context the namee"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2",
+ "valueString": "2030"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "2000"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "20000501102531"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "2030501102531"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "SUPERMAN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Prefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Own"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "SpousePrefix"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "Spouse"
+ }
+ ]
+ },
+ "given": [
+ "GENARO",
+ "GR"
+ ],
+ "prefix": [
+ "Sir"
+ ],
+ "suffix": [
+ "JR",
+ "Md",
+ "Dr"
+ ],
+ "period": {
+ "start": "2000-05-01T10:25:31Z"
+ }
+ }
+ ],
+ "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": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "PRN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "PH"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "example2@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553954"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "any"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 720 555 3955"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3955",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "555"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "4672293"
+ },
+ {
+ "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": "4672293"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 555 467 2294"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.6"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 555 467 2294",
+ "use": "work"
+ },
+ {
+ "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 3955"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.31"
+ }
+ ],
+ "system": "phone",
+ "value": "+1 720 555 3955",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "314"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553131"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "VHN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "SAT"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553131"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 314 555 3132"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.40"
+ }
+ ],
+ "system": "other",
+ "value": "+1 314 555 3132"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "281"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5558181"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "AWN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "FX"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5558181"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 281 555 8182"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.41"
+ }
+ ],
+ "system": "fax",
+ "value": "+1 281 555 8182"
+ }
+ ],
+ "gender": "unknown",
+ "_gender": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nk1-15-administrative-sex",
+ "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": "HL70001"
+ }
+ ],
+ "code": "N",
+ "display": "Not Applicable"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "birthDate": "1986-05-05",
+ "address": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.4"
+ },
+ {
+ "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.7",
+ "valueCode": "H"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE"
+ ],
+ "city": "THUNDER MOUNTAIN",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "12"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.32"
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "4861 20TH AVE",
+ "#B"
+ ],
+ "city": "AURORA",
+ "district": "King",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "end": "2021"
+ }
+ }
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ },
+ "communication": [
+ {
+ "language": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70296"
+ }
+ ],
+ "code": "E",
+ "display": "English"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947080448000.2021f8f7-23b2-4192-8a52-590089b9a188",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "112233"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "HRU"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "HRU"
+ }
+ ],
+ "name": "HospitalsRUs"
+ }
+ },
+ {
+ "fullUrl": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e",
+ "resource": {
+ "resourceType": "Encounter",
+ "id": "1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e",
+ "meta": {
+ "security": [
+ {
+ "code": "SEC"
+ }
+ ]
+ },
+ "text": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description",
+ "valueString": "Description"
+ }
+ ],
+ "div": "\u003cdiv xmlns\u003d\"http://www.w3.org/1999/xhtml\"\u003eDescription\u003c/div\u003e"
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "413",
+ "display": "V"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "423",
+ "display": "X"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date",
+ "valueDateTime": "2023-06-01T10:25:31-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230601102531-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date",
+ "valueDateTime": "2023-07-01T10:25:31-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230701102531-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length",
+ "valueQuantity": {
+ "value": 5,
+ "unit": "days",
+ "system": "http://unitsofmeasure.org/",
+ "code": "d"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "100",
+ "display": "PublicCode"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival",
+ "valueCoding": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "444",
+ "display": "MODE"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "444",
+ "display": "MODE"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "123",
+ "display": "CARELEVEL1"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit",
+ "extension": [
+ {
+ "url": "PV1.12",
+ "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": "HL70087"
+ }
+ ],
+ "code": "P",
+ "display": "Passed"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.18",
+ "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": "HL70018"
+ }
+ ],
+ "code": "H",
+ "display": "Human Patient"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.46",
+ "valueDecimal": 100
+ },
+ {
+ "url": "PV1.47",
+ "valueDecimal": 199
+ },
+ {
+ "url": "PV1.48",
+ "valueDecimal": 142
+ },
+ {
+ "url": "PV1.49",
+ "valueDecimal": 130
+ },
+ {
+ "url": "PV1.51",
+ "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": "HL70326"
+ }
+ ],
+ "code": "A",
+ "display": "Account Level"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.30",
+ "valueString": "20020101"
+ },
+ {
+ "url": "PV1.31",
+ "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": "HL70021"
+ }
+ ],
+ "code": "C",
+ "display": "Collectors"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.32",
+ "valueDecimal": 1
+ },
+ {
+ "url": "PV1.33",
+ "valueDecimal": 0
+ },
+ {
+ "url": "PV1.34",
+ "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": "HL70111"
+ }
+ ],
+ "code": "Y",
+ "display": "Yes"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.35",
+ "valueString": "20080101"
+ },
+ {
+ "url": "PV1.39",
+ "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": "HL70115"
+ }
+ ],
+ "code": "H",
+ "display": "A Hospital Of Course"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.41",
+ "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": "HL70117"
+ }
+ ],
+ "code": "A",
+ "display": "Active"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information",
+ "extension": [
+ {
+ "url": "PV2.15",
+ "valueString": "EMP_ILL"
+ },
+ {
+ "url": "PV2.23",
+ "valueReference": {
+ "reference": "Organization/1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6"
+ }
+ },
+ {
+ "url": "PV2.23",
+ "valueReference": {
+ "reference": "Organization/1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9"
+ }
+ },
+ {
+ "url": "PV2.26",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "PV2.29",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.19"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "VN"
+ }
+ ],
+ "text": "visit number"
+ },
+ "value": "22"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.50"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203"
+ }
+ ]
+ },
+ "value": "alternate visit"
+ }
+ ],
+ "status": "finished",
+ "class": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "O"
+ }
+ ]
+ }
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
+ "code": "AMB",
+ "display": "ambulatory"
+ },
+ "type": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70007"
+ }
+ ],
+ "code": "R",
+ "display": "Routine"
+ }
+ ]
+ }
+ ],
+ "serviceType": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70069"
+ }
+ ],
+ "code": "URO",
+ "display": "Urology Service"
+ }
+ ]
+ },
+ "priority": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70217"
+ }
+ ],
+ "code": "3",
+ "display": "Elective"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "episodeOfCare": [
+ {
+ "reference": "EpisodeOfCare/1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee"
+ }
+ ],
+ "participant": [
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ATND",
+ "display": "attender"
+ }
+ ]
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ATND",
+ "display": "attender"
+ }
+ ]
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ADM"
+ }
+ ],
+ "text": "admitter"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ADM"
+ }
+ ],
+ "text": "admitter"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8"
+ }
+ }
+ ],
+ "period": {
+ "start": "2024-08-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240801102531-0400"
+ }
+ ]
+ },
+ "end": "2024-08-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240801102531-0400"
+ }
+ ]
+ }
+ },
+ "length": {
+ "value": 12,
+ "unit": "days",
+ "system": "http://unitsofmeasure.org/",
+ "code": "d"
+ },
+ "reasonCode": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.3"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "1",
+ "display": "AD"
+ }
+ ]
+ }
+ ],
+ "hospitalization": {
+ "preAdmissionIdentifier": {
+ "value": "232323"
+ },
+ "admitSource": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70023"
+ }
+ ],
+ "code": "RL",
+ "display": "Real Life"
+ }
+ ]
+ },
+ "reAdmission": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70092"
+ }
+ ],
+ "code": "R",
+ "display": "Re-admission"
+ }
+ ]
+ },
+ "dietPreference": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70114"
+ }
+ ],
+ "code": "F",
+ "display": "Fed"
+ }
+ ]
+ }
+ ],
+ "specialCourtesy": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70099"
+ }
+ ],
+ "code": "VIP",
+ "display": "Very Interesting Person"
+ }
+ ]
+ }
+ ],
+ "destination": {
+ "reference": "Location/1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f"
+ },
+ "dischargeDisposition": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70112"
+ }
+ ],
+ "code": "H",
+ "display": "Happy"
+ }
+ ]
+ }
+ },
+ "location": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.3"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37"
+ },
+ "status": "active"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.6"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0"
+ },
+ "status": "completed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.11"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": true
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd"
+ },
+ "status": "active"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.42"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd"
+ },
+ "status": "planned"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.43"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": true
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772"
+ },
+ "status": "completed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.1"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": false
+ }
+ ],
+ "location": {
+ "reference": "Location/1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7"
+ },
+ "status": "planned"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330",
+ "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/1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947096488000.785ac0b2-17f6-4b0f-872e-660e5f53c4a6",
+ "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/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "123"
+ }
+ ]
+ }
+ ],
+ "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/1732560947095713000.10b2dfdb-eae6-4703-a3fe-b5ee56ac1330"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "123"
+ }
+ ],
+ "name": "Org1"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca",
+ "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/1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947097902000.0904e746-7f9b-4641-b50d-ef3642d27ac9",
+ "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/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "123"
+ }
+ ]
+ }
+ ],
+ "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/1732560947097075000.893658cf-04c0-44c7-90fc-9c1965fb9dca"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "123"
+ }
+ ],
+ "name": "Org2"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947098491000.f1158a39-67bc-4de0-a7b5-451b9e15dd2f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date",
+ "valueString": "202305061200"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947101401000.31ca3069-9607-43d3-ba15-b05ee95726db",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.7"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "Namespace",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "BEETHOVEN",
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947102328000.9ac2c5de-59a3-4ebf-b36a-f5b33070ffb8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.7"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "Namespace",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "BEETHOVEN2",
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947102919000.46c5e45b-5bbf-4cc9-9edb-beaf8d35f18a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.8"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "MOZART"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947103509000.f2c8d8c3-4604-435b-8204-e550b5598002",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.8"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "MOZARTJR"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947104221000.4c197e78-08a6-4fab-9ea2-f9de06488294",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "CHOPIN"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947104860000.43f59350-cc0d-4485-a034-63e0fe31fa0c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "CHOPINSR"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947105422000.f8e05326-ac6e-4f82-8da1-33210f1eeb70",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.17"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "BACH"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947105965000.902547cf-9532-4523-b705-9b6d3b013092",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.17"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "BACHtheSecond"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947108468000.8804a57c-53bc-4061-92cd-f6255e3a984c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.13"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "BEETHOVEN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Referral Source Code1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947110860000.0fe20340-4918-4319-a79f-79582e0678b8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.13"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "BEETHOVEN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Referral Source Code2"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "AA"
+ },
+ {
+ "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": "AssigningAUTH"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital Assigned"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "value": "Building"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947113006000.f1399e9c-b308-41f3-99fe-813d35e491b5"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "value": "Floor"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947113103000.5484952c-beb2-4586-9b6e-ea591bd7e31b"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "C"
+ }
+ ]
+ },
+ "value": "Point OF Care"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947113244000.acad36a0-0546-48f2-859b-faa1c4b233e4"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "1"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "3"
+ }
+ ]
+ },
+ "value": "Room"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947113385000.c43a9b50-f6a0-4036-8d4c-587fa7f4d07d"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947113843000.69b30a21-c4ce-4fc7-a0b3-485f8ffbdf37",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "R"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "B"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "A"
+ }
+ ]
+ },
+ "value": "Bed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UID4This"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Comprehensive",
+ "assigner": {
+ "reference": "Organization/1732560947111430000.94aae298-0670-4c92-9b55-07e2b204bbe6"
+ }
+ }
+ ],
+ "description": "Totally A Real Location",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947113539000.5c4972fb-092f-4caa-a0bb-29d53a4f4bc0"
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947114313000.03edb821-2a38-4212-a897-a535db77468f",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947114313000.03edb821-2a38-4212-a897-a535db77468f",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "ASSIGNEE"
+ },
+ {
+ "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": "UUID"
+ }
+ ]
+ },
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947114854000.8fb3eb16-f138-4c7b-99de-034230a291d0",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital Prio"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1732560947114313000.03edb821-2a38-4212-a897-a535db77468f"
+ }
+ }
+ ],
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947115174000.e3d61a25-d515-4e08-84c4-9650eb2b5fdd",
+ "description": "Its Temporary",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947115496000.3c37c486-0bde-47de-9279-7d781ea92acd",
+ "description": "Pending Location",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947115807000.7073bf4f-0083-4388-b8f1-1082a1584772",
+ "description": "Prior Location",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "ASSIGNEE"
+ },
+ {
+ "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": "UUID"
+ }
+ ]
+ },
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947116718000.05d1c715-158f-473c-90ae-c89df79005e7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital PriorPending"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1732560947116253000.9cdcc78d-f79f-465a-b746-c9158deedd71"
+ }
+ }
+ ],
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "EpisodeOfCare/1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee",
+ "resource": {
+ "resourceType": "EpisodeOfCare",
+ "id": "1732560947117362000.9b75561a-8224-4fc9-9030-8370b84d42ee",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.54"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name",
+ "valueString": "Service Description"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "episode identifier"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "subid"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test",
+ "valueId": "ST"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-09-12T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230912180802-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "30"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.6",
+ "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": "HL79999"
+ }
+ ],
+ "code": "g",
+ "display": "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.27",
+ "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": "HL79900"
+ }
+ ],
+ "code": "RC",
+ "display": "root cause"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.28",
+ "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": "HL79900"
+ }
+ ],
+ "code": "LPC",
+ "display": "Local Process"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.31",
+ "valueId": "31"
+ },
+ {
+ "url": "OBX.32",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "32",
+ "display": "value absent reason"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.33",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "eip"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "33"
+ }
+ },
+ {
+ "url": "OBX.9",
+ "valueString": "99"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ },
+ {
+ "url": "OBX.12",
+ "valueString": "20000101"
+ },
+ {
+ "url": "OBX.13",
+ "valueString": "user defined"
+ },
+ {
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.18",
+ "valueReference": {
+ "reference": "Device/1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102"
+ }
+ },
+ {
+ "url": "OBX.20",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.26",
+ "valueId": "26"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.21"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "entity id"
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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",
+ "code": "80383-2",
+ "display": "Flu A"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "encounter": {
+ "reference": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e"
+ },
+ "effectiveDateTime": "2023-01-01T00:00:00Z",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230101000000"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f"
+ },
+ {
+ "reference": "PractitionerRole/1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14"
+ },
+ {
+ "reference": "PractitionerRole/1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef"
+ }
+ ],
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "code": "260415000",
+ "display": "Not detected"
+ }
+ ]
+ },
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "UP",
+ "display": "Up to you"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230212"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230213"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "This is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4"
+ },
+ "time": "2023-02-11",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230211"
+ }
+ ]
+ },
+ "text": "OBX Note"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230212"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230213"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "This is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note 2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721"
+ },
+ "time": "2023-02-11",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230211"
+ }
+ ]
+ },
+ "text": "OBX Note 2"
+ }
+ ],
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ },
+ "device": {
+ "reference": "Device/1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec"
+ },
+ "referenceRange": [
+ {
+ "text": "range of a few"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560947433754000.19ca0d1d-0037-4c58-a555-45d998f94102",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947436263000.e0e7f96c-30a7-48f7-a0ab-e43f923f9f4f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "CLIA"
+ }
+ ],
+ "code": "11D1111111",
+ "display": "CSV uploads"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "CLIA",
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Frances",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947436510000.3bd0c3ad-775d-4c25-a2b8-22d533364a14",
+ "practitioner": {
+ "reference": "Practitioner/1732560947437107000.5bd8092f-c0f1-440f-b4bb-1c8681413bc9"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Mark",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "11D1111111"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads-11D1111111",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "2 Second Dr"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "2 Second Dr"
+ ],
+ "state": "IG",
+ "postalCode": "94553",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947437350000.a95aa005-ca56-47ab-94c5-8fede0d519ef",
+ "practitioner": {
+ "reference": "Practitioner/1732560947437952000.28334464-853e-4881-bfc3-9ad3c0f82280"
+ },
+ "organization": {
+ "reference": "Organization/1732560947438950000.3d87b7cb-e34a-4026-abe4-33bbd35c10ad"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947440304000.24cf6e82-960a-4605-8d9a-72b2e785c6b4",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947441597000.2dc62479-1ac9-4917-ba62-411e37453721",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560947442931000.3c2978d9-1ed9-4a9a-9bb4-b4d49bfe12ec",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "subid"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test",
+ "valueId": "ST"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test",
+ "valueId": "SP"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-09-12T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230912180802-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "30"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.6",
+ "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": "HL79999"
+ }
+ ],
+ "code": "g",
+ "display": "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.27",
+ "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": "HL79900"
+ }
+ ],
+ "code": "RC",
+ "display": "root cause"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.28",
+ "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": "HL79900"
+ }
+ ],
+ "code": "LPC",
+ "display": "Local Process"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.31",
+ "valueId": "31"
+ },
+ {
+ "url": "OBX.32",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "32",
+ "display": "value absent reason"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.33",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "eip"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "33"
+ }
+ },
+ {
+ "url": "OBX.9",
+ "valueString": "99"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ },
+ {
+ "url": "OBX.12",
+ "valueString": "20000101"
+ },
+ {
+ "url": "OBX.13",
+ "valueString": "user defined"
+ },
+ {
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "Eye Test"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.18",
+ "valueReference": {
+ "reference": "Device/1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214"
+ }
+ },
+ {
+ "url": "OBX.18",
+ "valueReference": {
+ "reference": "Device/1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180"
+ }
+ },
+ {
+ "url": "OBX.20",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.20",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "SE",
+ "display": "Single Ears"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.26",
+ "valueId": "26"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.21"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "entity id"
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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",
+ "code": "80383-3",
+ "display": "Flu B"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "encounter": {
+ "reference": "Encounter/1732560947116827000.30eb62e2-3974-4fc3-9d69-7b9e6119177e"
+ },
+ "effectiveDateTime": "2023-01-01T00:00:00Z",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230101000000"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632"
+ },
+ {
+ "reference": "PractitionerRole/1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a"
+ },
+ {
+ "reference": "PractitionerRole/1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75"
+ },
+ {
+ "reference": "PractitionerRole/1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e"
+ }
+ ],
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "code": "260415000",
+ "display": "Not detected"
+ }
+ ]
+ },
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "UP",
+ "display": "Up to you"
+ }
+ ]
+ },
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "UP",
+ "display": "Up to you too"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230222"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230223"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Th1is is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note 3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990"
+ },
+ "time": "2023-02-21",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230221"
+ }
+ ]
+ },
+ "text": "OBX Note 3"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230222"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230223"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "This is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note 4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc"
+ },
+ "time": "2023-02-21",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230221"
+ }
+ ]
+ },
+ "text": "OBX Note 4"
+ }
+ ],
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ },
+ "device": {
+ "reference": "Device/1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c"
+ },
+ "referenceRange": [
+ {
+ "text": "range of a few"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560947450961000.e87c94b2-e6f3-4d4a-9394-dcfa4b260214",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560947451258000.e01d036e-3a31-4c54-852d-b2223d7ff180",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 002"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947453324000.d966a526-6886-4262-a380-2cfa66a23632",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "CLIA"
+ }
+ ],
+ "code": "11D1111111",
+ "display": "CSV uploads"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "CLIA",
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Frances",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947453526000.b4f1bbea-6211-4420-8414-f3499ac71d1a",
+ "practitioner": {
+ "reference": "Practitioner/1732560947454077000.5f76029c-4b68-4c77-ae9f-df63aa9de998"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2"
+ }
+ ],
+ "name": [
+ {
+ "family": "France",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947454333000.d48045c2-d160-4171-919a-d00db16e1b75",
+ "practitioner": {
+ "reference": "Practitioner/1732560947454864000.9b076555-2a5b-4c3e-a493-5933cbc6df12"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Mark",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "11D1111111"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads-11D1111111",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "2 Second Dr"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "2 Second Dr"
+ ],
+ "state": "IG",
+ "postalCode": "94553",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947455114000.18c45f9a-23ca-4a4d-8199-ab441dc23a6e",
+ "practitioner": {
+ "reference": "Practitioner/1732560947455722000.9239160a-b816-4cf1-a255-486e508ed743"
+ },
+ "organization": {
+ "reference": "Organization/1732560947457302000.24673c89-ad21-4e07-96bc-1367d4a5eb53"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947458639000.71d35ae3-fdc7-45e8-8611-df40fb13c990",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947459879000.6fe5cb3a-dcea-4944-bd94-89fc71a97dbc",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732560947461346000.f55a48f7-adec-4248-870f-ea708477853c",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "ID"
+ }
+ ]
+ },
+ "receivedTime": "2021-02-02T10:00:00Z",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202102021000"
+ }
+ ]
+ },
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5"
+ },
+ "collectedPeriod": {
+ "end": "2024-02-20",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240220"
+ }
+ ]
+ }
+ },
+ "quantity": {
+ "value": 1771
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "LN",
+ "display": "Left Naris"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "additiveCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70371"
+ }
+ ],
+ "code": "BOUIN",
+ "display": "Bouin\u0027s solution"
+ }
+ ]
+ }
+ }
+ ],
+ "condition": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL7"
+ }
+ ],
+ "code": "CMMC",
+ "display": "Collection Method Modifer Code"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "OBR.15.3"
+ }
+ ],
+ "text": "Collection Method"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "4438, Collectors Comment"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment2"
+ }
+ ]
+ }
+ }
+ ],
+ "text": "4438, Collectors Comment2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947472617000.12cea1fc-bc1e-4f6d-8d0b-b1dc8f747ab5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
+ {
+ "url": "SPM.26",
+ "valueString": "2"
+ },
+ {
+ "url": "SPM.5",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.5",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500022",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.6",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500111",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12311-1",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.6",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.11",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.11",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500022",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500022",
+ "display": "SNOMEDTEXT2"
+ }
+ ]
+ }
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "380604-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-s"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "380604-p"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "380604-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-p"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "380604-s"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500555",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12333-0",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "receivedTime": "2021-06-04T11:25:06Z",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112506+0000"
+ }
+ ]
+ },
+ "collection": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ],
+ "collectedPeriod": {
+ "start": "2021-06-04T11:25:00Z",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112500+0000"
+ }
+ ]
+ },
+ "end": "2021-06-04T11:25:01Z",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112501+0000"
+ }
+ ]
+ }
+ },
+ "quantity": {
+ "value": 1
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2020-09-01",
+ "code": "71836000",
+ "display": "Nasopharyngeal structure (body structure)"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500777",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "1235-9",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "additiveCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500111",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12311-1",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ],
+ "condition": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "TEST"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "TEST2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Specimen/1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
+ {
+ "url": "SPM.26",
+ "valueString": "2"
+ },
+ {
+ "url": "SPM.5",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.6",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.6",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "SPM.11",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/reject-reason",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ }
+ ]
+ }
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Another Lab USA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "380604-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-s"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "380614-p"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Any lab USA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-s"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "380614-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Another Lab USA-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "36D1332559-p"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA-p"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "380604-s"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "receivedTime": "2021-06-04T11:25:06Z",
+ "_receivedTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112506+0000"
+ }
+ ]
+ },
+ "collection": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ],
+ "collectedPeriod": {
+ "start": "2021-06-04T11:25:00Z",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112500+0000"
+ }
+ ]
+ },
+ "end": "2021-06-04T11:25:01Z",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210604112501+0000"
+ }
+ ]
+ }
+ },
+ "quantity": {
+ "value": 1
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2020-09-01",
+ "code": "71836000",
+ "display": "Nasopharyngeal structure (body structure)"
+ }
+ ]
+ }
+ },
+ "container": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ },
+ "additiveCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ }
+ ],
+ "condition": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "version": "2.67",
+ "code": "440500007",
+ "display": "SNOMEDTEXT"
+ },
+ {
+ "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",
+ "code": "12345-6",
+ "display": "LOINCTEXT"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
+ }
+ ],
+ "text": "TEST"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1732560947529907000.d8a09a6a-8364-469a-b25b-3af90b0b03a7",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732560947529907000.d8a09a6a-8364-469a-b25b-3af90b0b03a7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230725"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
+ "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": "HL79999"
+ }
+ ],
+ "code": "OS",
+ "display": "order status"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "ORC.5",
+ "valueString": "CM"
+ },
+ {
+ "url": "ORC.6",
+ "valueString": "E"
+ },
+ {
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033"
+ }
+ },
+ {
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85"
+ }
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac"
+ }
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "111 Street St"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Street St"
+ ],
+ "city": "Streetsville",
+ "state": "ST"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "112 Street St"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "112 Street St"
+ ],
+ "city": "Streetsville",
+ "state": "ST"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "111 Road Rd"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Road Rd"
+ ],
+ "city": "Roadsville",
+ "state": "RD"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "112 Road Rd"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "112 Road Rd"
+ ],
+ "city": "Roadsville",
+ "state": "RD"
+ }
+ },
+ {
+ "url": "ORC.27",
+ "valueString": "20260404"
+ },
+ {
+ "url": "ORC.28",
+ "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": "HL70177"
+ }
+ ],
+ "code": "EMP",
+ "display": "Employee"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.30",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system",
+ "valueString": "HL70483"
+ }
+ ],
+ "code": "EL",
+ "display": "Electronic"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.31",
+ "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": "HL70000"
+ }
+ ],
+ "code": "UMM",
+ "display": "Universal Modifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.32",
+ "valueString": "20250403"
+ },
+ {
+ "url": "ORC.8",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Specimen12333454"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "Specimen12333"
+ }
+ },
+ {
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d"
+ }
+ },
+ {
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1"
+ }
+ },
+ {
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee"
+ }
+ },
+ {
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23"
+ }
+ },
+ {
+ "url": "ORC.13",
+ "valueReference": {
+ "reference": "Location/1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102"
+ }
+ },
+ {
+ "url": "ORC.15",
+ "valueString": "202101021000"
+ },
+ {
+ "url": "ORC.17",
+ "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": "HL79999"
+ }
+ ],
+ "code": "EO",
+ "display": "entering org text"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.18",
+ "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": "HL79999"
+ }
+ ],
+ "code": "ED",
+ "display": "entering device text"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Placer Identifier"
+ }
+ },
+ {
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Filler Identifier"
+ }
+ },
+ {
+ "url": "OBR.15.1",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "ID"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.2",
+ "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": "HL70371"
+ }
+ ],
+ "code": "BOUIN",
+ "display": "Bouin\u0027s solution"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.3",
+ "valueString": "Collection Method"
+ },
+ {
+ "url": "OBR.15.4",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "LN",
+ "display": "Left Naris"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.15.6",
+ "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": "HL7"
+ }
+ ],
+ "code": "CMMC",
+ "display": "Collection Method Modifer Code"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "BP"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "7595016"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "work"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "Internet"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "order.callback@email.com"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "email",
+ "value": "order.callback@email.com",
+ "use": "work"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "BP"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "7595016"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "work"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "Internet"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "order.callback2@email.com"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "email",
+ "value": "order.callback2@email.com",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "placer1"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "placer2"
+ },
+ {
+ "url": "OBR.20",
+ "valueString": "filler1"
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "filler2"
+ },
+ {
+ "url": "OBR.23",
+ "extension": [
+ {
+ "url": "moc-1-1-monetary-amount",
+ "valueString": "100"
+ },
+ {
+ "url": "moc-1-2-monetary-denomination",
+ "valueString": "$"
+ },
+ {
+ "url": "moc-2-charge-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "16",
+ "display": "code"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "OBR.24",
+ "valueId": "OTH"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "F"
+ },
+ {
+ "url": "OBR.26",
+ "extension": [
+ {
+ "url": "prl-1-parent-observation-identifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "444",
+ "display": "ParentId"
+ }
+ ]
+ }
+ },
+ {
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "888"
+ },
+ {
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ParentOBSdescriptor"
+ }
+ ]
+ },
+ {
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88"
+ }
+ },
+ {
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba"
+ }
+ },
+ {
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ }
+ },
+ {
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6"
+ }
+ },
+ {
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be"
+ }
+ },
+ {
+ "url": "OBR.36",
+ "valueString": "20230806123359-0500"
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2024-02-20",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240220"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.44",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "5019",
+ "display": "Procedure Code"
+ }
+ ]
+ }
+ },
+ {
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "887766",
+ "display": "Procedure Code Modifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "887766",
+ "display": "Procedure Code Modifier2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.48",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "71435",
+ "display": "Medically Necessary Duplicate Procedure"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.49",
+ "valueString": "N"
+ },
+ {
+ "url": "OBR.50",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "443331",
+ "display": "Parent Universal Service Identifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.53",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
+ }
+ ],
+ "value": "Alt"
+ }
+ },
+ {
+ "url": "OBR.53",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
+ }
+ ],
+ "value": "Alt"
+ }
+ },
+ {
+ "url": "OBR.54",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ }
+ },
+ {
+ "url": "OBR.9",
+ "valueQuantity": {
+ "value": 1771
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e"
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3"
+ }
+ },
+ {
+ "url": "OBR.11",
+ "valueString": "G"
+ },
+ {
+ "url": "OBR.12",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "512",
+ "display": "Danger code"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.13",
+ "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": "ISO"
+ }
+ ],
+ "code": "R",
+ "display": "relevent info"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.14",
+ "valueDateTime": "2021-02-02T10:00:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202102021000"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "Specimen123"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "Specimen12311"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "Specimen12322"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "Specimen12322"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "33"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "332"
+ }
+ ],
+ "status": "completed",
+ "intent": "order",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "123",
+ "display": "Universal service identifier"
+ }
+ ]
+ },
+ "orderDetail": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "7461",
+ "display": "Placer Supplemental"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "7461",
+ "display": "Placer Supplemental2"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "8811",
+ "display": "Fillter Supplemental"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "8811",
+ "display": "Fillter Supplemental2"
+ }
+ ]
+ }
+ ],
+ "subject": {
+ "reference": "Patient/1732560947048199000.d085d2f5-4893-4917-8034-26207f44daee"
+ },
+ "occurrenceDateTime": "2022-02-02T10:22:00Z",
+ "_occurrenceDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202202021022"
+ }
+ ]
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "123"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+123"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "email",
+ "value": "123"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "1234"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+1234"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "email",
+ "value": "1234"
+ }
+ }
+ ],
+ "reference": "PractitionerRole/1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb"
+ },
+ "locationCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70482"
+ }
+ ],
+ "code": "I",
+ "display": "Inpatient Order"
+ }
+ ]
+ }
+ ],
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "3216",
+ "display": "ReasonForStudy"
+ }
+ ]
+ },
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "3216",
+ "display": "ReasonForStudy2"
+ }
+ ]
+ }
+ ],
+ "supportingInfo": [
+ {
+ "reference": "Observation/1732560947435581000.24cfd8df-b5c0-4e26-8530-038f0d0f38bd"
+ },
+ {
+ "reference": "Observation/1732560947452762000.982e8dbf-6f70-46c9-9291-4bf159092ea8"
+ }
+ ],
+ "specimen": [
+ {
+ "reference": "Specimen/1732560947485272000.2de97c85-b7e1-4d34-89b3-5eb0281675c7"
+ },
+ {
+ "reference": "Specimen/1732560947490639000.76590a8f-5db7-4f30-8409-11147b0d050c"
+ },
+ {
+ "reference": "Specimen/1732560947469944000.d44f2361-3edc-4170-bea3-6af32fd4a247"
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230208"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230209"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Coded Request note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Note about the observation request"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "second"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "third"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "fourth"
+ }
+ ],
+ "time": "2023-02-07",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230207"
+ }
+ ]
+ },
+ "text": "Note about the observation request"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230205"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230206"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "More request notes"
+ }
+ ],
+ "time": "2023-02-04",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230204"
+ }
+ ]
+ },
+ "text": "More request notes"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.12Name"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "93"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.12Name"
+ ]
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "111 Road Rd"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Road Rd"
+ ],
+ "city": "Roadsville",
+ "state": "RD"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2.16.840.1.114222.8.7.6.5.4.1"
+ }
+ ],
+ "name": "STARLINKS.CDC.Stag",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "A"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560947494068000.23e06089-e5d2-4ce3-b999-2680e8d550ff"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "SPHL-000048"
+ }
+ ],
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory",
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "456"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+456"
+ }
+ ]
+ }
+ ],
+ "system": "email",
+ "value": "456"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "4567"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+4567"
+ }
+ ]
+ }
+ ],
+ "system": "email",
+ "value": "4567"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "111 Street St"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Street St"
+ ],
+ "city": "Streetsville",
+ "state": "ST"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947492831000.5cd7780b-0f2c-46ca-889f-0798fb775efb",
+ "practitioner": {
+ "reference": "Practitioner/1732560947493696000.0477e27d-b681-492e-b0a3-4df3af046aa0"
+ },
+ "organization": {
+ "reference": "Organization/1732560947495609000.878c2511-f6c3-4dac-a91f-ef40b67ea045"
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947499269000.5ec7bd2d-b46f-4ab5-b6f1-105e2a16a033",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.19Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "60"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.19Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947499740000.59d10b31-b2d0-4645-8bef-afeb200d6f85",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.19Name2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "60"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.19Name2"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2.16.840.1.114222.8.7.6.5.4.1"
+ }
+ ],
+ "name": "STARLINKS.CDC.Stag",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947500330000.8cdf6910-2555-4d7f-9e91-3df392f1eaac",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "A"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732560947500074000.bb6760cf-9dbe-4d9a-9f74-ea8bb96b5798"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "SPHL-000048"
+ }
+ ],
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560947500653000.31f4e156-e9ee-451b-be8a-2f507d69bfe8",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory part two"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947503002000.ee504390-2017-4f6f-a4f3-53b2fd73246d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.10Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "71"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.10Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947503448000.f7156834-3f5d-4a82-b7a1-98e183b07cf1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.10Name2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "71"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.10Name2"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947503902000.ed6d174d-d09e-41af-9395-2400535214ee",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.11Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "82"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.11Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947504312000.06c8aa90-edcb-468f-89e5-132d01a8b5c7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.11Name2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "82"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.11Name2"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947504759000.80007309-46b8-45c5-aca3-f060b9482d7a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.12Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "93"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.12Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947505412000.8534206a-3bee-45ba-93ea-4c0d68ae7d23",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.12Name2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "93"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.12Name2"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "12.12.12"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ },
+ "value": "enter location id"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947506294000.04f6861c-e932-41ec-888f-b700e45b7102",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "12.12.12"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ },
+ "value": "enter location id"
+ }
+ ],
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732560947506084000.5a892c5b-37ad-4002-bd47-8c6803d8464c"
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947509331000.0ab46a24-9916-4747-9fca-3a758c81028b",
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Ordering",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "JollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947509819000.f1cdce66-9637-48cd-8b16-10bab1f16e1d",
+ "identifier": [
+ {
+ "value": "2"
+ }
+ ],
+ "name": [
+ {
+ "family": "Ordering",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "JollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947512408000.783446c3-304f-4c9f-a460-d4e80fdb8c88",
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "result",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "NotSoJollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947512884000.d4774390-13b1-4d5b-8a3e-0347f57475ba",
+ "identifier": [
+ {
+ "value": "2"
+ }
+ ],
+ "name": [
+ {
+ "family": "results",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "NotSoJollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
+ {
+ "url": "CNN.3",
+ "valueString": "Results Interpreter"
+ },
+ {
+ "url": "CNN.4",
+ "valueString": "S"
+ },
+ {
+ "url": "CNN.5",
+ "valueString": "ESQ"
+ },
+ {
+ "url": "CNN.7",
+ "valueString": "MD"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "value": "123"
+ }
+ ],
+ "name": [
+ {
+ "family": "Assistant",
+ "given": [
+ "Results Interpreter",
+ "S"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "ESQ",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.16.840.1.113883.9.11"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870",
+ "identifier": [
+ {
+ "value": "Building 123"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016",
+ "identifier": [
+ {
+ "value": "Point of Care"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9",
+ "identifier": [
+ {
+ "value": "Floor A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c",
+ "identifier": [
+ {
+ "value": "Room 101"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8",
+ "identifier": [
+ {
+ "value": "Bed A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947520941000.f4eece44-f1da-4aca-be73-8ec35f36dab6",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ },
+ "practitioner": {
+ "reference": "Practitioner/1732560947513689000.989ab7fa-f0bb-4786-b727-a9becbfd1e60"
+ },
+ "location": [
+ {
+ "reference": "Location/1732560947514770000.899f4562-f9db-4c94-bb05-047c9b1e297c"
+ },
+ {
+ "reference": "Location/1732560947519778000.baa0c773-906b-48e3-8494-d317e4765870"
+ },
+ {
+ "reference": "Location/1732560947520130000.cbd13489-be1a-49b5-87fb-0674e5abb016"
+ },
+ {
+ "reference": "Location/1732560947520385000.002d6faf-8054-462d-b3c2-17cef5f937c9"
+ },
+ {
+ "reference": "Location/1732560947520622000.ec54c592-0fd8-4cc6-b472-bd37ae789d4c"
+ },
+ {
+ "reference": "Location/1732560947520860000.2766d69c-fb80-4b36-b28a-4974be18add8"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
+ {
+ "url": "CNN.3",
+ "valueString": "Results Interpreter"
+ },
+ {
+ "url": "CNN.4",
+ "valueString": "S"
+ },
+ {
+ "url": "CNN.5",
+ "valueString": "ESQ"
+ },
+ {
+ "url": "CNN.7",
+ "valueString": "MD"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "value": "123"
+ }
+ ],
+ "name": [
+ {
+ "family": "Assistant",
+ "given": [
+ "Results Interpreter",
+ "S"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "ESQ",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.16.840.1.113883.9.11"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27",
+ "identifier": [
+ {
+ "value": "Building 123"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24",
+ "identifier": [
+ {
+ "value": "Point of Care"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4",
+ "identifier": [
+ {
+ "value": "Floor A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d",
+ "identifier": [
+ {
+ "value": "Room 101"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4",
+ "identifier": [
+ {
+ "value": "Bed A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732560947523162000.7c84ee7b-bdc3-4795-a183-d2c5bec9e2be",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ },
+ "practitioner": {
+ "reference": "Practitioner/1732560947521580000.9330085d-9c64-4b23-898d-fc1bc316d586"
+ },
+ "location": [
+ {
+ "reference": "Location/1732560947521847000.75df0af0-f84c-4d5e-8e52-527efd517da2"
+ },
+ {
+ "reference": "Location/1732560947522072000.f6938ab7-8e59-4ee2-89d7-8c1661087a27"
+ },
+ {
+ "reference": "Location/1732560947522403000.efdd2a8b-bfa4-4dd5-83ae-c38648ec1d24"
+ },
+ {
+ "reference": "Location/1732560947522621000.8fe4d35a-e4c0-49af-8a26-b3d58e3e3da4"
+ },
+ {
+ "reference": "Location/1732560947522844000.32e18ce9-898d-4990-bdb6-eebb57cbf15d"
+ },
+ {
+ "reference": "Location/1732560947523077000.606ef017-d450-4f80-be05-3bffc19531e4"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947526641000.f9f859f3-9bf8-411e-8112-33b23d353c7e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560947527932000.3ca1d3ad-62cd-41ed-9062-5fad5b91e7c3",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Collectorx2",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD"
+ ]
+ }
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
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
new file mode 100644
index 00000000000..749a5f886cf
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/omlo21/oml_o21-full.hl7
@@ -0,0 +1,22 @@
+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
+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
+NK1|2|SUPERMAN&Prefix&Own&SpousePrefix&Spouse^GENARO^GR^JR^Sir^Md^L^I^CON&Context the namee&HL70448^2000&2030^G^20000501102531^2030501102531^Dr|OTH^Other^HL70063^OT^OTHER RELATIONSHIP^L|4861 20TH AVE^^THUNDER MOUNTAIN^IG^99999^USA^H|^PRN^PH^example2@exmaple.com^1^720^5553954^2^any^^^+1 720 555 3955|^WPN^PH^^1^555^4672293^^^^^+1 555 467 2294|F^Federal Agency^HL70131|20220501102531-0400|20230501102531-0400|||052479^^^^^^20160822|HospitalsRUs^^112233^^^^^^^HRU||N^Not Applicable^HL70001|19860505||||E^English^HL70296|||||||||||^WPN^PH^^1^720^5553954^^^^^+1 720 555 3955|4861 20TH AVE^#B^AURORA^IG^99999^USA^H^World^King^12^8^2017&2025^2020^2021|052479^^^^^^^20210428|||||||^VHN^SAT^^1^314^5553131^^^^^+1 314 555 3132|^AWN^FX^^1^281^5558181^^^^^+1 281 555 8182
+PV1|1|O|A&Point OF Care&C^1&Room&3^B&Bed&A^Hospital Assigned&2.4.4.4&ISO^^R^&Building^&Floor^Totally A Real Location^Comprehensive&&UID4This^AA&AssigningAUTH&ISO|R^Routine^HL70007|232323|^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD~1^BEETHOVEN2^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART~1^MOZARTJR|1^CHOPIN~1^CHOPINSR|URO^Urology Service^HL70069|^^^^^^^^Its Temporary|P^Passed^HL70087|R^Re-admission^HL70092|RL^Real Life^HL70023||VIP^Very Interesting Person^HL70099|1^BACH~1^BACHtheSecond|H^Human Patient^HL70018|22|||||||||||20020101|C^Collectors^HL70021|1|0|Y^Yes^HL70111|20080101|H^Happy^HL70112|^202305061200|F^Fed^HL70114|H^A Hospital Of Course^HL70115||A^Active^HL70117|^^^^^^^^Pending Location|^^^^^^^^Prior Location|20240801102531-0400|20240801102531-0400|100|199|142|130|alternate visit|A^Account Level^HL70326||Service Description|episode identifier
+PV2|^^^Hospital PriorPending&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID||1^AD||||413^V~423^X|20230601102531-0400|20230701102531-0400|5|12|Description|1^BEETHOVEN&VAN&Referral Source Code1&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^BEETHOVEN&VAN&Referral Source Code2&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||EMP_ILL||||||100^PublicCode|SEC|Org1^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~Org2^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||3^Elective^HL70217|20230501102531-0400|||20220501102531-0400|||||||||444^MODE||123^CARELEVEL1
+ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12311^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12322^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|CM|E||Specimen12333&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^Specimen12333454&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO|20230725|71^^ORC.10Name~71^^ORC.10Name2|82^^ORC.11Name~82^^ORC.11Name2|93^^ORC.12Name~93^^ORC.12Name2|12.12.12&enter location id&L|123^^^+123~1234^^^+1234|202101021000||EO^entering org text^HL79999|ED^entering device text^HL79999|60^^ORC.19Name~60^^ORC.19Name2||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048~CDPH, Viral and Rickettsial Disease Laboratory part two^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO|111 Street St^^Streetsville^ST~112 Street St^^Streetsville^ST|456^^^+456~4567^^^+4567|111 Road Rd^^Roadsville^RD~112 Road Rd^^Roadsville^RD|OS^order status^HL79999||20260404|EMP^Employee^HL70177|I^Inpatient Order^HL70482|EL^Electronic^HL70483|UMM^Universal Modifier^HL70000|20250403|33~332
+OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO|123^Universal service identifier||202202021022||20240220|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext~1^Collectorx2&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext|G|512^Danger code|R^relevent info^ISO|202102021000|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7|1^Ordering&VAN&Provider&VAL&JollyROGER~2^Ordering&VAN&Provider&VAL&JollyROGER|^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback@email.com~^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback2@email.com|placer1|placer2|filler1|filler2||100&$^16&code|OTH|F|444&ParentId^888^ParentOBSdescriptor||1^result&VAN&copiesto&VAL&NotSoJollyROGER~2^results&VAN&copiesto&VAL&NotSoJollyROGER|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2||3216^ReasonForStudy~3216^ReasonForStudy2||123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A~123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A|||20230806123359-0500|||4438^Collectors Comment~4438^Collectors Comment2|||||5019^Procedure Code|887766^Procedure Code Modifier~887766^Procedure Code Modifier2|7461^Placer Supplemental~7461^Placer Supplemental2|8811^Fillter Supplemental~8811^Fillter Supplemental2|71435^Medically Necessary Duplicate Procedure|N|443331^Parent Universal Service Identifier|||Alt^Placer Order~Alt^Placer Order2|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2
+NTE|1|L|Note about the observation request~second~third~fourth|||20230207|20230208|20230209|CC^Coded Request note
+NTE|2|L|More request notes|||20230204|20230205|20230206
+OBX|1|CWE|80383-2^Flu A^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip
+NTE|1|L|OBX Note|RE^Remark|Bob R.N.A.|20230211|20230212|20230213|CC^This is a coded comment for an observation note
+NTE|2|L|OBX Note 2|RE^Remark|Bob R.N.A.|20230211|20230212|20230213|CC^This is a coded comment for an observation note
+OBX|2|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you~UP^Up to you too|99|ST~SP|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen~2^France^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2~^Eye Test|Device 001^SPTRDEV-001^2.17.840^ISO~Device 002^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163~SE^Single Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip
+NTE|1|L|OBX Note 3|RE^Remark|Bob R.N.A.|20230221|20230222|20230223|CC^Th1is is a coded comment for an observation note
+NTE|2|L|OBX Note 4|RE^Remark|Bob R.N.A.|20230221|20230222|20230223|CC^This is a coded comment for an observation note
+SPM|1|380604-p&Any lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500555^SNOMEDTEXT^SCT^12333-0^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500022^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500111^SNOMEDTEXT^SCT^12311-1^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500022^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST~TEST2|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT~440500022^SNOMEDTEXT2|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500777^SNOMEDTEXT^SCT^1235-9^LOINCTEXT^LN^2.67
+SPM|2|380614-p&Another Lab USA-p&36D1332559-p&CLIA-p^380604-s&Any lab USA-s&36D1332559-s&CLIA-s||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|71836000^Nasopharyngeal structure (body structure)^SCT^^^^2020-09-01|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67~440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67|1||TEST|||20210604112500+0000^20210604112501+0000|20210604112506+0000|||440500007^SNOMEDTEXT|||440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67||2|440500007^SNOMEDTEXT^SCT^12345-6^LOINCTEXT^LN^2.67
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir
new file mode 100644
index 00000000000..92f82c88174
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.fhir
@@ -0,0 +1,821 @@
+{
+ "resourceType" : "Bundle",
+ "id" : "1731705729159039000.4fd21c7d-fb4e-407d-b9ce-e43350da7dab",
+ "meta" : {
+ "lastUpdated" : "2024-11-15T13:22:09.163-08:00"
+ },
+ "identifier" : {
+ "system" : "https://reportstream.cdc.gov/prime-router",
+ "value" : "20230816123358"
+ },
+ "type" : "message",
+ "timestamp" : "2023-08-16T10:33:58.000-07:00",
+ "entry" : [ {
+ "fullUrl" : "MessageHeader/1731705729192228000.484ff76f-9ac2-44d8-91f2-d8273517323c",
+ "resource" : {
+ "resourceType" : "MessageHeader",
+ "id" : "1731705729192228000.484ff76f-9ac2-44d8-91f2-d8273517323c",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension" : [ {
+ "url" : "MSH.7",
+ "valueString" : "20230816123358-0500"
+ } ]
+ } ],
+ "eventCoding" : {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code" : "O21",
+ "display" : "OML^O21^OML_O21"
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705729449940000.e7a7faf1-4db2-48c1-a189-5a5c14a1695c",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705729449940000.e7a7faf1-4db2-48c1-a189-5a5c14a1695c",
+ "recorded" : "2023-08-16T12:33:58-05:00",
+ "activity" : {
+ "coding" : [ {
+ "display" : "OML^O21^OML_O21"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705729460316000.fe0b7da3-445a-4bb0-bf46-8c58bfa23ef0",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705729460316000.fe0b7da3-445a-4bb0-bf46-8c58bfa23ef0",
+ "recorded" : "2024-11-15T13:22:09Z",
+ "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/1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Organization/1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1731705729459761000.1cd3ac17-48fd-4cc5-870e-6af3f5bdb692",
+ "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"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1731705729473432000.f4988058-da93-4525-af02-876b962131b6"
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705729473970000.63e88971-a979-4b24-a966-e750bc008853",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705729473970000.63e88971-a979-4b24-a966-e750bc008853",
+ "target" : [ {
+ "reference" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6"
+ } ],
+ "recorded" : "2024-11-15T13:22:09Z",
+ "activity" : {
+ "coding" : [ {
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Specimen/1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "OBR"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "ID"
+ } ]
+ },
+ "receivedTime" : "2024-02-20T09:00:00Z",
+ "_receivedTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "202402200900"
+ } ]
+ },
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37"
+ },
+ "collectedPeriod" : {
+ "start" : "2020-08-18T12:33:58-05:00",
+ "_start" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ },
+ "end" : "2020-08-19T12:33:58-05:00",
+ "_end" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ },
+ "quantity" : {
+ "value" : 1771
+ },
+ "bodySite" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70163"
+ } ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code" : "LN",
+ "display" : "Left Naris"
+ } ]
+ }
+ },
+ "container" : [ {
+ "additiveCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70371"
+ } ],
+ "code" : "BOUIN",
+ "display" : "Bouin's solution"
+ } ]
+ }
+ } ],
+ "condition" : [ {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL7"
+ } ],
+ "code" : "CMMC",
+ "display" : "Collection Method Modifer Code"
+ } ]
+ } ],
+ "note" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString" : "OBR.15.3"
+ } ],
+ "text" : "Collection Method"
+ }, {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4439",
+ "display" : "Collectors Comment"
+ } ]
+ }
+ } ],
+ "text" : "4439, Collectors Comment"
+ }, {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4438",
+ "display" : "Collectors Comment2"
+ } ]
+ }
+ } ],
+ "text" : "4438, Collectors Comment2"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705729488249000.304d3dee-4a14-4f81-b1e0-f6b8cab75b37",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "ServiceRequest/1731705729634480000.0a8fff9a-2428-4957-aa35-e353b47c95ce",
+ "resource" : {
+ "resourceType" : "ServiceRequest",
+ "id" : "1731705729634480000.0a8fff9a-2428-4957-aa35-e353b47c95ce",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode" : "RE"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.15.1",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "ID"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.2",
+ "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" : "HL70371"
+ } ],
+ "code" : "BOUIN",
+ "display" : "Bouin's solution"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.3",
+ "valueString" : "Collection Method"
+ }, {
+ "url" : "OBR.15.4",
+ "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" : "HL70163"
+ } ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code" : "LN",
+ "display" : "Left Naris"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.6",
+ "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" : "HL7"
+ } ],
+ "code" : "CMMC",
+ "display" : "Collection Method Modifer Code"
+ } ]
+ }
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2020-08-18T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.8",
+ "valueDateTime" : "2020-08-19T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4439",
+ "display" : "Collectors Comment"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4438",
+ "display" : "Collectors Comment2"
+ } ]
+ }
+ }, {
+ "url" : "OBR.9",
+ "valueQuantity" : {
+ "value" : 1771
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78"
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f"
+ }
+ }, {
+ "url" : "OBR.14",
+ "valueDateTime" : "2024-02-20T09:00:00Z",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "202402200900"
+ } ]
+ }
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "ORC.2"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "PLAC"
+ } ]
+ },
+ "value" : "Specimen123"
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1731705729473432000.f4988058-da93-4525-af02-876b962131b6"
+ },
+ "specimen" : [ {
+ "reference" : "Specimen/1731705729479638000.55b59895-2fcc-45a8-a24f-7e681c69a0fa"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705729630398000.8c5ada20-af75-43c7-8e65-59e69a500c78",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705729633447000.492f5c4f-9a16-47cf-8806-b3b5f0c1930f",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "RUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector2",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "RUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ } ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7
new file mode 100644
index 00000000000..a6b5101f2d8
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oml-obr-to-specimen.hl7
@@ -0,0 +1,4 @@
+MSH|^~\&|||||20230816123358-0500||OML^O21^OML_O21|20230816123358||2.5.1
+PID|1
+ORC|RE|Specimen123
+OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir
new file mode 100644
index 00000000000..8d4c683eff0
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.fhir
@@ -0,0 +1,228 @@
+{
+ "resourceType" : "Bundle",
+ "id" : "1727210895046302000.c01043d3-a2b8-4165-8144-3a89a21e51af",
+ "meta" : {
+ "lastUpdated" : "2024-09-24T13:48:15.051-07:00"
+ },
+ "identifier" : {
+ "system" : "https://reportstream.cdc.gov/prime-router",
+ "value" : "20230816123358"
+ },
+ "type" : "message",
+ "timestamp" : "2023-08-16T10:33:58.000-07:00",
+ "entry" : [ {
+ "fullUrl" : "MessageHeader/1727210895080407000.40c797c7-32d1-40c7-bed8-d6b80027825b",
+ "resource" : {
+ "resourceType" : "MessageHeader",
+ "id" : "1727210895080407000.40c797c7-32d1-40c7-bed8-d6b80027825b",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString" : "^~\\"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension" : [ {
+ "url" : "MSH.7",
+ "valueString" : "20230816123358-0500"
+ } ]
+ } ],
+ "eventCoding" : {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code" : "O21",
+ "display" : "OML^O21^OML_O21"
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1727210895309749000.363e82c1-2a17-4dac-a51a-bcfebaedfbc4",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727210895309749000.363e82c1-2a17-4dac-a51a-bcfebaedfbc4",
+ "recorded" : "2023-08-16T12:33:58-05:00",
+ "activity" : {
+ "coding" : [ {
+ "display" : "OML^O21^OML_O21"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1727210895317838000.2502e208-a7b7-4295-9285-d6b562b5f2cf",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727210895317838000.2502e208-a7b7-4295-9285-d6b562b5f2cf",
+ "recorded" : "2024-09-24T13:48:15Z",
+ "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/1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Organization/1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727210895317355000.6a6cbbc8-59f8-4d58-b882-b65c759b13e7",
+ "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"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5"
+ }
+ }, {
+ "fullUrl" : "Provenance/1727210895327024000.4fbda015-793f-40cc-a1e9-a1eb6a5daf3f",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727210895327024000.4fbda015-793f-40cc-a1e9-a1eb6a5daf3f",
+ "target" : [ {
+ "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5"
+ } ],
+ "recorded" : "2024-09-24T13:48:15Z",
+ "activity" : {
+ "coding" : [ {
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Observation/1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e",
+ "resource" : {
+ "resourceType" : "Observation",
+ "id" : "1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension" : [ {
+ "url" : "OBX.2",
+ "valueId" : "CWE"
+ }, {
+ "url" : "OBX.11",
+ "valueString" : "F"
+ } ]
+ } ],
+ "status" : "final",
+ "subject" : {
+ "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5"
+ },
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "display" : "Observation Value"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Specimen/1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "OBR"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Specimen/1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "SPM"
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "Placer Assigned Identifier"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString" : "SPM.2.1"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "PGN"
+ } ]
+ }
+ } ],
+ "collection" : {
+ "bodySite" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "display" : "Specimen Source Site"
+ } ]
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "ServiceRequest/1727210895444883000.cf6a4628-3c45-49be-b512-2746edc3c508",
+ "resource" : {
+ "resourceType" : "ServiceRequest",
+ "id" : "1727210895444883000.cf6a4628-3c45-49be-b512-2746edc3c508",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode" : "RE"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.2",
+ "valueIdentifier" : {
+ "value" : "Placer Identifier"
+ }
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "ORC.2"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "PLAC"
+ } ]
+ },
+ "value" : "ORC Placer Identifier"
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1727210895326568000.0cebae00-092c-4429-90d1-bbef9f505ed5"
+ },
+ "supportingInfo" : [ {
+ "reference" : "Observation/1727210895329920000.4cf57284-e02c-48cd-aab9-1deda683c63e"
+ } ],
+ "specimen" : [ {
+ "reference" : "Specimen/1727210895441860000.08158d26-3a5e-4015-a193-d6a193dc2567"
+ }, {
+ "reference" : "Specimen/1727210895439549000.0c149441-634a-4604-b88f-9ee78d57c4e4"
+ } ]
+ }
+ } ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7
new file mode 100644
index 00000000000..cbba0348297
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-OML-message.hl7
@@ -0,0 +1,6 @@
+MSH|^~\|||||20230816123358-0500||OML^O21^OML_O21|20230816123358||2.5.1
+PID|1
+ORC|RE|ORC Placer Identifier
+OBR|1|Placer Identifier
+OBX|1|CWE|||^Observation Value||||||F
+SPM|1|&Placer Assigned Identifier||||||^Specimen Source Site
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir
index d86386bb0fd..0f3ac0b578d 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr-populated.fhir
@@ -1,254 +1,530 @@
{
- "resourceType" : "Bundle",
- "id" : "1716961316041553000.f651ceb5-a4cf-41b2-8d4e-7a9fff910e55",
- "meta" : {
- "lastUpdated" : "2024-05-29T01:41:56.050-04:00"
+ "resourceType": "Bundle",
+ "id": "1731634216439480000.0d5e5606-84e1-416d-a4ef-b600540b7eec",
+ "meta": {
+ "lastUpdated": "2024-11-14T17:30:16.443-08:00"
},
- "identifier" : {
- "system" : "https://reportstream.cdc.gov/prime-router",
- "value" : "20230816123358"
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "20230816123358"
},
- "type" : "message",
- "timestamp" : "2023-08-16T13:33:58.000-04:00",
- "entry" : [
+ "type": "message",
+ "timestamp": "2023-08-16T10:33:58.000-07:00",
+ "entry": [
{
- "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "resource" : {
- "resourceType" : "MessageHeader",
- "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
- "valueString" : "^~\\\u0026#"
+ "fullUrl": "MessageHeader/1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString": "^~\\\u0026#"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension": [
{
- "url" : "MSH.7",
- "valueString" : "20230816123358-0500"
+ "url": "MSH.7",
+ "valueString": "20230816123358-0500"
}
]
}
],
- "eventCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "R01",
- "display" : "ORU^R01^ORU_R01"
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "R01",
+ "display": "ORU^R01^ORU_R01"
}
}
},
{
- "fullUrl" : "Provenance/1716961316634102000.d0168ca6-dc1a-4013-a71a-daa363d61cf9",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961316634102000.d0168ca6-dc1a-4013-a71a-daa363d61cf9",
- "target" : [
+ "fullUrl": "Provenance/1731634216718799000.c4ec1acf-355b-44b6-92e2-6418ce78bf86",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634216718799000.c4ec1acf-355b-44b6-92e2-6418ce78bf86",
+ "target": [
{
- "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435"
+ "reference": "MessageHeader/1731634216472574000.7a065ed2-ded0-416c-b378-a498ea6ae207"
},
{
- "reference" : "DiagnosticReport/1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72"
+ "reference": "DiagnosticReport/1731634216918992000.14669936-2835-442a-a340-d22038472fac"
}
],
- "recorded" : "2023-08-16T12:33:58-05:00",
- "activity" : {
- "coding" : [
+ "recorded": "2023-08-16T12:33:58-05:00",
+ "activity": {
+ "coding": [
{
- "display" : "ORU^R01^ORU_R01"
+ "display": "ORU^R01^ORU_R01"
}
]
}
}
},
{
- "fullUrl" : "Provenance/1716961316642461000.6cfbcf79-72d3-4bf9-a69d-aae85869cff5",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961316642461000.6cfbcf79-72d3-4bf9-a69d-aae85869cff5",
- "recorded" : "2024-05-29T01:41:56Z",
- "policy" : [
+ "fullUrl": "Provenance/1731634216724833000.565c3f16-9225-406b-bcb9-6c0b0a51cab9",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634216724833000.565c3f16-9225-406b-bcb9-6c0b0a51cab9",
+ "recorded": "2024-11-14T17:30:16Z",
+ "policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
- "activity" : {
- "coding" : [
+ "activity": {
+ "coding": [
{
- "code" : "v2-FHIR transformation"
+ "code": "v2-FHIR transformation"
}
]
},
- "agent" : [
+ "agent": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "assembler"
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "assembler"
}
]
},
- "who" : {
- "reference" : "Organization/1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9"
+ "who": {
+ "reference": "Organization/1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e"
}
}
]
}
},
{
- "fullUrl" : "Organization/1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716961316641855000.ebbfbdce-2d6d-4ab0-ad32-f73ad0f8d4c9",
- "identifier" : [
+ "fullUrl": "Organization/1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634216724400000.152de53c-0625-4e92-811d-49aa2dfd7a6e",
+ "identifier": [
{
- "value" : "CDC PRIME - Atlanta"
+ "value": "CDC PRIME - Atlanta"
},
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.114222.4.1.237821"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.114222.4.1.237821"
}
]
}
},
{
- "fullUrl" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603",
- "resource" : {
- "resourceType" : "Patient",
- "id" : "1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603"
+ "fullUrl": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9"
}
},
{
- "fullUrl" : "Provenance/1716961316659013000.35706f3b-3486-41a8-be32-329480dc4a88",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961316659013000.35706f3b-3486-41a8-be32-329480dc4a88",
- "target" : [
+ "fullUrl": "Provenance/1731634216736199000.5a89e2a4-1e6a-4cc1-9a6b-74078ebea5a0",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634216736199000.5a89e2a4-1e6a-4cc1-9a6b-74078ebea5a0",
+ "target": [
{
- "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603"
+ "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9"
}
],
- "recorded" : "2024-05-29T01:41:56Z",
- "activity" : {
- "coding" : [
+ "recorded": "2024-11-14T17:30:16Z",
+ "activity": {
+ "coding": [
{
- "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
- "code" : "UPDATE"
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
}
]
}
}
},
{
- "fullUrl" : "Specimen/1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
+ "fullUrl": "Specimen/1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
}
],
- "note" : [
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c"
+ },
+ "collectedPeriod": {
+ "start": "2023-08-16T12:33:58-05:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
+ }
+ ]
+ },
+ "end": "2023-09-16T12:33:58-05:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
+ }
+ ]
+ }
+ }
+ },
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment"
+ "code": "4438",
+ "display": "Collectors Comment"
}
]
}
}
],
- "text" : "4438, Collectors Comment"
+ "text": "4438, Collectors Comment"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment2"
+ "code": "4438",
+ "display": "Collectors Comment2"
}
]
}
}
],
- "text" : "4438, Collectors Comment2"
+ "text": "4438, Collectors Comment2"
}
]
}
},
{
- "fullUrl" : "ServiceRequest/1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216745250000.bce49621-be5b-43c8-ba98-5f5a86320a7c",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "placer1"
+ },
{
- "url" : "OBR.20",
- "valueString" : "filler1"
+ "url": "OBR.19",
+ "valueString": "placer2"
},
{
- "url" : "OBR.21",
- "valueString" : "filler2"
+ "url": "OBR.20",
+ "valueString": "filler1"
},
{
- "url" : "OBR.22",
- "valueString" : "20230816123358-0500"
+ "url": "OBR.7",
+ "valueDateTime": "2023-08-16T12:33:58-05:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2023-09-16T12:33:58-05:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "filler2"
},
{
- "url" : "OBR.23",
- "extension" : [
+ "url": "OBR.22",
+ "valueString": "20230816123358-0500"
+ },
+ {
+ "url": "OBR.23",
+ "extension": [
{
- "url" : "moc-1-1-monetary-amount",
- "valueString" : "100"
+ "url": "moc-1-1-monetary-amount",
+ "valueString": "100"
},
{
- "url" : "moc-1-2-monetary-denomination",
- "valueString" : "$"
+ "url": "moc-1-2-monetary-denomination",
+ "valueString": "$"
},
{
- "url" : "moc-2-charge-code",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "moc-2-charge-code",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "16",
- "display" : "code"
+ "code": "16",
+ "display": "code"
}
]
}
@@ -256,686 +532,666 @@
]
},
{
- "url" : "OBR.24",
- "valueId" : "OTH"
+ "url": "OBR.24",
+ "valueId": "OTH"
},
{
- "url" : "OBR.25",
- "valueId" : "F"
+ "url": "OBR.25",
+ "valueId": "F"
},
{
- "url" : "OBR.26",
- "extension" : [
+ "url": "OBR.26",
+ "extension": [
{
- "url" : "prl-1-parent-observation-identifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "prl-1-parent-observation-identifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "444",
- "display" : "ParentId"
+ "code": "444",
+ "display": "ParentId"
}
]
}
},
{
- "url" : "prl-2-parent-observation-sub-identifier",
- "valueString" : "888"
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "888"
},
{
- "url" : "prl-3-parent-observation-descriptor",
- "valueString" : "ParentOBSdescriptor"
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ParentOBSdescriptor"
}
]
},
{
- "url" : "OBR.28",
- "valueReference" : {
- "reference" : "Practitioner/1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef"
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906"
}
},
{
- "url" : "OBR.28",
- "valueReference" : {
- "reference" : "Practitioner/1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b"
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53"
}
},
{
- "url" : "OBR.29",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "11D1111111"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Other CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "22D2222222"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
- }
- },
- {
- "url" : "OBR.33",
- "valueReference" : {
- "reference" : "PractitionerRole/1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb"
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
}
},
{
- "url" : "OBR.33",
- "valueReference" : {
- "reference" : "PractitionerRole/1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3"
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4"
}
},
{
- "url" : "OBR.36",
- "valueString" : "20230816123358-0500"
- },
- {
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234"
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e"
}
},
{
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba"
- }
+ "url": "OBR.36",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "OBR.39",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment"
+ "code": "4438",
+ "display": "Collectors Comment"
}
]
}
},
{
- "url" : "OBR.39",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment2"
+ "code": "4438",
+ "display": "Collectors Comment2"
}
]
}
},
{
- "url" : "OBR.44",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.44",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "5019",
- "display" : "Procedure Code"
+ "code": "5019",
+ "display": "Procedure Code"
}
]
}
},
{
- "url" : "obr-45-procedure-code-modifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "887766",
- "display" : "Procedure Code Modifier"
+ "code": "887766",
+ "display": "Procedure Code Modifier"
}
]
}
},
{
- "url" : "obr-45-procedure-code-modifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "887766",
- "display" : "Procedure Code Modifier2"
+ "code": "887766",
+ "display": "Procedure Code Modifier2"
}
]
}
},
{
- "url" : "OBR.48",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.48",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "71435",
- "display" : "Medically Necessary Duplicate Procedure"
+ "code": "71435",
+ "display": "Medically Necessary Duplicate Procedure"
}
]
}
},
{
- "url" : "OBR.49",
- "valueString" : "N"
+ "url": "OBR.49",
+ "valueString": "N"
},
{
- "url" : "OBR.50",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.50",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "443331",
- "display" : "Parent Universal Service Identifier"
+ "code": "443331",
+ "display": "Parent Universal Service Identifier"
}
]
}
},
{
- "url" : "OBR.54",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.54",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "11D1111111"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Other CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "22D2222222"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f"
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c"
}
},
{
- "url" : "OBR.11",
- "valueString" : "G"
+ "url": "OBR.11",
+ "valueString": "G"
},
{
- "url" : "OBR.12",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.12",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "512",
- "display" : "Danger code"
+ "code": "512",
+ "display": "Danger code"
}
]
}
},
{
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "relevent info"
+ "code": "relevent info"
}
]
}
- },
- {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7"
- }
- },
- {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777"
- }
- },
- {
- "url" : "OBR.18",
- "valueString" : "placer1"
- },
- {
- "url" : "OBR.19",
- "valueString" : "placer2"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.3"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.53"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Alt"
+ "value": "Alt"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order2"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.53"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Alt"
+ "value": "Alt"
}
],
- "status" : "unknown",
- "intent" : "order",
- "code" : {
- "coding" : [
+ "status": "unknown",
+ "intent": "order",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Universal service identifier"
+ "code": "123",
+ "display": "Universal service identifier"
}
]
},
- "orderDetail" : [
+ "orderDetail": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.46"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "7461",
- "display" : "Placer Supplemental"
+ "code": "7461",
+ "display": "Placer Supplemental"
}
]
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.46"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "7461",
- "display" : "Placer Supplemental2"
+ "code": "7461",
+ "display": "Placer Supplemental2"
}
]
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.47"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "8811",
- "display" : "Fillter Supplemental"
+ "code": "8811",
+ "display": "Fillter Supplemental"
}
]
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.47"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "8811",
- "display" : "Fillter Supplemental2"
+ "code": "8811",
+ "display": "Fillter Supplemental2"
}
]
}
],
- "subject" : {
- "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603"
+ "subject": {
+ "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9"
},
- "requester" : {
- "extension" : [
+ "requester": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "WPN"
+ "url": "XTN.2",
+ "valueString": "WPN"
},
{
- "url" : "XTN.3",
- "valueString" : "BP"
+ "url": "XTN.3",
+ "valueString": "BP"
},
{
- "url" : "XTN.7",
- "valueString" : "7595016"
+ "url": "XTN.7",
+ "valueString": "7595016"
},
{
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
}
],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "work"
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "work"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "WPN"
+ "url": "XTN.2",
+ "valueString": "WPN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "order.callback@email.com"
+ "url": "XTN.4",
+ "valueString": "order.callback@email.com"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
}
],
- "system" : "email",
- "value" : "order.callback@email.com",
- "use" : "work"
+ "system": "email",
+ "value": "order.callback@email.com",
+ "use": "work"
}
}
],
- "reference" : "Practitioner/1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c"
+ "reference": "Practitioner/1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf"
},
- "reasonCode" : [
+ "reasonCode": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "3216",
- "display" : "ReasonForStudy"
+ "code": "3216",
+ "display": "ReasonForStudy"
}
]
},
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "3216",
- "display" : "ReasonForStudy2"
+ "code": "3216",
+ "display": "ReasonForStudy2"
}
]
}
@@ -943,793 +1199,1207 @@
}
},
{
- "fullUrl" : "Practitioner/1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316826226000.7f3e759a-e861-4188-8120-0636ffba0c6c",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216859616000.39763edc-e258-4f7a-8365-bbbfd2ae1adf",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.16"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.16"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "Ordering",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Ordering",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Provider"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316835983000.61e70b77-5ee6-4d95-8b7d-9c4b3125fcef",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216865391000.b34c86c9-6d5c-4ce5-bf84-e862f1380b22",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "result",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Ordering",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "copiesto"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316838839000.5be961a2-d98a-4eb3-9d46-3537f7033b7b",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216867480000.1870d114-caca-4744-b37c-921de9b3b358",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "result2",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Ordering2",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "copiesto2"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216870163000.2f2043b5-a751-41a2-a427-eb798f9f6906",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Results Interpreter"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
- },
- {
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
- }
- ],
- "identifier" : [
+ },
{
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "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": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
- ],
- "value" : "123"
- }
- ],
- "name" : [
- {
- "family" : "Assistant",
- "given" : [
- "Results Interpreter",
- "S"
- ],
- "prefix" : [
- "DR"
- ],
- "suffix" : [
- "ESQ",
- "MD"
]
}
- ]
- }
- },
- {
- "fullUrl" : "Location/1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2",
- "identifier" : [
+ ],
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
- }
- ],
- "value" : "Hospital A"
- },
- {
- "extension" : [
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "DL"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
- {
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
- }
- ]
- }
- }
- },
- {
- "fullUrl" : "Location/1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475",
- "identifier" : [
+ "name": [
{
- "value" : "Building 123"
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "result",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216871745000.382fe363-1304-4a29-99a6-b8759807ae53",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "result2",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto2"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "RUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
+ {
+ "url": "CNN.3",
+ "valueString": "Results Interpreter"
+ },
+ {
+ "url": "CNN.4",
+ "valueString": "S"
+ },
+ {
+ "url": "CNN.5",
+ "valueString": "ESQ"
+ },
+ {
+ "url": "CNN.7",
+ "valueString": "MD"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "value": "123"
+ }
+ ],
+ "name": [
+ {
+ "family": "Assistant",
+ "given": [
+ "Results Interpreter",
+ "S"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "ESQ",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.16.840.1.113883.9.11"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469",
+ "identifier": [
+ {
+ "value": "Building 123"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570",
- "identifier" : [
+ "fullUrl": "Location/1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -1739,184 +2409,184 @@
}
},
{
- "fullUrl" : "Location/1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c",
- "identifier" : [
+ "fullUrl": "Location/1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800",
- "identifier" : [
+ "fullUrl": "Location/1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3",
- "identifier" : [
+ "fullUrl": "Location/1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316848195000.52ecbb4d-0b38-4f86-bddb-4ac6f8f685fb",
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "fullUrl": "PractitionerRole/1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216882657000.399c904e-f440-4e8d-8319-fceea2fac4e4",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316840858000.d42a6255-b057-43a0-aa20-3979bb06fcdc"
+ "practitioner": {
+ "reference": "Practitioner/1731634216872803000.22b1404a-9b06-4228-8975-d9fcbbba1d01"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316841920000.0902b564-061b-46c8-b974-f3896025cae2"
+ "reference": "Location/1731634216873399000.315b3f51-fd6a-4ecd-82ac-3e51f85fcfa2"
},
{
- "reference" : "Location/1716961316846131000.b9e3369c-e070-426e-804b-dc85ea96a475"
+ "reference": "Location/1731634216881535000.8cff0fe8-63e6-4e16-b9af-03f1e255d469"
},
{
- "reference" : "Location/1716961316846661000.31fc04d2-5684-4ce3-9e20-bf5fe8582570"
+ "reference": "Location/1731634216881834000.4217e0a2-281a-4a09-bd3f-c339731b2aab"
},
{
- "reference" : "Location/1716961316847073000.eb192e7b-002b-45f0-88b9-d66002e5fc7c"
+ "reference": "Location/1731634216882114000.9a10ee6a-c285-4640-b62b-511041f642c5"
},
{
- "reference" : "Location/1716961316847471000.e9113f4b-fbbe-4cc5-995d-67dfdbfea800"
+ "reference": "Location/1731634216882334000.7f7a00dc-6ecc-4df1-98fc-df2a840eef00"
},
{
- "reference" : "Location/1716961316847984000.7adbaea7-6f33-4c5f-889d-d88233fa42d3"
+ "reference": "Location/1731634216882568000.8646f815-ee4b-4746-813b-ffe5be04bf68"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Results Interpreter2"
+ "url": "CNN.3",
+ "valueString": "Results Interpreter2"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "Assistant2",
- "given" : [
+ "family": "Assistant2",
+ "given": [
"Results Interpreter2",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -1925,98 +2595,98 @@
}
},
{
- "fullUrl" : "Location/1716961316849932000.ce853911-392d-40f3-927f-8990204295e9",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316849932000.ce853911-392d-40f3-927f-8990204295e9",
- "identifier" : [
+ "fullUrl": "Location/1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071",
- "identifier" : [
+ "fullUrl": "Location/1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9",
- "identifier" : [
+ "fullUrl": "Location/1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -2026,1176 +2696,762 @@
}
},
{
- "fullUrl" : "Location/1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab",
- "identifier" : [
+ "fullUrl": "Location/1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256",
- "identifier" : [
+ "fullUrl": "Location/1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7",
- "identifier" : [
+ "fullUrl": "Location/1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316852060000.77701d25-aecf-4bf8-9f67-7180a7ededc3",
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "fullUrl": "PractitionerRole/1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216885373000.011254cf-3a85-43cb-aee3-18763979a19e",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316849391000.f122c3fc-927e-41bc-8d93-f9e6a479d1ab"
+ "practitioner": {
+ "reference": "Practitioner/1731634216883845000.eec612e1-7d40-41d6-bdc4-2936a13d4d46"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316849932000.ce853911-392d-40f3-927f-8990204295e9"
+ "reference": "Location/1731634216884124000.13e65ee4-45ff-4b2d-85ac-b41fe22d2872"
},
{
- "reference" : "Location/1716961316850302000.ae272ee4-1c0e-4d1e-9129-9fdd79a10071"
+ "reference": "Location/1731634216884347000.67c3e525-d38f-413c-b107-50e164ac67ec"
},
{
- "reference" : "Location/1716961316850715000.c589b01a-637e-49e2-a0de-163664316cd9"
+ "reference": "Location/1731634216884669000.c2727fb9-9f75-4fe6-a3e1-bed98bb939a8"
},
{
- "reference" : "Location/1716961316851089000.45ba91cf-4666-4713-8f91-0c21210b6aab"
- },
- {
- "reference" : "Location/1716961316851462000.3f752bed-db77-484c-bf61-45a99f1c0256"
- },
- {
- "reference" : "Location/1716961316851919000.4843786c-a6ff-477e-aa91-3a76fe9745d7"
- }
- ]
- }
- },
- {
- "fullUrl" : "Practitioner/1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316856284000.d716624b-ac2b-494a-a36a-85beb8f20234",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- }
- ]
+ "reference": "Location/1731634216884897000.cc52dd4a-b24c-4643-afb3-d104d7cfe7a0"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
- {
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
- },
- {
- "url" : "XCN.4",
- "valueString" : "B"
- },
- {
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
- },
- {
- "url" : "XCN.21",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignJ"
- }
- ]
- }
- },
- {
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignA"
- }
- ]
- }
- },
- {
- "url" : "XCN.5",
- "valueString" : "2ND"
- },
- {
- "url" : "XCN.7",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "SRC"
- }
- ]
- }
- },
- {
- "url" : "XCN.10",
- "valueString" : "B"
- },
- {
- "url" : "XCN.15",
- "valueString" : "A"
- },
- {
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "NameContext"
- }
- ]
- }
- },
- {
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
- }
- ]
- }
- ],
- "identifier" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
- }
- ],
- "type" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- }
- ],
- "code" : "DL"
- }
- ]
- },
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
- }
- ],
- "name" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
- }
- ],
- "use" : "official",
- "family" : "Collector",
- "_family" : {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Identifier"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
- }
- ]
- },
- "given" : [
- "LUDWIG",
- "B"
- ],
- "prefix" : [
- "DR"
- ],
- "suffix" : [
- "2ND",
- "MD",
- "MD"
- ],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
- }
- }
- ]
- }
- },
- {
- "fullUrl" : "Practitioner/1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316859495000.a5f31f5c-e07d-40c2-ab54-82a9b9a9a6ba",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- }
- ]
+ "reference": "Location/1731634216885085000.fb6da7d3-611c-4ec8-890e-1ba42a55d801"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
- {
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
- },
- {
- "url" : "XCN.4",
- "valueString" : "B"
- },
- {
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
- },
- {
- "url" : "XCN.21",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignJ"
- }
- ]
- }
- },
- {
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignA"
- }
- ]
- }
- },
- {
- "url" : "XCN.5",
- "valueString" : "2ND"
- },
- {
- "url" : "XCN.7",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "SRC"
- }
- ]
- }
- },
- {
- "url" : "XCN.10",
- "valueString" : "B"
- },
- {
- "url" : "XCN.15",
- "valueString" : "A"
- },
- {
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "NameContext"
- }
- ]
- }
- },
- {
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
- }
- ]
- }
- ],
- "identifier" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
- }
- ],
- "type" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- }
- ],
- "code" : "DL"
- }
- ]
- },
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
- }
- ],
- "name" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
- }
- ],
- "use" : "official",
- "family" : "Collector2",
- "_family" : {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Identifier"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
- }
- ]
- },
- "given" : [
- "RUDWIG",
- "B"
- ],
- "prefix" : [
- "DR"
- ],
- "suffix" : [
- "2ND",
- "MD",
- "MD"
- ],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
- }
+ "reference": "Location/1731634216885288000.25a6ee89-387f-48ee-813b-b392578a6b50"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316864393000.44a3d48e-29bf-44d1-9fee-fd28faef1ae7",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216888402000.424eebbf-d4a4-4ecb-b0e3-e0d57e1c147f",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "Ordering",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Provider"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316867088000.d668f3b5-0eac-491b-a2f0-95b0a505f777",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216891644000.2643243f-3772-4eea-8867-5247ac91f67c",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "Ordering2",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Collector2",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Provider"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "DiagnosticReport/1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1716961316896240000.39e01eaf-410c-42f1-acea-7a1f2ecdcb72",
- "identifier" : [
+ "fullUrl": "DiagnosticReport/1731634216918992000.14669936-2835-442a-a340-d22038472fac",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1731634216918992000.14669936-2835-442a-a340-d22038472fac",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
}
],
- "basedOn" : [
+ "basedOn": [
{
- "reference" : "ServiceRequest/1716961316869011000.096b7105-6f01-44d4-b57c-ca2e7dfe9cfc"
+ "reference": "ServiceRequest/1731634216893698000.d34c7a39-38d3-4d7b-8d00-2aca01e58340"
}
],
- "status" : "final",
- "category" : [
+ "status": "final",
+ "category": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "OTH"
+ "code": "OTH"
}
]
}
],
- "code" : {
- "coding" : [
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Universal service identifier"
+ "code": "123",
+ "display": "Universal service identifier"
}
]
},
- "subject" : {
- "reference" : "Patient/1716961316658286000.c73c5602-3fdb-47b3-94fe-c9b8ac401603"
+ "subject": {
+ "reference": "Patient/1731634216735708000.65f4c3d6-7543-4945-bbda-063e0647aef9"
},
- "effectivePeriod" : {
- "start" : "2023-08-16T12:33:58-05:00",
- "_start" : {
- "extension" : [
+ "effectivePeriod": {
+ "start": "2023-08-16T12:33:58-05:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230816123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
}
]
},
- "end" : "2023-09-16T12:33:58-05:00",
- "_end" : {
- "extension" : [
+ "end": "2023-09-16T12:33:58-05:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230916123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
}
]
}
},
- "issued" : "2023-08-16T12:33:58-05:00",
- "_issued" : {
- "extension" : [
+ "issued": "2023-08-16T12:33:58-05:00",
+ "_issued": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230816123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
}
]
},
- "performer" : [
+ "performer": [
{
- "reference" : "PractitionerRole/1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28"
+ "reference": "PractitionerRole/1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2"
},
{
- "reference" : "PractitionerRole/1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057"
+ "reference": "PractitionerRole/1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a"
},
{
- "reference" : "PractitionerRole/1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44"
+ "reference": "PractitionerRole/1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac"
},
{
- "reference" : "PractitionerRole/1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d"
+ "reference": "PractitionerRole/1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4"
}
],
- "resultsInterpreter" : [
+ "resultsInterpreter": [
{
- "reference" : "PractitionerRole/1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509"
+ "reference": "PractitionerRole/1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce"
}
],
- "specimen" : [
+ "specimen": [
{
- "reference" : "Specimen/1716961316664583000.67c0f8d7-f9f0-47ea-97a4-6d6501f0a9db"
+ "reference": "Specimen/1731634216738434000.20a42533-27b1-4fdf-a8d7-c16a1b496ec5"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Interpreter"
+ "url": "CNN.3",
+ "valueString": "Interpreter"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "Results",
- "given" : [
+ "family": "Results",
+ "given": [
"Interpreter",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -3204,98 +3460,98 @@
}
},
{
- "fullUrl" : "Location/1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b",
- "identifier" : [
+ "fullUrl": "Location/1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4",
- "identifier" : [
+ "fullUrl": "Location/1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea",
- "identifier" : [
+ "fullUrl": "Location/1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -3305,184 +3561,184 @@
}
},
{
- "fullUrl" : "Location/1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d",
- "identifier" : [
+ "fullUrl": "Location/1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6",
- "identifier" : [
+ "fullUrl": "Location/1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd",
- "identifier" : [
+ "fullUrl": "Location/1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316886611000.9587d863-55f5-45fb-9c24-3eff2629c509",
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "fullUrl": "PractitionerRole/1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216911757000.fcb919c6-76c4-449f-8b71-328115bcb4ce",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316884720000.09ce0cff-f037-48b1-a0c4-ec0d7f139953"
+ "practitioner": {
+ "reference": "Practitioner/1731634216910192000.0ac59756-2f5b-457d-8993-615d3cef90d6"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316885079000.a6e932b2-dfaa-46f9-9a45-3bf19864d90b"
+ "reference": "Location/1731634216910501000.5f6a421b-2d4f-4b19-adc3-5d25b3dedecb"
},
{
- "reference" : "Location/1716961316885392000.2f7ce8fe-8c6a-4527-ad84-0d131afc28e4"
+ "reference": "Location/1731634216910762000.693297cb-cc31-41a1-afa5-0173137258c0"
},
{
- "reference" : "Location/1716961316885686000.37cc3ff1-3fe7-44bc-b090-4b20925d4dea"
+ "reference": "Location/1731634216911022000.a43f1674-82f0-4c61-b275-a7ffe3f8558b"
},
{
- "reference" : "Location/1716961316885968000.56af31eb-3e6a-4f3c-b71d-6fefbff94e1d"
+ "reference": "Location/1731634216911238000.948bf6f4-1d19-4427-bed6-ccd3bb8a41c4"
},
{
- "reference" : "Location/1716961316886264000.c435e87b-e7da-4fb1-a47e-8e21783945d6"
+ "reference": "Location/1731634216911448000.41e045ee-6edb-44cf-bf67-465000ec4c26"
},
{
- "reference" : "Location/1716961316886513000.498b806b-a06b-4c64-8c33-14ae04978ebd"
+ "reference": "Location/1731634216911663000.ca8896e4-8131-479f-b154-7ee8bd7f47f8"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Transcriptionist"
+ "url": "CNN.3",
+ "valueString": "Transcriptionist"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Transcriptionist",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -3491,98 +3747,98 @@
}
},
{
- "fullUrl" : "Location/1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e",
- "identifier" : [
+ "fullUrl": "Location/1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b",
- "identifier" : [
+ "fullUrl": "Location/1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84",
- "identifier" : [
+ "fullUrl": "Location/1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -3592,197 +3848,197 @@
}
},
{
- "fullUrl" : "Location/1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083",
- "identifier" : [
+ "fullUrl": "Location/1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa",
- "identifier" : [
+ "fullUrl": "Location/1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8",
- "identifier" : [
+ "fullUrl": "Location/1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316889003000.8c6a0818-2f4b-4970-afe0-4e9b0bc31b28",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216913760000.a10a5353-8535-4b72-a927-48d4c6eb9ee2",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "TRANS"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "TRANS"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316887253000.5370e416-2c60-45fd-ad03-e22e8582ee9f"
+ "practitioner": {
+ "reference": "Practitioner/1731634216912328000.630e4a0f-bc26-45e5-89ab-5bbbb0b1f3f4"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316887541000.1e03464d-4df0-40f0-a4a8-3e1610ee047e"
+ "reference": "Location/1731634216912566000.69e67b33-a25a-4271-bec7-a1e180f8417d"
},
{
- "reference" : "Location/1716961316887818000.4e91de2b-d037-43da-848b-10a9257dc04b"
+ "reference": "Location/1731634216912890000.3268f9ef-e389-4770-b909-53aedbe0b7dd"
},
{
- "reference" : "Location/1716961316888113000.34ae2922-a3d0-4284-a8ac-3cd963df8a84"
+ "reference": "Location/1731634216913104000.c1715aaa-71b3-4739-ba04-a42fc7ec42b9"
},
{
- "reference" : "Location/1716961316888385000.6abd500c-d73b-4e6d-8318-082f68c74083"
+ "reference": "Location/1731634216913289000.8874712e-cfc1-4e3e-90b0-1ba9928e00b0"
},
{
- "reference" : "Location/1716961316888647000.51da44b3-5047-4132-b6b2-911bb72e88aa"
+ "reference": "Location/1731634216913477000.45e4aa07-0a97-407b-8c59-56857be563c9"
},
{
- "reference" : "Location/1716961316888894000.b2dc3c57-482c-4a46-a4cf-7e9cca19ead8"
+ "reference": "Location/1731634216913677000.dc97c195-5faa-4dc3-9f56-dc39c55cd00a"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Transcriptionist2"
+ "url": "CNN.3",
+ "valueString": "Transcriptionist2"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Transcriptionist2",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -3791,98 +4047,98 @@
}
},
{
- "fullUrl" : "Location/1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781",
- "identifier" : [
+ "fullUrl": "Location/1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f",
- "identifier" : [
+ "fullUrl": "Location/1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f",
- "identifier" : [
+ "fullUrl": "Location/1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -3892,197 +4148,197 @@
}
},
{
- "fullUrl" : "Location/1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a",
- "identifier" : [
+ "fullUrl": "Location/1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e",
- "identifier" : [
+ "fullUrl": "Location/1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58",
- "identifier" : [
+ "fullUrl": "Location/1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316891280000.e04fb1d7-4372-4f6d-8120-f73ac5019057",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216915447000.9ce175ad-1c17-4e94-8b6c-7fbfc8173c0a",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "TRANS"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "TRANS"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316889625000.4adbbcbb-6875-4b58-b360-4ab9f761ad91"
+ "practitioner": {
+ "reference": "Practitioner/1731634216914246000.14d46b6d-fae9-4d02-a567-2471f0ca866d"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316889915000.f670bd3d-f55f-465e-a0e4-5fd274260781"
+ "reference": "Location/1731634216914459000.bcb0f5fd-2664-424f-845f-27bc4029a9f5"
},
{
- "reference" : "Location/1716961316890160000.9aa25ab4-fe5c-43d7-83f9-39d1ce6f389f"
+ "reference": "Location/1731634216914635000.36a5008b-bdc6-4cd0-ab67-1b1aadf82042"
},
{
- "reference" : "Location/1716961316890406000.6cdcb868-10c7-4da0-9db8-faae382c424f"
+ "reference": "Location/1731634216914824000.ae665094-1a97-410b-8cbe-b1acca966737"
},
{
- "reference" : "Location/1716961316890685000.35cb2ca2-1836-4405-b17b-d6a55ee4848a"
+ "reference": "Location/1731634216914998000.3580ffe3-5d7d-4f9e-88b7-5b1706a30f82"
},
{
- "reference" : "Location/1716961316890936000.2763ffd2-c6d4-4f12-ad10-5c1188c4876e"
+ "reference": "Location/1731634216915178000.fd896c33-b49e-4482-ab46-e80b896d1702"
},
{
- "reference" : "Location/1716961316891174000.57e86f9d-3cb4-4654-a702-ffb88fc94e58"
+ "reference": "Location/1731634216915369000.66c8c80e-135b-46f5-be57-58f6d81caf45"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Technician"
+ "url": "CNN.3",
+ "valueString": "Technician"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Technician",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -4091,98 +4347,98 @@
}
},
{
- "fullUrl" : "Location/1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340",
- "identifier" : [
+ "fullUrl": "Location/1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53",
- "identifier" : [
+ "fullUrl": "Location/1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1",
- "identifier" : [
+ "fullUrl": "Location/1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -4192,197 +4448,197 @@
}
},
{
- "fullUrl" : "Location/1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f",
- "identifier" : [
+ "fullUrl": "Location/1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381",
- "identifier" : [
+ "fullUrl": "Location/1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff",
- "identifier" : [
+ "fullUrl": "Location/1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316893874000.3709bb85-d2f2-4078-a259-08e248eeba44",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216917261000.371bd16c-6910-44d8-b771-c6397f279cac",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "SPRF"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "SPRF"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316892302000.0ba4a50e-b499-4d25-9076-dc8c5d178f48"
+ "practitioner": {
+ "reference": "Practitioner/1731634216916102000.c3135a3e-dcd7-4e4d-a146-7034522e4dc3"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316892585000.d99c277e-a42a-4c24-bc87-597896cbf340"
+ "reference": "Location/1731634216916311000.67ec2462-cfda-423f-b9a2-2cd0534d2a2c"
},
{
- "reference" : "Location/1716961316892828000.4ec51dea-e03f-412f-ac7f-ecc8fc4a7d53"
+ "reference": "Location/1731634216916495000.b87e6f4e-ac8d-40bb-ae99-3b162226afc1"
},
{
- "reference" : "Location/1716961316893096000.d965107e-2ed9-4906-8a31-6b49d80f72e1"
+ "reference": "Location/1731634216916673000.d61ff18d-3759-49ee-9a15-433ad4f045a6"
},
{
- "reference" : "Location/1716961316893329000.2dd7523d-9a0d-4932-bcf5-cbf71e78a90f"
+ "reference": "Location/1731634216916849000.a4ba2375-e8c2-440c-be07-ea67dc80cd5b"
},
{
- "reference" : "Location/1716961316893548000.7da8ba21-0b6e-485d-a9f7-a09cd4438381"
+ "reference": "Location/1731634216917010000.373631c2-255f-4420-a88f-5a9b48fa1741"
},
{
- "reference" : "Location/1716961316893785000.1cf55de8-001e-4fb1-9910-b43501b62eff"
+ "reference": "Location/1731634216917182000.7cd0176f-3f07-44a8-9479-7d9560e44b46"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268",
- "extension" : [
+ "fullUrl": "Practitioner/1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Technician2"
+ "url": "CNN.3",
+ "valueString": "Technician2"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Technician2",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -4391,98 +4647,98 @@
}
},
{
- "fullUrl" : "Location/1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a",
- "identifier" : [
+ "fullUrl": "Location/1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47",
- "identifier" : [
+ "fullUrl": "Location/1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240",
- "identifier" : [
+ "fullUrl": "Location/1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -4492,130 +4748,130 @@
}
},
{
- "fullUrl" : "Location/1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec",
- "identifier" : [
+ "fullUrl": "Location/1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749",
- "identifier" : [
+ "fullUrl": "Location/1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4",
- "identifier" : [
+ "fullUrl": "Location/1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961316895999000.f4f0f915-8510-4eaf-b1bb-b60663d2ea2d",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634216918806000.dfa4b1db-cc37-4667-af7f-6b9f27f062b4",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "SPRF"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "SPRF"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961316894454000.9a3d2574-ad4e-4212-9436-5853ba384268"
+ "practitioner": {
+ "reference": "Practitioner/1731634216917703000.23d60908-85dc-4aac-9d49-072ea83e70de"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961316894719000.047243de-b8fc-4798-893c-bc3a9499f31a"
+ "reference": "Location/1731634216917900000.53b315ea-abc3-4723-a143-06ecc9ce4844"
},
{
- "reference" : "Location/1716961316894959000.a0d2ff2b-c987-42c8-8f58-8144e5de0a47"
+ "reference": "Location/1731634216918059000.3f975fd4-e8ac-45f1-a709-1e0d0765c449"
},
{
- "reference" : "Location/1716961316895204000.781fd286-15aa-4dcd-8309-5633206dc240"
+ "reference": "Location/1731634216918233000.9cbe861b-7c68-4281-a2e0-2a6b8c2ae3bb"
},
{
- "reference" : "Location/1716961316895437000.e1aecc14-72b9-4ca8-9b50-14034a2c7bec"
+ "reference": "Location/1731634216918406000.4a5cf608-9f0d-4dba-a96f-dfb8440c5ff0"
},
{
- "reference" : "Location/1716961316895682000.9eb047fd-be59-49ad-ab7e-82550c253749"
+ "reference": "Location/1731634216918575000.326ebf6c-f4c2-43f8-a7a2-a545219d7a02"
},
{
- "reference" : "Location/1716961316895916000.d747169f-8b7f-4f16-b624-a0a59cde49a4"
+ "reference": "Location/1731634216918749000.6c261d38-8144-44f8-a19c-5ae83e8e841a"
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir
index d38884bd48f..115c817d113 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-not-mapped.fhir
@@ -119,7 +119,16 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
- } ]
+ } ],
+ "collection" : {
+ "collectedDateTime" : "2023-08-16T12:33:58-05:00",
+ "_collectedDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
+ }
}
}, {
"fullUrl" : "ServiceRequest/1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403",
@@ -131,6 +140,15 @@
"extension" : [ {
"url" : "OBR.25",
"valueId" : "Z"
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2023-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
} ]
} ],
"status" : "unknown",
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir
index c3b2e90918a..39ba3564a8c 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25-obrext-not-populated.fhir
@@ -119,13 +119,35 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
- } ]
+ } ],
+ "collection" : {
+ "collectedDateTime" : "2023-08-16T12:33:58-05:00",
+ "_collectedDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
+ }
}
}, {
"fullUrl" : "ServiceRequest/1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403",
"resource" : {
"resourceType" : "ServiceRequest",
"id" : "1722987602982733000.e8242c5b-b8be-42d7-acd2-3d1eabe25403",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.7",
+ "valueDateTime" : "2023-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
+ } ]
+ } ],
"status" : "unknown",
"subject" : {
"reference" : "Patient/1722987602868565000.65fc0b06-6516-4f88-b2a1-c709d8f28761"
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir
index 1ac0cce1c41..1b894659cfb 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr25.fhir
@@ -119,7 +119,16 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
- } ]
+ } ],
+ "collection" : {
+ "collectedDateTime" : "2023-08-16T12:33:58-05:00",
+ "_collectedDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
+ }
}
}, {
"fullUrl" : "ServiceRequest/1722989968971318000.27111d05-0304-40a6-b9f2-36a4d217b030",
@@ -131,6 +140,15 @@
"extension" : [ {
"url" : "OBR.25",
"valueId" : "F"
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2023-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
} ]
} ],
"status" : "unknown",
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir
index be1721745f9..2b6e0887ccb 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.fhir
@@ -119,7 +119,16 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
- } ]
+ } ],
+ "collection" : {
+ "collectedDateTime" : "2021-08-16T12:33:58-05:00",
+ "_collectedDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20210816123358-0500"
+ } ]
+ }
+ }
}
}, {
"fullUrl" : "ServiceRequest/1710885177785768000.9ad05561-d558-46bd-afd4-18b1b895213f",
@@ -131,6 +140,15 @@
"extension" : [ {
"url" : "OBR.25",
"valueId" : "F"
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2021-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20210816123358-0500"
+ } ]
+ }
} ]
} ],
"status" : "unknown",
@@ -150,11 +168,11 @@
"subject" : {
"reference" : "Patient/1710885177487304000.8acbfe50-ad34-4a1a-b0bf-284256794cae"
},
- "effectiveDateTime" : "2023-08-16T12:33:58-05:00",
+ "effectiveDateTime" : "2021-08-16T12:33:58-05:00",
"_effectiveDateTime" : {
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230816123358-0500"
+ "valueString" : "20210816123358-0500"
} ]
},
"specimen" : [ {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7
index 40c08b7c477..c97344243cb 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-not-populated.hl7
@@ -1,3 +1,3 @@
MSH|^~\|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1
PID|1
-OBR|1||||||20230816123358-0500||||||||||||||||||F
\ No newline at end of file
+OBR|1||||||20210816123358-0500||||||||||||||||||F
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir
new file mode 100644
index 00000000000..9919e4b8b15
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.fhir
@@ -0,0 +1,210 @@
+{
+ "resourceType" : "Bundle",
+ "id" : "1727214434506826000.c1c9ce67-32d3-4763-b4c4-f1d2776fc43c",
+ "meta" : {
+ "lastUpdated" : "2024-09-24T14:47:14.511-07:00"
+ },
+ "identifier" : {
+ "system" : "https://reportstream.cdc.gov/prime-router",
+ "value" : "20230816123358"
+ },
+ "type" : "message",
+ "timestamp" : "2023-08-16T10:33:58.000-07:00",
+ "entry" : [ {
+ "fullUrl" : "MessageHeader/1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e",
+ "resource" : {
+ "resourceType" : "MessageHeader",
+ "id" : "1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString" : "^~\\"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension" : [ {
+ "url" : "MSH.7",
+ "valueString" : "20230816123358-0500"
+ } ]
+ } ],
+ "eventCoding" : {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code" : "R01",
+ "display" : "ORU^R01^ORU_R01"
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1727214434821404000.fad2bf74-be6d-4437-90ba-7f792cd09434",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727214434821404000.fad2bf74-be6d-4437-90ba-7f792cd09434",
+ "target" : [ {
+ "reference" : "MessageHeader/1727214434543241000.a6f6f7bd-c70c-4c7f-939d-755c3c65c83e"
+ }, {
+ "reference" : "DiagnosticReport/1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df"
+ } ],
+ "recorded" : "2023-08-16T12:33:58-05:00",
+ "activity" : {
+ "coding" : [ {
+ "display" : "ORU^R01^ORU_R01"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1727214434826963000.dacdba9a-2df8-4b93-80bb-87d78e6b31cd",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727214434826963000.dacdba9a-2df8-4b93-80bb-87d78e6b31cd",
+ "recorded" : "2024-09-24T14:47:14Z",
+ "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/1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Organization/1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727214434826509000.f1c68d3f-b7d1-4c26-9d52-d899b9856680",
+ "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"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314"
+ }
+ }, {
+ "fullUrl" : "Provenance/1727214434839911000.1274c483-0b10-48a1-8af4-cfe910092753",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1727214434839911000.1274c483-0b10-48a1-8af4-cfe910092753",
+ "target" : [ {
+ "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314"
+ } ],
+ "recorded" : "2024-09-24T14:47:14Z",
+ "activity" : {
+ "coding" : [ {
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Specimen/1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collectedPeriod" : {
+ "start" : "2023-08-16T12:33:58-05:00",
+ "_start" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ },
+ "end" : "2024-08-16T12:33:58-05:00",
+ "_end" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20240816123358-0500"
+ } ]
+ }
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "ServiceRequest/1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432",
+ "resource" : {
+ "resourceType" : "ServiceRequest",
+ "id" : "1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.7",
+ "valueDateTime" : "2023-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.8",
+ "valueDateTime" : "2024-08-16T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20240816123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.25",
+ "valueId" : "F"
+ } ]
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314"
+ }
+ }
+ }, {
+ "fullUrl" : "DiagnosticReport/1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df",
+ "resource" : {
+ "resourceType" : "DiagnosticReport",
+ "id" : "1727214434964909000.a8f9070b-7a37-462c-bbac-4e6855d690df",
+ "basedOn" : [ {
+ "reference" : "ServiceRequest/1727214434962556000.3fdd6e86-1f54-4904-80c0-cb4e342b6432"
+ } ],
+ "status" : "final",
+ "subject" : {
+ "reference" : "Patient/1727214434839271000.c9012071-3392-4f3a-83ba-698629cc8314"
+ },
+ "effectivePeriod" : {
+ "start" : "2023-08-16T12:33:58-05:00",
+ "_start" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20230816123358-0500"
+ } ]
+ },
+ "end" : "2024-08-16T12:33:58-05:00",
+ "_end" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20240816123358-0500"
+ } ]
+ }
+ },
+ "specimen" : [ {
+ "reference" : "Specimen/1727214434841147000.0f667d95-f620-43f5-93f1-4d8842174085"
+ } ]
+ }
+ } ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7
new file mode 100644
index 00000000000..af9ad388d6e
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-obr8-populated.hl7
@@ -0,0 +1,3 @@
+MSH|^~\|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1
+PID|1
+OBR|1||||||20230816123358-0500|20240816123358-0500|||||||||||||||||F
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir
index 74402359566..019813c0eb2 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-obr-populated.fhir
@@ -1,557 +1,789 @@
{
- "resourceType" : "Bundle",
- "id" : "1716961418305847000.33e0bc97-30cb-4e8f-b036-d9fe4f5516c1",
- "meta" : {
- "lastUpdated" : "2024-05-29T01:43:38.315-04:00"
+ "resourceType": "Bundle",
+ "id": "1731634383038363000.a2818b38-91a7-4492-925d-ba3ffa184ab9",
+ "meta": {
+ "lastUpdated": "2024-11-14T17:33:03.042-08:00"
},
- "identifier" : {
- "system" : "https://reportstream.cdc.gov/prime-router",
- "value" : "20230816123358"
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "20230816123358"
},
- "type" : "message",
- "timestamp" : "2023-08-16T13:33:58.000-04:00",
- "entry" : [
+ "type": "message",
+ "timestamp": "2023-08-16T10:33:58.000-07:00",
+ "entry": [
{
- "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "resource" : {
- "resourceType" : "MessageHeader",
- "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
- "valueString" : "^~\\\u0026#"
+ "fullUrl": "MessageHeader/1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString": "^~\\\u0026#"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension": [
{
- "url" : "MSH.7",
- "valueString" : "20230816123358-0500"
+ "url": "MSH.7",
+ "valueString": "20230816123358-0500"
}
]
}
],
- "eventCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "R01",
- "display" : "ORU^R01^ORU_R01"
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "R01",
+ "display": "ORU^R01^ORU_R01"
}
}
},
{
- "fullUrl" : "Provenance/1716961418948709000.affc79e9-e75a-4096-9a41-4635a2d990e9",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961418948709000.affc79e9-e75a-4096-9a41-4635a2d990e9",
- "target" : [
+ "fullUrl": "Provenance/1731634383323663000.61625745-355d-46d4-a8c0-22e05bbba9d3",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634383323663000.61625745-355d-46d4-a8c0-22e05bbba9d3",
+ "target": [
{
- "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435"
+ "reference": "MessageHeader/1731634383077541000.781f41cd-545e-486d-942b-f7afe710cd7d"
},
{
- "reference" : "DiagnosticReport/1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b"
+ "reference": "DiagnosticReport/1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925"
}
],
- "recorded" : "2023-08-16T12:33:58-05:00",
- "activity" : {
- "coding" : [
+ "recorded": "2023-08-16T12:33:58-05:00",
+ "activity": {
+ "coding": [
{
- "display" : "ORU^R01^ORU_R01"
+ "display": "ORU^R01^ORU_R01"
}
]
}
}
},
{
- "fullUrl" : "Provenance/1716961418957964000.5addbc67-0e19-4b5b-9065-7adf25bd9435",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961418957964000.5addbc67-0e19-4b5b-9065-7adf25bd9435",
- "recorded" : "2024-05-29T01:43:38Z",
- "policy" : [
+ "fullUrl": "Provenance/1731634383330361000.1fb2d8a3-e149-479a-ad57-8719daaec01d",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634383330361000.1fb2d8a3-e149-479a-ad57-8719daaec01d",
+ "recorded": "2024-11-14T17:33:03Z",
+ "policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
- "activity" : {
- "coding" : [
+ "activity": {
+ "coding": [
{
- "code" : "v2-FHIR transformation"
+ "code": "v2-FHIR transformation"
}
]
},
- "agent" : [
+ "agent": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "assembler"
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "assembler"
}
]
},
- "who" : {
- "reference" : "Organization/1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055"
+ "who": {
+ "reference": "Organization/1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d"
}
}
]
}
},
{
- "fullUrl" : "Organization/1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716961418957310000.9e276c38-4f2d-408f-9186-0bb198537055",
- "identifier" : [
+ "fullUrl": "Organization/1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634383329931000.1880c1c8-03b9-4896-8b69-0c76ef07e67d",
+ "identifier": [
{
- "value" : "CDC PRIME - Atlanta"
+ "value": "CDC PRIME - Atlanta"
},
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.114222.4.1.237821"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.114222.4.1.237821"
}
]
}
},
{
- "fullUrl" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0",
- "resource" : {
- "resourceType" : "Patient",
- "id" : "1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0"
+ "fullUrl": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a"
}
},
{
- "fullUrl" : "Provenance/1716961418973514000.4f098d51-1d8f-4d81-a818-fb4cf6831a70",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716961418973514000.4f098d51-1d8f-4d81-a818-fb4cf6831a70",
- "target" : [
+ "fullUrl": "Provenance/1731634383341932000.2f585971-9c22-4998-808e-7f6f0dd7a4b1",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634383341932000.2f585971-9c22-4998-808e-7f6f0dd7a4b1",
+ "target": [
{
- "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0"
+ "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a"
}
],
- "recorded" : "2024-05-29T01:43:38Z",
- "activity" : {
- "coding" : [
+ "recorded": "2024-11-14T17:33:03Z",
+ "activity": {
+ "coding": [
{
- "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
- "code" : "UPDATE"
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
}
]
}
}
},
{
- "fullUrl" : "Specimen/1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
+ "fullUrl": "Specimen/1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
}
],
- "note" : [
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828"
+ },
+ "collectedPeriod": {
+ "start": "2023-08-16T12:33:58-05:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
+ }
+ ]
+ },
+ "end": "2023-09-16T12:33:58-05:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
+ }
+ ]
+ }
+ }
+ },
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment"
+ "code": "4438",
+ "display": "Collectors Comment"
}
]
}
}
],
- "text" : "4438, Collectors Comment"
+ "text": "4438, Collectors Comment"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383350810000.a3b0bb68-2242-46a7-8d17-8722ce105828",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
}
]
}
},
{
- "fullUrl" : "ServiceRequest/1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
+ "fullUrl": "ServiceRequest/1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "20230816123358-050"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230816123358-050"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "Order Status Modifier"
+ "code": "Order Status Modifier"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
{
- "url" : "ORC.5",
- "valueString" : "CM"
+ "url": "ORC.5",
+ "valueString": "CM"
},
{
- "url" : "ORC.6",
- "valueString" : "R"
+ "url": "ORC.6",
+ "valueString": "R"
},
{
- "url" : "ORC.19",
- "valueReference" : {
- "reference" : "Practitioner/1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa"
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415"
}
},
{
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d"
}
},
{
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Facility Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Facility Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Facility Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
},
{
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Provider Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Provider Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Provider Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
},
{
- "url" : "ORC.27",
- "valueString" : "20230816123358-0500"
+ "url": "ORC.27",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "ORC.28",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.28",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "567",
- "display" : "E"
+ "code": "567",
+ "display": "E"
}
]
}
},
{
- "url" : "ORC.30",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.30",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "U"
+ "code": "123",
+ "display": "U"
}
]
}
},
{
- "url" : "ORC.31",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.31",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Parent"
+ "code": "123",
+ "display": "Parent"
}
]
}
},
{
- "url" : "ORC.8",
- "valueIdentifier" : {
- "extension" : [
+ "url": "ORC.8",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Assigned Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Assigned Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Assigned Universal"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Assigned Universal"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "Filler Assigned"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Filler Assigned"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Assigned Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Assigned Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Assigned Universal"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Assigned Universal"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Placer Assigned"
+ "value": "Placer Assigned"
}
},
{
- "url" : "ORC.10",
- "valueReference" : {
- "reference" : "Practitioner/1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc"
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95"
}
},
{
- "url" : "ORC.11",
- "valueReference" : {
- "reference" : "Practitioner/1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d"
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea"
}
},
{
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5"
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc"
}
},
{
- "url" : "ORC.13",
- "valueReference" : {
- "reference" : "Location/1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3"
+ "url": "ORC.13",
+ "valueReference": {
+ "reference": "Location/1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a"
}
},
{
- "url" : "ORC.15",
- "valueString" : "20230816123358-0500"
+ "url": "ORC.15",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "ORC.17",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.17",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "481",
- "display" : "Entering ORG"
+ "code": "481",
+ "display": "Entering ORG"
}
]
}
},
{
- "url" : "ORC.18",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.18",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "Entering Device"
+ "code": "Entering Device"
}
]
}
@@ -559,94 +791,210 @@
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
{
- "url" : "OBR.2",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
}
},
{
- "url" : "OBR.3",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
}
},
{
- "url" : "OBR.20",
- "valueString" : "filler1"
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409"
+ }
},
{
- "url" : "OBR.21",
- "valueString" : "filler2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "BP"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "7595016"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "work"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "Internet"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "order.callback@email.com"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "email",
+ "value": "order.callback@email.com",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "placer1"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "placer2"
},
{
- "url" : "OBR.22",
- "valueString" : "20230816123358-0500"
+ "url": "OBR.20",
+ "valueString": "filler1"
},
{
- "url" : "OBR.23",
- "extension" : [
+ "url": "OBR.7",
+ "valueDateTime": "2023-08-16T12:33:58-05:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.8",
+ "valueDateTime": "2023-09-16T12:33:58-05:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "filler2"
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "20230816123358-0500"
+ },
+ {
+ "url": "OBR.23",
+ "extension": [
{
- "url" : "moc-1-1-monetary-amount",
- "valueString" : "100"
+ "url": "moc-1-1-monetary-amount",
+ "valueString": "100"
},
{
- "url" : "moc-1-2-monetary-denomination",
- "valueString" : "$"
+ "url": "moc-1-2-monetary-denomination",
+ "valueString": "$"
},
{
- "url" : "moc-2-charge-code",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "moc-2-charge-code",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "16",
- "display" : "code"
+ "code": "16",
+ "display": "code"
}
]
}
@@ -654,682 +1002,590 @@
]
},
{
- "url" : "OBR.24",
- "valueId" : "OTH"
+ "url": "OBR.24",
+ "valueId": "OTH"
},
{
- "url" : "OBR.25",
- "valueId" : "F"
+ "url": "OBR.25",
+ "valueId": "F"
},
{
- "url" : "OBR.26",
- "extension" : [
+ "url": "OBR.26",
+ "extension": [
{
- "url" : "prl-1-parent-observation-identifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "prl-1-parent-observation-identifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "444",
- "display" : "ParentId"
+ "code": "444",
+ "display": "ParentId"
}
]
}
},
{
- "url" : "prl-2-parent-observation-sub-identifier",
- "valueString" : "888"
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "888"
},
{
- "url" : "prl-3-parent-observation-descriptor",
- "valueString" : "ParentOBSdescriptor"
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ParentOBSdescriptor"
}
]
},
{
- "url" : "OBR.28",
- "valueReference" : {
- "reference" : "Practitioner/1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be"
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab"
}
},
{
- "url" : "OBR.29",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "11D1111111"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Other CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "22D2222222"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "CLIA2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
}
},
{
- "url" : "OBR.33",
- "valueReference" : {
- "reference" : "PractitionerRole/1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44"
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384"
}
},
{
- "url" : "OBR.36",
- "valueString" : "20230816123358-0500"
+ "url": "OBR.36",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "OBR.10",
- "valueReference" : {
- "reference" : "Practitioner/1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069"
- }
- },
- {
- "url" : "OBR.39",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "4438",
- "display" : "Collectors Comment"
+ "code": "4438",
+ "display": "Collectors Comment"
}
]
}
},
{
- "url" : "OBR.44",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.44",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "5019",
- "display" : "Procedure Code"
+ "code": "5019",
+ "display": "Procedure Code"
}
]
}
},
{
- "url" : "obr-45-procedure-code-modifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "887766",
- "display" : "Procedure Code Modifier"
+ "code": "887766",
+ "display": "Procedure Code Modifier"
}
]
}
},
{
- "url" : "OBR.48",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.48",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "71435",
- "display" : "Medically Necessary Duplicate Procedure"
+ "code": "71435",
+ "display": "Medically Necessary Duplicate Procedure"
}
]
}
},
{
- "url" : "OBR.49",
- "valueString" : "N"
+ "url": "OBR.49",
+ "valueString": "N"
},
{
- "url" : "OBR.50",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.50",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "443331",
- "display" : "Parent Universal Service Identifier"
+ "code": "443331",
+ "display": "Parent Universal Service Identifier"
}
]
}
},
{
- "url" : "OBR.53",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.53",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.53"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
}
],
- "value" : "Alt"
+ "value": "Alt"
}
},
{
- "url" : "OBR.11",
- "valueString" : "G"
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54"
+ }
},
{
- "url" : "OBR.12",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "512",
- "display" : "Danger code"
- }
- ]
- }
+ "url": "OBR.11",
+ "valueString": "G"
},
{
- "url" : "OBR.13",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBR.12",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "relevent info"
+ "code": "512",
+ "display": "Danger code"
}
]
}
},
{
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d"
- }
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
- {
- "url" : "XTN.2",
- "valueString" : "WPN"
- },
- {
- "url" : "XTN.3",
- "valueString" : "BP"
- },
- {
- "url" : "XTN.7",
- "valueString" : "7595016"
- },
- {
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
- }
- ]
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
- }
- ],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "work"
- }
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
- {
- "url" : "XTN.2",
- "valueString" : "WPN"
- },
- {
- "url" : "XTN.3",
- "valueString" : "Internet"
- },
+ "extension": [
{
- "url" : "XTN.4",
- "valueString" : "order.callback@email.com"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
- ]
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
+ ],
+ "code": "relevent info"
}
- ],
- "system" : "email",
- "value" : "order.callback@email.com",
- "use" : "work"
+ ]
}
- },
- {
- "url" : "OBR.18",
- "valueString" : "placer1"
- },
- {
- "url" : "OBR.19",
- "valueString" : "placer2"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.33"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Alt"
+ "value": "Alt"
}
],
- "status" : "completed",
- "intent" : "order",
- "code" : {
- "coding" : [
+ "status": "completed",
+ "intent": "order",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Universal service identifier"
+ "code": "123",
+ "display": "Universal service identifier"
}
]
},
- "orderDetail" : [
+ "orderDetail": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.46"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "7461",
- "display" : "Placer Supplemental"
+ "code": "7461",
+ "display": "Placer Supplemental"
}
]
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.47"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "8811",
- "display" : "Fillter Supplemental"
+ "code": "8811",
+ "display": "Fillter Supplemental"
}
]
}
],
- "subject" : {
- "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0"
+ "subject": {
+ "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a"
},
- "requester" : {
- "extension" : [
+ "requester": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "BP"
+ "url": "XTN.3",
+ "valueString": "BP"
},
{
- "url" : "XTN.7",
- "valueString" : "7595016"
+ "url": "XTN.7",
+ "valueString": "7595016"
},
{
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
}
],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "home"
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "home"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "otto.daugherty@email.com"
+ "url": "XTN.4",
+ "valueString": "otto.daugherty@email.com"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
}
],
- "system" : "email",
- "value" : "otto.daugherty@email.com",
- "use" : "home"
+ "system": "email",
+ "value": "otto.daugherty@email.com",
+ "use": "home"
}
}
],
- "reference" : "PractitionerRole/1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174"
+ "reference": "PractitionerRole/1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b"
},
- "locationCode" : [
+ "locationCode": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "location"
+ "code": "123",
+ "display": "location"
}
]
}
],
- "reasonCode" : [
+ "reasonCode": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "3216",
- "display" : "ReasonForStudy"
+ "code": "3216",
+ "display": "ReasonForStudy"
}
]
}
@@ -1337,2076 +1593,2283 @@
}
},
{
- "fullUrl" : "Practitioner/1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ORDERING",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ORDERING",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "PROVIDER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "PROVIDER"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Provider Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Provider Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Provider Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Location/1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "fullUrl": "Location/1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
+ "fullUrl": "Organization/1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60",
+ "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/cwe-coding",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "XON.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "LN",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716961419144799000.5822bacb-5b95-46e3-a41f-1143a21cec7b"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1731634383473171000.01ed39fc-b274-432b-a87d-a4475350c464"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "123"
+ "value": "123"
}
],
- "name" : "Ordering Facility",
- "telecom" : [
+ "name": "Ordering Facility",
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "BP"
+ "url": "XTN.3",
+ "valueString": "BP"
},
{
- "url" : "XTN.7",
- "valueString" : "7595016"
+ "url": "XTN.7",
+ "valueString": "7595016"
},
{
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
}
]
}
],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "home"
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "home"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "orderingfacility@email.com"
+ "url": "XTN.4",
+ "valueString": "orderingfacility@email.com"
}
]
}
],
- "system" : "email",
- "value" : "orderingfacility@email.com",
- "use" : "home"
+ "system": "email",
+ "value": "orderingfacility@email.com",
+ "use": "home"
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Facility Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Facility Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Facility Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "PractitionerRole/1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961419130732000.d6a59ed9-0885-4293-9620-d11d93485174",
- "practitioner" : {
- "reference" : "Practitioner/1716961419142924000.da22d6af-ea15-4247-a3ae-667a500eba06"
+ "fullUrl": "PractitionerRole/1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634383467826000.bef04cc5-ee35-40fe-bfb1-c4f3a1bfbb6b",
+ "practitioner": {
+ "reference": "Practitioner/1731634383472644000.7ab5913c-11b3-41d3-9b01-ebb9110dc658"
},
- "organization" : {
- "reference" : "Organization/1716961419150072000.3a6c1127-a691-4d3c-9b7b-94da49550fe7"
+ "organization": {
+ "reference": "Organization/1731634383475708000.3f104572-f7cb-4ec8-8ddf-d3de06d99b60"
}
}
},
{
- "fullUrl" : "Practitioner/1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419157917000.f8c1dfe1-8d8f-40f5-a6dc-704421f174aa",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383480700000.9ba0adae-bd85-4f35-bab0-213b60a59415",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ACTION",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ACTION",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Location/1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "fullUrl": "Location/1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716961419159347000.021374ea-f76b-462f-bd9c-21ad94867ab5",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
+ "fullUrl": "Organization/1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634383481549000.758db6fd-3c4d-44b9-9a5d-eb286907da6d",
+ "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/cwe-coding",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "XON.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "LN",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716961419158636000.96b9b60c-8cd6-48a6-b047-cd2899b021d5"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1731634383481089000.17b4ac9b-5da3-4f8e-bf6c-860fcd25d401"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "123"
+ "value": "123"
}
],
- "name" : "Ordering Facility"
+ "name": "Ordering Facility"
}
},
{
- "fullUrl" : "Practitioner/1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419164738000.6ab810bf-389f-4674-938f-378034503ffc",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383485422000.54dc7c41-c941-483b-8103-c7de14832b95",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ENTERED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ENTERED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419167348000.6eca49db-8541-449c-afae-085df4efec1d",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383487113000.7baa847f-6245-4acf-8103-6e13729f46ea",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "VERIFIED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "VERIFIED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419169941000.05eeb26f-14c0-48ec-8acb-c4b6d30228d5",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383488921000.543dd5b8-b05f-4e67-bec6-19210862a5fc",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ORDERING",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ORDERING",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "PROVIDER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "PROVIDER"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Organization/1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412",
- "identifier" : [
+ "fullUrl": "Organization/1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "ASSIGNEE"
+ "value": "ASSIGNEE"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "UUID"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "UUID"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "222.1111.22222"
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
}
]
}
},
{
- "fullUrl" : "Location/1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a",
- "identifier" : [
+ "fullUrl": "Location/1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.4.4.4"
+ "value": "2.4.4.4"
}
],
- "physicalType" : {
- "coding" : [
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad",
- "identifier" : [
+ "fullUrl": "Location/1731634383489999000.00256010-e615-410f-a6c1-da9c48432757",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383489999000.00256010-e615-410f-a6c1-da9c48432757",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Point of Care"
+ "value": "Point of Care"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.1.1.1"
+ "value": "2.1.1.1"
}
],
- "physicalType" : {
- "coding" : [
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
}
]
},
- "partOf" : {
- "reference" : "Location/1716961419171479000.9e73ba78-5089-4bc6-afba-8c5b1334c20a"
+ "partOf": {
+ "reference": "Location/1731634383489915000.8495a863-65e5-4b62-99ce-9a9c8c0cee2b"
}
}
},
{
- "fullUrl" : "Location/1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419171829000.ad4dadf2-050e-48ec-8ecc-bdf97a4a76e3",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
- "valueString" : "location type"
+ "fullUrl": "Location/1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383490151000.0ea774aa-473a-4396-894a-fc92e728785a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Bed A"
+ "value": "Bed A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.3.3.3"
+ "value": "2.3.3.3"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "NAME"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "UNI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
- "valueString" : "organization"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
}
],
- "value" : "Entity ID",
- "assigner" : {
- "reference" : "Organization/1716961419170431000.5cabb282-b07f-4f79-9490-f03519951412"
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1731634383489268000.77964d15-e911-42ae-b399-bbcc5c008324"
}
}
],
- "status" : "active",
- "description" : "Description",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
},
- "partOf" : {
- "reference" : "Location/1716961419171598000.f70252aa-64f9-4f59-ba87-78c83bc650ad"
+ "partOf": {
+ "reference": "Location/1731634383489999000.00256010-e615-410f-a6c1-da9c48432757"
}
}
},
{
- "fullUrl" : "Practitioner/1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419176041000.0b1843c8-23be-4b14-b376-cbea411c02be",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383492209000.0543b72e-0b06-4995-9e34-bf638e3a5409",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Ordering",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383495675000.7197cb61-81bb-412f-a73f-beb280782eab",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "result",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "result",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "copiesto"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Results Interpreter"
+ "url": "CNN.3",
+ "valueString": "Results Interpreter"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "Assistant",
- "given" : [
+ "family": "Assistant",
+ "given": [
"Results Interpreter",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -3415,98 +3878,98 @@
}
},
{
- "fullUrl" : "Location/1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b",
- "identifier" : [
+ "fullUrl": "Location/1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a",
- "identifier" : [
+ "fullUrl": "Location/1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad",
- "identifier" : [
+ "fullUrl": "Location/1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -3516,824 +3979,617 @@
}
},
{
- "fullUrl" : "Location/1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8",
- "identifier" : [
+ "fullUrl": "Location/1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a",
- "identifier" : [
+ "fullUrl": "Location/1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54",
- "identifier" : [
+ "fullUrl": "Location/1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961419187806000.8cf774c0-e426-456f-8e41-8c8451ccab44",
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "fullUrl": "PractitionerRole/1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634383508216000.eee90ad3-12bd-4f98-921c-d047da642384",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961419177470000.5a0c9064-eaf9-4c35-88d0-3f5898ae0989"
+ "practitioner": {
+ "reference": "Practitioner/1731634383496809000.9f83cb91-6d58-4357-a55f-c167a7c2a75a"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961419178400000.24af0016-dec0-4cc4-a85e-f8105ca2b01b"
+ "reference": "Location/1731634383497312000.5ad385d5-09f7-4ca4-accf-b8d4c60566bd"
},
{
- "reference" : "Location/1716961419186100000.0c8c602f-eb8d-4246-b4db-0a4f8f83d47a"
+ "reference": "Location/1731634383507155000.d2847672-1af8-4a9b-a529-033d9f15d35e"
},
{
- "reference" : "Location/1716961419186514000.5d500395-c0df-4a65-82a2-333850e0fbad"
+ "reference": "Location/1731634383507460000.34a8c8d7-c4ab-4c12-a39a-a0fbec14f82d"
},
{
- "reference" : "Location/1716961419186954000.2f438cd1-1edc-44bc-809a-00f9150221a8"
+ "reference": "Location/1731634383507704000.d4fe2a75-7d99-4bf6-a868-ae4459066d3d"
},
{
- "reference" : "Location/1716961419187361000.91cb313d-6849-4c9c-9033-26c2a92a4d5a"
+ "reference": "Location/1731634383507922000.9c3bc8bc-1330-41f1-8d8b-2cbded8c458f"
},
{
- "reference" : "Location/1716961419187691000.5294042c-278e-49f2-a3bd-bc4d0d957b54"
- }
- ]
- }
- },
- {
- "fullUrl" : "Practitioner/1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419190531000.8c18e940-d531-4a4a-be11-76571cb04069",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
- }
- ]
- },
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
- {
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
- },
- {
- "url" : "XCN.4",
- "valueString" : "B"
- },
- {
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
- },
- {
- "url" : "XCN.21",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignJ"
- }
- ]
- }
- },
- {
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "AssignA"
- }
- ]
- }
- },
- {
- "url" : "XCN.5",
- "valueString" : "2ND"
- },
- {
- "url" : "XCN.7",
- "valueString" : "MD"
- },
- {
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "SRC"
- }
- ]
- }
- },
- {
- "url" : "XCN.10",
- "valueString" : "B"
- },
- {
- "url" : "XCN.15",
- "valueString" : "A"
- },
- {
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
- }
- ],
- "code" : "NameContext"
- }
- ]
- }
- },
- {
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
- }
- ]
- }
- ],
- "identifier" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
- }
- ],
- "type" : {
- "coding" : [
- {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
- }
- ],
- "code" : "DL"
- }
- ]
- },
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
- }
- ],
- "name" : [
- {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
- }
- ],
- "use" : "official",
- "family" : "Collector",
- "_family" : {
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Identifier"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
- },
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
- }
- ]
- },
- "given" : [
- "LUDWIG",
- "B"
- ],
- "prefix" : [
- "DR"
- ],
- "suffix" : [
- "2ND",
- "MD",
- "MD"
- ],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
- }
+ "reference": "Location/1731634383508138000.f660af87-b6d3-47bd-9ced-583f867d31c7"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419199166000.fdb25d11-34dd-4eb2-b01f-d97bbfa74a4d",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383511179000.0b53d520-02ff-4774-a4bc-38412877aa54",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "urn:oid:AssigningSystem",
- "value" : "1"
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "Ordering",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "Provider"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "DiagnosticReport/1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1716961419238142000.a0dc8f6f-c950-4b8c-958a-066dd646621b",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-statusReason",
- "valueCodeableConcept" : {
- "text" : "Control Code Reason"
+ "fullUrl": "DiagnosticReport/1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1731634383531350000.ab3f2761-6e25-4431-926b-82c4805af925",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-statusReason",
+ "valueCodeableConcept": {
+ "text": "Control Code Reason"
}
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
}
],
- "basedOn" : [
+ "basedOn": [
{
- "reference" : "ServiceRequest/1716961419201447000.c6b89d4a-7bf4-4b73-9069-68f887e3c4be"
+ "reference": "ServiceRequest/1731634383512563000.09387d12-e4c1-48f3-817c-cc09f30b8341"
}
],
- "status" : "final",
- "category" : [
+ "status": "final",
+ "category": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "OTH"
+ "code": "OTH"
}
]
}
],
- "code" : {
- "coding" : [
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Universal service identifier"
+ "code": "123",
+ "display": "Universal service identifier"
}
]
},
- "subject" : {
- "reference" : "Patient/1716961418972747000.fb596873-2170-4c71-9fe2-e9afc24a6bc0"
+ "subject": {
+ "reference": "Patient/1731634383341421000.ca8cf1d9-8a49-49f6-9c0c-e3518c61253a"
},
- "effectivePeriod" : {
- "start" : "2023-08-16T12:33:58-05:00",
- "_start" : {
- "extension" : [
+ "effectivePeriod": {
+ "start": "2023-08-16T12:33:58-05:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230816123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
}
]
},
- "end" : "2023-09-16T12:33:58-05:00",
- "_end" : {
- "extension" : [
+ "end": "2023-09-16T12:33:58-05:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230916123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230916123358-0500"
}
]
}
},
- "issued" : "2023-08-16T12:33:58-05:00",
- "_issued" : {
- "extension" : [
+ "issued": "2023-08-16T12:33:58-05:00",
+ "_issued": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230816123358-0500"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230816123358-0500"
}
]
},
- "performer" : [
+ "performer": [
{
- "reference" : "PractitionerRole/1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574"
+ "reference": "PractitionerRole/1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090"
},
{
- "reference" : "PractitionerRole/1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b"
+ "reference": "PractitionerRole/1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847"
}
],
- "resultsInterpreter" : [
+ "resultsInterpreter": [
{
- "reference" : "PractitionerRole/1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24"
+ "reference": "PractitionerRole/1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f"
}
],
- "specimen" : [
+ "specimen": [
{
- "reference" : "Specimen/1716961418975964000.f6e2be4a-538a-49f3-952b-b3bfeb470d5a"
+ "reference": "Specimen/1731634383343644000.e29e56bb-5419-40e7-85ee-68bcfde687bc"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Interpreter"
+ "url": "CNN.3",
+ "valueString": "Interpreter"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "Results",
- "given" : [
+ "family": "Results",
+ "given": [
"Interpreter",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -4342,98 +4598,98 @@
}
},
{
- "fullUrl" : "Location/1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963",
- "identifier" : [
+ "fullUrl": "Location/1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8",
- "identifier" : [
+ "fullUrl": "Location/1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e",
- "identifier" : [
+ "fullUrl": "Location/1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -4443,184 +4699,184 @@
}
},
{
- "fullUrl" : "Location/1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a",
- "identifier" : [
+ "fullUrl": "Location/1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318",
- "identifier" : [
+ "fullUrl": "Location/1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366",
- "identifier" : [
+ "fullUrl": "Location/1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961419231439000.81b58d30-ca38-4fd6-b84c-4adaae772a24",
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "fullUrl": "PractitionerRole/1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634383527618000.dca78207-9baf-4b47-92b2-6a97e35aa58f",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961419228970000.3afa9862-ea44-4caa-b1a8-d038c3e1ad54"
+ "practitioner": {
+ "reference": "Practitioner/1731634383526057000.79e68ed2-7462-4586-8821-9e8d2d0a947d"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961419229420000.87c57559-c31a-41ca-b297-8a3dcedf0963"
+ "reference": "Location/1731634383526422000.95730ff7-9244-4f8f-b38d-4a6cafe96397"
},
{
- "reference" : "Location/1716961419229785000.ab73c4b4-baa2-4397-9ee2-793d925a0dc8"
+ "reference": "Location/1731634383526632000.fc2812a0-f1a3-4003-8f26-5af493244e26"
},
{
- "reference" : "Location/1716961419230253000.3fee4a91-71e7-4a91-8264-10375b68c19e"
+ "reference": "Location/1731634383526903000.ba09f633-4f25-4a48-8031-d4f7906031fe"
},
{
- "reference" : "Location/1716961419230599000.a801490e-324f-4ccc-94d5-2f24710e611a"
+ "reference": "Location/1731634383527151000.a9928806-847f-4b6b-bc05-508a1beb4e76"
},
{
- "reference" : "Location/1716961419230928000.36905147-b696-44c1-8f8a-aa6ba5847318"
+ "reference": "Location/1731634383527341000.9960a829-1e7e-499e-853f-b755bfdb661d"
},
{
- "reference" : "Location/1716961419231323000.775c2ae8-43b4-4f29-a126-5cf473f8f366"
+ "reference": "Location/1731634383527538000.26a8ba9f-e5c6-4a1e-b53a-c536186e210f"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Transcriptionist"
+ "url": "CNN.3",
+ "valueString": "Transcriptionist"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Transcriptionist",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -4629,98 +4885,98 @@
}
},
{
- "fullUrl" : "Location/1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446",
- "identifier" : [
+ "fullUrl": "Location/1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04",
- "identifier" : [
+ "fullUrl": "Location/1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c",
- "identifier" : [
+ "fullUrl": "Location/1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -4730,197 +4986,197 @@
}
},
{
- "fullUrl" : "Location/1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195",
- "identifier" : [
+ "fullUrl": "Location/1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677",
- "identifier" : [
+ "fullUrl": "Location/1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1",
- "identifier" : [
+ "fullUrl": "Location/1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961419234315000.6b08f098-ec88-4a3c-bdc5-df1942b60574",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634383529309000.6fd542af-2c94-4d79-8471-f1d92abf4090",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "TRANS"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "TRANS"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961419232230000.b516cd07-4d8c-44f9-9300-3123dfcea2a9"
+ "practitioner": {
+ "reference": "Practitioner/1731634383528095000.2be36213-1f42-4d18-a8ef-7a9ab774a4c1"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961419232617000.585ac1d3-97b6-46e7-9137-bc762b075446"
+ "reference": "Location/1731634383528300000.f7b3bed8-3928-4851-92d1-22f2fa124223"
},
{
- "reference" : "Location/1716961419232945000.77edf253-6bf5-4739-9903-e5bb46d54f04"
+ "reference": "Location/1731634383528491000.5378de74-8fc3-4ac9-8167-2cd289ddcd39"
},
{
- "reference" : "Location/1716961419233281000.9a4b4623-797f-4e89-8d08-63773ca6100c"
+ "reference": "Location/1731634383528696000.462d536e-2e8a-4c80-b822-0f032c63a7a6"
},
{
- "reference" : "Location/1716961419233587000.3834d6db-66b5-4467-8e04-4328d4c79195"
+ "reference": "Location/1731634383528875000.2c847264-143f-47a7-a31e-19b57e7e112a"
},
{
- "reference" : "Location/1716961419233903000.1b69198c-8c17-49e1-8b08-7e499ef9f677"
+ "reference": "Location/1731634383529054000.5f9a3c86-0ace-4b2a-a154-76b9d7079f1c"
},
{
- "reference" : "Location/1716961419234201000.f77c8280-2661-48a5-b2a2-fc74d40bf1e1"
+ "reference": "Location/1731634383529233000.ec21818c-e19a-4318-b368-21d9663d3425"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed",
- "extension" : [
+ "fullUrl": "Practitioner/1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
{
- "url" : "CNN.3",
- "valueString" : "Technician"
+ "url": "CNN.3",
+ "valueString": "Technician"
},
{
- "url" : "CNN.4",
- "valueString" : "S"
+ "url": "CNN.4",
+ "valueString": "S"
},
{
- "url" : "CNN.5",
- "valueString" : "ESQ"
+ "url": "CNN.5",
+ "valueString": "ESQ"
},
{
- "url" : "CNN.7",
- "valueString" : "MD"
+ "url": "CNN.7",
+ "valueString": "MD"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "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/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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "123"
+ "value": "123"
}
],
- "name" : [
+ "name": [
{
- "family" : "DOE",
- "given" : [
+ "family": "DOE",
+ "given": [
"Technician",
"S"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"ESQ",
"MD"
]
@@ -4929,98 +5185,98 @@
}
},
{
- "fullUrl" : "Location/1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c",
- "identifier" : [
+ "fullUrl": "Location/1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71",
- "identifier" : [
+ "fullUrl": "Location/1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d",
+ "identifier": [
{
- "value" : "Building 123"
+ "value": "Building 123"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bu"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78",
- "identifier" : [
+ "fullUrl": "Location/1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1",
+ "identifier": [
{
- "value" : "Point of Care"
+ "value": "Point of Care"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
@@ -5030,130 +5286,130 @@
}
},
{
- "fullUrl" : "Location/1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03",
- "identifier" : [
+ "fullUrl": "Location/1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980",
+ "identifier": [
{
- "value" : "Floor A"
+ "value": "Floor A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "lvl"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699",
- "identifier" : [
+ "fullUrl": "Location/1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f",
+ "identifier": [
{
- "value" : "Room 101"
+ "value": "Room 101"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "ro"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
}
]
}
}
},
{
- "fullUrl" : "Location/1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979",
- "identifier" : [
+ "fullUrl": "Location/1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b",
+ "identifier": [
{
- "value" : "Bed A"
+ "value": "Bed A"
}
],
- "status" : "active",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
}
}
},
{
- "fullUrl" : "PractitionerRole/1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716961419237857000.20b6130d-0808-422e-91df-b1d0bc2f0b3b",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
- "valueCodeableConcept" : {
- "coding" : [
+ "fullUrl": "PractitionerRole/1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634383531196000.bf4216f7-b1f6-4c9b-bec3-b0d8e9798847",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-performerFunction",
+ "valueCodeableConcept": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
- "code" : "SPRF"
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "SPRF"
}
]
}
}
],
- "period" : {
- "start" : "2023-04-01T10:25:31-04:00",
- "_start" : {
- "extension" : [
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230401102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
}
]
},
- "end" : "2023-05-01T10:25:31-04:00",
- "_end" : {
- "extension" : [
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230501102531-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
}
]
}
},
- "practitioner" : {
- "reference" : "Practitioner/1716961419235594000.0a9e4028-10ee-4064-a39c-7a73e0dfb3ed"
+ "practitioner": {
+ "reference": "Practitioner/1731634383529972000.2ce8c144-1c57-49e3-b119-673c6918682e"
},
- "location" : [
+ "location": [
{
- "reference" : "Location/1716961419235989000.37216cf0-ce13-4296-8655-615ffe0cab8c"
+ "reference": "Location/1731634383530161000.ac2cbff3-782e-4a49-85b4-b9fb86d4e78b"
},
{
- "reference" : "Location/1716961419236323000.6ab8db02-e773-4999-8a09-ec13ece92a71"
+ "reference": "Location/1731634383530439000.2144bad5-5ace-4f99-a96e-ac4759ee1a2d"
},
{
- "reference" : "Location/1716961419236653000.539b4be9-674e-4f8f-be49-054a837f6d78"
+ "reference": "Location/1731634383530629000.db763ef0-c552-4acf-ba56-9869bcb4f4e1"
},
{
- "reference" : "Location/1716961419236972000.582a3872-056b-44fc-8988-2fb07a901f03"
+ "reference": "Location/1731634383530802000.0a2ea167-7079-4095-8b7e-9de528fdd980"
},
{
- "reference" : "Location/1716961419237422000.960273fd-3d0f-4432-8e08-9e2bc4f1b699"
+ "reference": "Location/1731634383530968000.e7e8d1fa-a491-45c5-a508-22b203a9a54f"
},
{
- "reference" : "Location/1716961419237718000.59d2400c-d6df-45e0-8f37-59c85af4e979"
+ "reference": "Location/1731634383531121000.2a9825c9-a9c1-46b6-bc8b-8f2225eace2b"
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir
index e46452d67c1..b12741be980 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orc_obr-to-servicerequest_diagnosticreport-orc-populated.fhir
@@ -1,654 +1,654 @@
{
- "resourceType" : "Bundle",
- "id" : "1715988294820844000.06e641a8-b110-4da8-80b4-6846cbdba00d",
- "meta" : {
- "lastUpdated" : "2024-05-17T19:24:54.831-04:00"
+ "resourceType": "Bundle",
+ "id": "1731634401448001000.04e14f5d-bdf0-43a5-ae09-f97beacf25ef",
+ "meta": {
+ "lastUpdated": "2024-11-14T17:33:21.452-08:00"
},
- "identifier" : {
- "system" : "https://reportstream.cdc.gov/prime-router",
- "value" : "20230816123358"
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "20230816123358"
},
- "type" : "message",
- "timestamp" : "2023-08-16T13:33:58.000-04:00",
- "entry" : [
+ "type": "message",
+ "timestamp": "2023-08-16T10:33:58.000-07:00",
+ "entry": [
{
- "fullUrl" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "resource" : {
- "resourceType" : "MessageHeader",
- "id" : "bb504ecd-c2ab-3be3-91d8-6065e2bce435",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
- "valueString" : "^~\\\u0026#"
+ "fullUrl": "MessageHeader/1731634401479764000.462363ed-4954-43ec-9314-13562dc23764",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1731634401479764000.462363ed-4954-43ec-9314-13562dc23764",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString": "^~\\\u0026#"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension": [
{
- "url" : "MSH.7",
- "valueString" : "20230816123358-0500"
+ "url": "MSH.7",
+ "valueString": "20230816123358-0500"
}
]
}
],
- "eventCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "R01",
- "display" : "ORU^R01^ORU_R01"
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "R01",
+ "display": "ORU^R01^ORU_R01"
}
}
},
{
- "fullUrl" : "Provenance/1715988295496416000.a11ab68e-8ad5-4c2a-8eae-cc9114ddff96",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1715988295496416000.a11ab68e-8ad5-4c2a-8eae-cc9114ddff96",
- "target" : [
+ "fullUrl": "Provenance/1731634401723012000.c51370d4-5a24-4d3b-8b61-e12c03acf93a",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634401723012000.c51370d4-5a24-4d3b-8b61-e12c03acf93a",
+ "target": [
{
- "reference" : "MessageHeader/bb504ecd-c2ab-3be3-91d8-6065e2bce435"
+ "reference": "MessageHeader/1731634401479764000.462363ed-4954-43ec-9314-13562dc23764"
},
{
- "reference" : "DiagnosticReport/1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9"
+ "reference": "DiagnosticReport/1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71"
}
],
- "recorded" : "2023-08-16T12:33:58-05:00",
- "activity" : {
- "coding" : [
+ "recorded": "2023-08-16T12:33:58-05:00",
+ "activity": {
+ "coding": [
{
- "display" : "ORU^R01^ORU_R01"
+ "display": "ORU^R01^ORU_R01"
}
]
}
}
},
{
- "fullUrl" : "Provenance/1715988295506948000.57ac2d0c-6d53-4f05-952e-f493efba989a",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1715988295506948000.57ac2d0c-6d53-4f05-952e-f493efba989a",
- "recorded" : "2024-05-17T19:24:55Z",
- "policy" : [
+ "fullUrl": "Provenance/1731634401729167000.2df8ebf7-34f6-4fef-8701-0860867bb6be",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634401729167000.2df8ebf7-34f6-4fef-8701-0860867bb6be",
+ "recorded": "2024-11-14T17:33:21Z",
+ "policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
- "activity" : {
- "coding" : [
+ "activity": {
+ "coding": [
{
- "code" : "v2-FHIR transformation"
+ "code": "v2-FHIR transformation"
}
]
},
- "agent" : [
+ "agent": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "assembler"
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "assembler"
}
]
},
- "who" : {
- "reference" : "Organization/1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e"
+ "who": {
+ "reference": "Organization/1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d"
}
}
]
}
},
{
- "fullUrl" : "Organization/1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1715988295506187000.3aa4f1af-9421-482b-bee8-a6fce6ad4b3e",
- "identifier" : [
+ "fullUrl": "Organization/1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634401728718000.f15133ec-4469-4997-ae52-ffe33498325d",
+ "identifier": [
{
- "value" : "CDC PRIME - Atlanta"
+ "value": "CDC PRIME - Atlanta"
},
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.114222.4.1.237821"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.114222.4.1.237821"
}
]
}
},
{
- "fullUrl" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910",
- "resource" : {
- "resourceType" : "Patient",
- "id" : "1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910"
+ "fullUrl": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1"
}
},
{
- "fullUrl" : "Provenance/1715988295525236000.84809690-8d80-4a03-971b-713d7965e138",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1715988295525236000.84809690-8d80-4a03-971b-713d7965e138",
- "target" : [
+ "fullUrl": "Provenance/1731634401740939000.078047ba-ea2f-4fa9-8692-5d5a5a7d5e0f",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1731634401740939000.078047ba-ea2f-4fa9-8692-5d5a5a7d5e0f",
+ "target": [
{
- "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910"
+ "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1"
}
],
- "recorded" : "2024-05-17T19:24:55Z",
- "activity" : {
- "coding" : [
+ "recorded": "2024-11-14T17:33:21Z",
+ "activity": {
+ "coding": [
{
- "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
- "code" : "UPDATE"
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
}
]
}
}
},
{
- "fullUrl" : "Specimen/1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
+ "fullUrl": "Specimen/1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
}
]
}
},
{
- "fullUrl" : "ServiceRequest/1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
+ "fullUrl": "ServiceRequest/1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "20230816123358-050"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230816123358-050"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "Order Status Modifier"
+ "code": "Order Status Modifier"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
{
- "url" : "ORC.5",
- "valueString" : "CM"
+ "url": "ORC.5",
+ "valueString": "CM"
},
{
- "url" : "ORC.6",
- "valueString" : "R"
+ "url": "ORC.6",
+ "valueString": "R"
},
{
- "url" : "ORC.19",
- "valueReference" : {
- "reference" : "Practitioner/1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20"
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4"
}
},
{
- "url" : "ORC.19",
- "valueReference" : {
- "reference" : "Practitioner/1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48"
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32"
}
},
{
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6"
}
},
{
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb"
}
},
{
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Facility Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Facility Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Facility Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
},
{
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "600 5TH AVE"
+ "url": "SAD.1",
+ "valueString": "600 5TH AVE"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"600 5TH AVE"
],
- "city" : "THUNDER VALLEY",
- "state" : "NV",
- "postalCode" : "12345",
- "country" : "USA"
+ "city": "THUNDER VALLEY",
+ "state": "NV",
+ "postalCode": "12345",
+ "country": "USA"
}
},
{
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Provider Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Provider Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Provider Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
},
{
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "600 5TH AVE"
+ "url": "SAD.1",
+ "valueString": "600 5TH AVE"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"600 5TH AVE"
],
- "city" : "THUNDER VALLEY",
- "state" : "NV",
- "postalCode" : "12345",
- "country" : "USA"
+ "city": "THUNDER VALLEY",
+ "state": "NV",
+ "postalCode": "12345",
+ "country": "USA"
}
},
{
- "url" : "ORC.27",
- "valueString" : "20230816123358-0500"
+ "url": "ORC.27",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "ORC.28",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.28",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "567",
- "display" : "E"
+ "code": "567",
+ "display": "E"
}
]
}
},
{
- "url" : "ORC.30",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.30",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "U"
+ "code": "123",
+ "display": "U"
}
]
}
},
{
- "url" : "ORC.31",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.31",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "Parent"
+ "code": "123",
+ "display": "Parent"
}
]
}
},
{
- "url" : "ORC.34",
- "valueIdentifier" : {
- "extension" : [
+ "url": "ORC.34",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CSV"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "11D1111111"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "CLIA"
}
]
}
],
- "value" : "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
}
},
{
- "url" : "ORC.8",
- "valueIdentifier" : {
- "extension" : [
+ "url": "ORC.8",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Assigned Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Assigned Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Assigned Universal"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Assigned Universal"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "Filler Assigned"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Filler Assigned"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Assigned Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Assigned Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Assigned Universal"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Assigned Universal"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Placer Assigned"
+ "value": "Placer Assigned"
}
},
{
- "url" : "ORC.10",
- "valueReference" : {
- "reference" : "Practitioner/1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692"
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774"
}
},
{
- "url" : "ORC.10",
- "valueReference" : {
- "reference" : "Practitioner/1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831"
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390"
}
},
{
- "url" : "ORC.11",
- "valueReference" : {
- "reference" : "Practitioner/1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c"
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452"
}
},
{
- "url" : "ORC.11",
- "valueReference" : {
- "reference" : "Practitioner/1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b"
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0"
}
},
{
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039"
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319"
}
},
{
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be"
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9"
}
},
{
- "url" : "ORC.13",
- "valueReference" : {
- "reference" : "Location/1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8"
+ "url": "ORC.13",
+ "valueReference": {
+ "reference": "Location/1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739"
}
},
{
- "url" : "ORC.15",
- "valueString" : "20230816123358-0500"
+ "url": "ORC.15",
+ "valueString": "20230816123358-0500"
},
{
- "url" : "ORC.17",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.17",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "481",
- "display" : "Entering ORG"
+ "code": "481",
+ "display": "Entering ORG"
}
]
}
},
{
- "url" : "ORC.18",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "ORC.18",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "Entering Device"
+ "code": "Entering Device"
}
]
}
@@ -656,317 +656,317 @@
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
{
- "url" : "OBR.22",
- "valueString" : "2023"
+ "url": "OBR.22",
+ "valueString": "2023"
},
{
- "url" : "OBR.25",
- "valueId" : "F"
+ "url": "OBR.25",
+ "valueId": "F"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.33"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Alt"
+ "value": "Alt"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Placer Order2"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.33"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Alt2"
+ "value": "Alt2"
}
],
- "status" : "completed",
- "code" : {
- "coding" : [
+ "status": "completed",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "code" : "12345-6",
- "display" : "TEST"
+ "system": "http://loinc.org",
+ "code": "12345-6",
+ "display": "TEST"
}
]
},
- "subject" : {
- "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910"
+ "subject": {
+ "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1"
},
- "requester" : {
- "extension" : [
+ "requester": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "BP"
+ "url": "XTN.3",
+ "valueString": "BP"
},
{
- "url" : "XTN.7",
- "valueString" : "7595016"
+ "url": "XTN.7",
+ "valueString": "7595016"
},
{
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
}
],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "home"
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "home"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "otto.daugherty@email.com"
+ "url": "XTN.4",
+ "valueString": "otto.daugherty@email.com"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
}
],
- "system" : "email",
- "value" : "otto.daugherty@email.com",
- "use" : "home"
+ "system": "email",
+ "value": "otto.daugherty@email.com",
+ "use": "home"
}
}
],
- "reference" : "PractitionerRole/1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24"
+ "reference": "PractitionerRole/1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e"
},
- "locationCode" : [
+ "locationCode": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "123",
- "display" : "location"
+ "code": "123",
+ "display": "location"
}
]
}
@@ -974,2966 +974,2966 @@
}
},
{
- "fullUrl" : "Practitioner/1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ORDERING",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ORDERING",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "PROVIDER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "PROVIDER"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Provider Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Provider Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Provider Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Location/1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "fullUrl": "Location/1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "LN",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1715988303442531000.21589bf1-f058-4d85-bd79-0c9520a73140"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1731634401864671000.67ac076c-043b-4ef6-81d7-b35f5878c5f9"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "123"
+ "value": "123"
}
],
- "name" : "Ordering Facility",
- "telecom" : [
+ "name": "Ordering Facility",
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "1"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "260"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "7595016"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "BP"
+ "url": "XTN.3",
+ "valueString": "BP"
},
{
- "url" : "XTN.7",
- "valueString" : "7595016"
+ "url": "XTN.7",
+ "valueString": "7595016"
},
{
- "url" : "XTN.12",
- "valueString" : "+1 260 759 5016"
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
}
]
}
],
- "system" : "pager",
- "value" : "+1 260 759 5016",
- "use" : "home"
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "home"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "PRN"
+ "url": "XTN.2",
+ "valueString": "PRN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "orderingfacility@email.com"
+ "url": "XTN.4",
+ "valueString": "orderingfacility@email.com"
}
]
}
],
- "system" : "email",
- "value" : "orderingfacility@email.com",
- "use" : "home"
+ "system": "email",
+ "value": "orderingfacility@email.com",
+ "use": "home"
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
- "valueCode" : "6059"
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "6059"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "4861"
+ "url": "SAD.1",
+ "valueString": "4861"
},
{
- "url" : "SAD.2",
- "valueString" : "20TH AVE"
+ "url": "SAD.2",
+ "valueString": "20TH AVE"
},
{
- "url" : "SAD.3",
- "valueString" : "1"
+ "url": "SAD.3",
+ "valueString": "1"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Ordering Facility Address"
+ "url": "XAD.2",
+ "valueString": "Ordering Facility Address"
},
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
},
{
- "url" : "XAD.8",
- "valueString" : "Other Geographic Designation"
+ "url": "XAD.8",
+ "valueString": "Other Geographic Designation"
},
{
- "url" : "XAD.11",
- "valueCode" : "A"
+ "url": "XAD.11",
+ "valueCode": "A"
},
{
- "url" : "XAD.13",
- "valueString" : "20220501102531-0400"
+ "url": "XAD.13",
+ "valueString": "20220501102531-0400"
},
{
- "url" : "XAD.14",
- "valueString" : "20230501102531-0400"
+ "url": "XAD.14",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XAD.19",
- "valueCode" : "Adressee"
+ "url": "XAD.19",
+ "valueCode": "Adressee"
}
]
}
],
- "use" : "home",
- "line" : [
+ "use": "home",
+ "line": [
"4861",
"20TH AVE",
"1",
"Ordering Facility Address",
"Adressee"
],
- "city" : "THUNDER MOUNTAIN",
- "district" : "County",
- "state" : "IG",
- "postalCode" : "99999",
- "country" : "USA",
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "city": "THUNDER MOUNTAIN",
+ "district": "County",
+ "state": "IG",
+ "postalCode": "99999",
+ "country": "USA",
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "PractitionerRole/1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1715988301847864000.ffbe62bb-d0d6-45c1-b544-68b38d166f24",
- "practitioner" : {
- "reference" : "Practitioner/1715988303441133000.1649e17c-7c23-40b7-b1e4-ed1bc70566e9"
+ "fullUrl": "PractitionerRole/1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1731634401855441000.fef90d84-6fc0-4185-b962-37086b36c34e",
+ "practitioner": {
+ "reference": "Practitioner/1731634401863992000.d5fe288d-5349-4332-a9c7-0d63840b8830"
},
- "organization" : {
- "reference" : "Organization/1715988303461450000.6aa6e959-bda8-44bb-97ea-57920af54de4"
+ "organization": {
+ "reference": "Organization/1731634401868079000.d212aee0-96ba-4b97-a6cf-596dd97ee224"
}
}
},
{
- "fullUrl" : "Practitioner/1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988306639438000.feb16641-9b1f-4953-a479-f6fe13834e20",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401874474000.ad213a69-f769-445f-89ad-66fa8ce51ca4",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ACTION",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ACTION",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988308246203000.42e47716-e6a2-405d-b198-11c03f8def48",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401876703000.7f87d17f-6c07-4d2a-b1a2-010fa9efbc32",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ACTION",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ACTION",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER2"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER2"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Location/1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "fullUrl": "Location/1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1715988308724108000.ae33831c-4803-41ee-9eef-2618ccc89860",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634401877845000.9e8d3eea-d7a6-40ec-a32b-b7ead9e6e7e6",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "LN",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1715988308723269000.dfb1fcbc-d1ee-40be-87b1-d1959647e7da"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1731634401877275000.3925f707-9f90-4b68-ae6c-1f3ffca50e35"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "123"
+ "value": "123"
}
],
- "name" : "Ordering Facility"
+ "name": "Ordering Facility"
}
},
{
- "fullUrl" : "Location/1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "fullUrl": "Location/1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital B",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital B",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1715988309194822000.3426e744-457c-4879-b91a-7879aa989bd4",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634401878818000.18111dd1-3594-416d-a369-1c28a38fd8fb",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestTex2t"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestTex2t"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText2"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText2"
}
],
- "text" : "OriginalText2"
+ "text": "OriginalText2"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestTex2t"
+ "system": "LN",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestTex2t"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit2"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Assigning Authority2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.1.4.1"
+ "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": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1715988309194180000.233c1220-483e-436e-916c-8fefcb35963e"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1731634401878324000.70843538-e5d5-4640-879b-355dd4a675e9"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "123"
+ "value": "123"
}
],
- "name" : "Ordering Facility2"
+ "name": "Ordering Facility2"
}
},
{
- "fullUrl" : "Practitioner/1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988317562223000.7abd515b-4d30-4e61-b423-c63fe8082692",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401884037000.c8a3d395-02f8-464f-8db0-4344bb25b774",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ENTERED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ENTERED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988319337140000.05734ef1-fe2c-4fad-a7d1-4cdfcd5e5831",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401886020000.4f6568a5-d8e4-4118-90fb-eb9e73648390",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ENTERED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ENTERED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER2"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER2"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988321178960000.0d9ae881-7d58-4791-954b-d7bde16f1a9c",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401887940000.8c7f2285-2f06-4b37-ba8b-836caed99452",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "VERIFIED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "VERIFIED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988322969087000.24e2c013-b78a-437a-a3ce-d9fd5016708b",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401889621000.a4bfdd8d-fc61-448a-83db-b6f74460b6d0",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "VERIFIED",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "VERIFIED",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "BY"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BY"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER2"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER2"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988324811292000.40c02eb0-bffe-4d90-a002-c6face96e039",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401891345000.a552a475-0da0-4adf-a4b6-918419a34319",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "LUDWIG"
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ORDERING",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ORDERING",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "PROVIDER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "PROVIDER"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
}
]
},
- "given" : [
+ "given": [
"LUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Practitioner/1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1715988326643808000.953e8e9c-7119-480c-b4ce-22bfb74410be",
- "extension" : [
+ "fullUrl": "Practitioner/1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1731634401893034000.10257238-d5a0-4d6c-92e0-a90e4ed721e9",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "AssigningSystem"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "UUID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "RUDWIG"
+ "url": "XCN.3",
+ "valueString": "RUDWIG"
},
{
- "url" : "XCN.4",
- "valueString" : "B"
+ "url": "XCN.4",
+ "valueString": "B"
},
{
- "url" : "XCN.20",
- "valueString" : "20230501102531-0400"
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "XCN.21",
- "valueString" : "MD"
+ "url": "XCN.21",
+ "valueString": "MD"
},
{
- "url" : "XCN.22",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignJ"
+ "code": "AssignJ"
}
]
}
},
{
- "url" : "XCN.23",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "AssignA"
+ "code": "AssignA"
}
]
}
},
{
- "url" : "XCN.5",
- "valueString" : "2ND"
+ "url": "XCN.5",
+ "valueString": "2ND"
},
{
- "url" : "XCN.7",
- "valueString" : "MD"
+ "url": "XCN.7",
+ "valueString": "MD"
},
{
- "url" : "XCN.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "SRC"
+ "code": "SRC"
}
]
}
},
{
- "url" : "XCN.10",
- "valueString" : "B"
+ "url": "XCN.10",
+ "valueString": "B"
},
{
- "url" : "XCN.15",
- "valueString" : "A"
+ "url": "XCN.15",
+ "valueString": "A"
},
{
- "url" : "XCN.16",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "NameContext"
+ "code": "NameContext"
}
]
}
},
{
- "url" : "XCN.19",
- "valueString" : "20220501102531-0400"
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "A"
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "NPI"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "DL"
+ "code": "DL"
}
]
},
- "system" : "Namespace",
- "value" : "1"
+ "system": "Namespace",
+ "value": "1"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
- "valueCode" : "G"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
}
],
- "use" : "official",
- "family" : "ORDERING",
- "_family" : {
- "extension" : [
+ "use": "official",
+ "family": "ORDERING",
+ "_family": {
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
- "valueString" : "VAN"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
- "valueString" : "PROVIDER"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "PROVIDER"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
- "valueString" : "VAL"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
- "valueString" : "ROGER2"
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER2"
}
]
},
- "given" : [
+ "given": [
"RUDWIG",
"B"
],
- "prefix" : [
+ "prefix": [
"DR"
],
- "suffix" : [
+ "suffix": [
"2ND",
"MD",
"MD"
],
- "period" : {
- "start" : "2022-05-01T10:25:31-04:00",
- "end" : "2023-05-01T10:25:31-04:00"
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
}
}
]
}
},
{
- "fullUrl" : "Organization/1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13",
- "identifier" : [
+ "fullUrl": "Organization/1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "ASSIGNEE"
+ "value": "ASSIGNEE"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "UUID"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "UUID"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "222.1111.22222"
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
}
]
}
},
{
- "fullUrl" : "Location/1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8",
- "identifier" : [
+ "fullUrl": "Location/1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.4.4.4"
+ "value": "2.4.4.4"
}
],
- "physicalType" : {
- "coding" : [
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Location/1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a",
- "identifier" : [
+ "fullUrl": "Location/1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Point of Care"
+ "value": "Point of Care"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.1.1.1"
+ "value": "2.1.1.1"
}
],
- "physicalType" : {
- "coding" : [
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "_code" : {
- "extension" : [
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
- "valueString" : "poc"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
}
]
}
}
]
},
- "partOf" : {
- "reference" : "Location/1715988327115045000.4fcac2cf-c4dd-48f6-8c16-c5f2257b4ac8"
+ "partOf": {
+ "reference": "Location/1731634401894034000.635fde79-31aa-4e92-9f7c-455b42eb3a00"
}
}
},
{
- "fullUrl" : "Location/1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1715988327115338000.a7aee7d5-d634-4ece-bb36-4e0187dc36c8",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
- "valueString" : "location type"
+ "fullUrl": "Location/1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1731634401894270000.1eedb96f-de10-4f39-8f1a-4dbe19f12739",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Bed A"
+ "value": "Bed A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.3.3.3"
+ "value": "2.3.3.3"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "NAME"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "UNI"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
- "valueString" : "organization"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
}
],
- "value" : "Entity ID",
- "assigner" : {
- "reference" : "Organization/1715988327113928000.0574dfbe-558d-47d4-931e-6c382f8bbe13"
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1731634401893373000.90dfed1f-50bd-4069-8627-59c325c7ec79"
}
}
],
- "status" : "active",
- "description" : "Description",
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "bd"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
}
]
},
- "partOf" : {
- "reference" : "Location/1715988327115147000.dcf8e99c-0de0-48da-9445-e1b918e7887a"
+ "partOf": {
+ "reference": "Location/1731634401894114000.0a8d07a5-10f4-41c6-a021-69e1d6cf4591"
}
}
},
{
- "fullUrl" : "DiagnosticReport/1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1715988329002527000.3a9d79cd-5dfa-4ed9-be24-57fd943d59e9",
- "extension" : [
- {
- "url" : "http://hl7.org/fhir/StructureDefinition/event-statusReason",
- "valueCodeableConcept" : {
- "text" : "Control Code Reason"
+ "fullUrl": "DiagnosticReport/1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1731634401912861000.f80f2f58-064f-4b21-8607-4fbe5024ae71",
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/event-statusReason",
+ "valueCodeableConcept": {
+ "text": "Control Code Reason"
}
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Placer Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Placer Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Placer Identifier"
+ "value": "Placer Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Filler Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Filler Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "Filler Identifier"
+ "value": "Filler Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Group Identifier Namespace"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Group Identifier Namespace"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "Group Universal ID"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Group Universal ID"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "Group Identifier"
+ "value": "Group Identifier"
}
],
- "basedOn" : [
+ "basedOn": [
{
- "reference" : "ServiceRequest/1715988328980595000.46fa67cf-fd89-4e38-aee9-8e45ae473886"
+ "reference": "ServiceRequest/1731634401895562000.2091f6e1-26e9-4e2a-9da1-50f5cf8d00a7"
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "code" : "12345-6",
- "display" : "TEST"
+ "system": "http://loinc.org",
+ "code": "12345-6",
+ "display": "TEST"
}
]
},
- "subject" : {
- "reference" : "Patient/1715988295524561000.254958e7-f6b3-4fbe-ac16-9f457ded3910"
+ "subject": {
+ "reference": "Patient/1731634401740435000.f39d452d-069d-450c-8ff1-3e2dda2270a1"
},
- "issued" : "2023",
- "_issued" : {
- "extension" : [
+ "issued": "2023",
+ "_issued": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "2023"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2023"
}
]
},
- "specimen" : [
+ "specimen": [
{
- "reference" : "Specimen/1715988295526768000.81b10cff-cb7e-4988-b7de-8180bc4c918d"
+ "reference": "Specimen/1731634401742218000.f1b9b00a-efa9-4634-96a0-2d79df6d19a0"
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir
new file mode 100644
index 00000000000..b2bccf05edd
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.fhir
@@ -0,0 +1,547 @@
+{
+ "resourceType" : "Bundle",
+ "id" : "1731705756874644000.31d6c7fa-b52e-4332-80be-9c3c579f08b1",
+ "meta" : {
+ "lastUpdated" : "2024-11-15T13:22:36.878-08:00"
+ },
+ "identifier" : {
+ "system" : "https://reportstream.cdc.gov/prime-router",
+ "value" : "20230816123358"
+ },
+ "type" : "message",
+ "timestamp" : "2023-08-16T10:33:58.000-07:00",
+ "entry" : [ {
+ "fullUrl" : "MessageHeader/1731705756906574000.495873e0-6eb5-404b-b496-178d77913d2a",
+ "resource" : {
+ "resourceType" : "MessageHeader",
+ "id" : "1731705756906574000.495873e0-6eb5-404b-b496-178d77913d2a",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension" : [ {
+ "url" : "MSH.7",
+ "valueString" : "20230816123358-0500"
+ } ]
+ } ],
+ "eventCoding" : {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code" : "O01",
+ "display" : "ORM^O01^ORM_O01"
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705757157024000.ad8e8682-2895-46fc-8b3c-546c691f3414",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705757157024000.ad8e8682-2895-46fc-8b3c-546c691f3414",
+ "recorded" : "2023-08-16T12:33:58-05:00",
+ "activity" : {
+ "coding" : [ {
+ "display" : "ORM^O01^ORM_O01"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705757164871000.8556d178-a658-4982-8ca0-f4e911d0a0dd",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705757164871000.8556d178-a658-4982-8ca0-f4e911d0a0dd",
+ "recorded" : "2024-11-15T13:22:37Z",
+ "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/1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Organization/1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1731705757164365000.09f7ae73-4cd0-4b82-9eca-3eb5b53ae1e8",
+ "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"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f"
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705757173844000.1e0be0d5-1d31-4172-b7af-1580371a2417",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705757173844000.1e0be0d5-1d31-4172-b7af-1580371a2417",
+ "target" : [ {
+ "reference" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f"
+ } ],
+ "recorded" : "2024-11-15T13:22:37Z",
+ "activity" : {
+ "coding" : [ {
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "ServiceRequest/1731705757192137000.c40ed560-8573-4a2e-8a78-65e98a0f9cfe",
+ "resource" : {
+ "resourceType" : "ServiceRequest",
+ "id" : "1731705757192137000.c40ed560-8573-4a2e-8a78-65e98a0f9cfe",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode" : "RE"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.15.1",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "ID"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.2",
+ "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" : "HL70371"
+ } ],
+ "code" : "BOUIN",
+ "display" : "Bouin's solution"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.3",
+ "valueString" : "Collection Method"
+ }, {
+ "url" : "OBR.15.4",
+ "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" : "HL70163"
+ } ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code" : "LN",
+ "display" : "Left Naris"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.6",
+ "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" : "HL7"
+ } ],
+ "code" : "CMMC",
+ "display" : "Collection Method Modifer Code"
+ } ]
+ }
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2020-08-18T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.8",
+ "valueDateTime" : "2020-08-19T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4439",
+ "display" : "Collectors Comment"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4438",
+ "display" : "Collectors Comment2"
+ } ]
+ }
+ }, {
+ "url" : "OBR.9",
+ "valueQuantity" : {
+ "value" : 1771
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849"
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593"
+ }
+ }, {
+ "url" : "OBR.14",
+ "valueDateTime" : "2024-02-20T09:00:00Z",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "202402200900"
+ } ]
+ }
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "ORC.2"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code" : "PLAC"
+ } ]
+ },
+ "value" : "Specimen123"
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1731705757173333000.42d3b6d7-3177-4a33-b9cf-c50d98609e5f"
+ }
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705757188158000.eb7a5c57-a821-4c3d-be74-9cf989f71849",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705757190973000.df7be9e7-851c-4f15-bec9-09e434367593",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "RUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector2",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "RUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ } ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7
new file mode 100644
index 00000000000..813e79a6de1
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/orm-obr-to-specimen.hl7
@@ -0,0 +1,4 @@
+MSH|^~\&|||||20230816123358-0500||ORM^O01^ORM_O01|20230816123358||2.5.1
+PID|1
+ORC|RE|Specimen123
+OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir
new file mode 100644
index 00000000000..cee9fcced4a
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.fhir
@@ -0,0 +1,842 @@
+{
+ "resourceType" : "Bundle",
+ "id" : "1731705743049471000.ebd65e23-268a-4ee6-8951-b3bba9cc2860",
+ "meta" : {
+ "lastUpdated" : "2024-11-15T13:22:23.053-08:00"
+ },
+ "identifier" : {
+ "system" : "https://reportstream.cdc.gov/prime-router",
+ "value" : "20230816123358"
+ },
+ "type" : "message",
+ "timestamp" : "2023-08-16T10:33:58.000-07:00",
+ "entry" : [ {
+ "fullUrl" : "MessageHeader/1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3",
+ "resource" : {
+ "resourceType" : "MessageHeader",
+ "id" : "1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString" : "^~\\"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension" : [ {
+ "url" : "MSH.7",
+ "valueString" : "20230816123358-0500"
+ } ]
+ } ],
+ "eventCoding" : {
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code" : "R01",
+ "display" : "ORU^R01^ORU_R01"
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705743352177000.2de9ede7-62fd-467e-ab8c-21c70a1d1a1f",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705743352177000.2de9ede7-62fd-467e-ab8c-21c70a1d1a1f",
+ "target" : [ {
+ "reference" : "MessageHeader/1731705743080590000.c25690ff-bd09-4d75-94ef-8c385c3e32b3"
+ }, {
+ "reference" : "DiagnosticReport/1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba"
+ } ],
+ "recorded" : "2023-08-16T12:33:58-05:00",
+ "activity" : {
+ "coding" : [ {
+ "display" : "ORU^R01^ORU_R01"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705743359176000.899aa1c8-4aad-4965-9b51-b90f2e8b8210",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705743359176000.899aa1c8-4aad-4965-9b51-b90f2e8b8210",
+ "recorded" : "2024-11-15T13:22:23Z",
+ "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/1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Organization/1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1731705743358731000.ec62573c-ab2a-4492-b234-592c121d1d65",
+ "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"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d",
+ "resource" : {
+ "resourceType" : "Patient",
+ "id" : "1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d"
+ }
+ }, {
+ "fullUrl" : "Provenance/1731705743371816000.0a2963d3-1507-45e5-8325-88a21490665a",
+ "resource" : {
+ "resourceType" : "Provenance",
+ "id" : "1731705743371816000.0a2963d3-1507-45e5-8325-88a21490665a",
+ "target" : [ {
+ "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d"
+ } ],
+ "recorded" : "2024-11-15T13:22:23Z",
+ "activity" : {
+ "coding" : [ {
+ "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code" : "UPDATE"
+ } ]
+ }
+ }
+ }, {
+ "fullUrl" : "Specimen/1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8",
+ "resource" : {
+ "resourceType" : "Specimen",
+ "id" : "1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString" : "OBR"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "ID"
+ } ]
+ },
+ "receivedTime" : "2024-02-20T09:00:00Z",
+ "_receivedTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "202402200900"
+ } ]
+ },
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b"
+ },
+ "collectedPeriod" : {
+ "start" : "2020-08-18T12:33:58-05:00",
+ "_start" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ },
+ "end" : "2020-08-19T12:33:58-05:00",
+ "_end" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ },
+ "quantity" : {
+ "value" : 1771
+ },
+ "bodySite" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70163"
+ } ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code" : "LN",
+ "display" : "Left Naris"
+ } ]
+ }
+ },
+ "container" : [ {
+ "additiveCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL70371"
+ } ],
+ "code" : "BOUIN",
+ "display" : "Bouin's solution"
+ } ]
+ }
+ } ],
+ "condition" : [ {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString" : "HL7"
+ } ],
+ "code" : "CMMC",
+ "display" : "Collection Method Modifer Code"
+ } ]
+ } ],
+ "note" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString" : "OBR.15.3"
+ } ],
+ "text" : "Collection Method"
+ }, {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4439",
+ "display" : "Collectors Comment"
+ } ]
+ }
+ } ],
+ "text" : "4439, Collectors Comment"
+ }, {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-annotation",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4438",
+ "display" : "Collectors Comment2"
+ } ]
+ }
+ } ],
+ "text" : "4438, Collectors Comment2"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705743384334000.dde58ec9-c036-482b-ae98-e459534aee8b",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "ServiceRequest/1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265",
+ "resource" : {
+ "resourceType" : "ServiceRequest",
+ "id" : "1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension" : [ {
+ "url" : "OBR.15.1",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "ID"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.2",
+ "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" : "HL70371"
+ } ],
+ "code" : "BOUIN",
+ "display" : "Bouin's solution"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.3",
+ "valueString" : "Collection Method"
+ }, {
+ "url" : "OBR.15.4",
+ "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" : "HL70163"
+ } ],
+ "system" : "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code" : "LN",
+ "display" : "Left Naris"
+ } ]
+ }
+ }, {
+ "url" : "OBR.15.6",
+ "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" : "HL7"
+ } ],
+ "code" : "CMMC",
+ "display" : "Collection Method Modifer Code"
+ } ]
+ }
+ }, {
+ "url" : "OBR.7",
+ "valueDateTime" : "2020-08-18T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.8",
+ "valueDateTime" : "2020-08-19T12:33:58-05:00",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4439",
+ "display" : "Collectors Comment"
+ } ]
+ }
+ }, {
+ "url" : "OBR.39",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "4438",
+ "display" : "Collectors Comment2"
+ } ]
+ }
+ }, {
+ "url" : "OBR.9",
+ "valueQuantity" : {
+ "value" : 1771
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e"
+ }
+ }, {
+ "url" : "OBR.10",
+ "valueReference" : {
+ "reference" : "Practitioner/1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52"
+ }
+ }, {
+ "url" : "OBR.14",
+ "valueDateTime" : "2024-02-20T09:00:00Z",
+ "_valueDateTime" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "202402200900"
+ } ]
+ }
+ } ]
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d"
+ }
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705743506205000.6d891283-9c0e-44e8-8a51-70c9ed6d468e",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1731705743508699000.a4c084d9-f46c-4229-be7b-49996c81bd52",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "RUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "Collector2",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "Identifier"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "RUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
+ } ]
+ }
+ }, {
+ "fullUrl" : "DiagnosticReport/1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba",
+ "resource" : {
+ "resourceType" : "DiagnosticReport",
+ "id" : "1731705743513434000.3943869b-4a3d-461c-8013-5825f1241dba",
+ "basedOn" : [ {
+ "reference" : "ServiceRequest/1731705743509696000.628e4632-6f4b-44cb-9596-d2d757413265"
+ } ],
+ "status" : "unknown",
+ "subject" : {
+ "reference" : "Patient/1731705743371272000.5e0cbb2a-6ba5-4289-8eed-b5fcecc9753d"
+ },
+ "effectivePeriod" : {
+ "start" : "2020-08-18T12:33:58-05:00",
+ "_start" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200818123358-0500"
+ } ]
+ },
+ "end" : "2020-08-19T12:33:58-05:00",
+ "_end" : {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString" : "20200819123358-0500"
+ } ]
+ }
+ },
+ "specimen" : [ {
+ "reference" : "Specimen/1731705743376541000.9d554d41-22bd-4bd9-9be3-6ffc05cfe7a8"
+ } ]
+ }
+ } ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7
new file mode 100644
index 00000000000..f97e0f720e8
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orcobr/oru-obr-to-specimen.hl7
@@ -0,0 +1,3 @@
+MSH|^~\|||||20230816123358-0500||ORU^R01^ORU_R01|20230816123358||2.5.1
+PID|1
+OBR|1||||||20200818123358-0500|20200819123358-0500|1771|1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^Collector2&VAN&Identifier&VAL&ROGER^RUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||||202402200900|ID^BOUIN&Bouin's solution&HL70371^Collection Method^LN&Left Naris&HL70163^^CMMC&Collection Method Modifer Code&HL7||||||||||||||||||||||||4439^Collectors Comment~4438^Collectors Comment2
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir
new file mode 100644
index 00000000000..be9dcdbbb46
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.fhir
@@ -0,0 +1,10517 @@
+{
+ "resourceType": "Bundle",
+ "id": "1732562153058506000.7cc24107-cbb3-445d-9ef3-20575f5535e3",
+ "meta": {
+ "lastUpdated": "2024-11-25T14:15:53.069-05:00"
+ },
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "0123"
+ },
+ "type": "message",
+ "timestamp": "2019-07-20T09:12:29.000-04:00",
+ "entry": [
+ {
+ "fullUrl": "MessageHeader/1732562153157287000.e92f3023-52ef-4fbc-a6ba-48dd04e150d9",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1732562153157287000.e92f3023-52ef-4fbc-a6ba-48dd04e150d9",
+ "meta": {
+ "security": [
+ {
+ "code": "msh8placeholder"
+ }
+ ],
+ "tag": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0103",
+ "code": "P"
+ },
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0207",
+ "code": "A"
+ }
+ ]
+ },
+ "language": "ENG",
+ "extension": [
+ {
+ "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": "20190720091229"
+ },
+ {
+ "url": "MSH.13",
+ "valueString": "42"
+ },
+ {
+ "url": "MSH.14",
+ "valueString": "msh14placeholder"
+ },
+ {
+ "url": "MSH.15",
+ "valueString": "AL"
+ },
+ {
+ "url": "MSH.16",
+ "valueString": "AL"
+ },
+ {
+ "url": "MSH.19",
+ "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": "ISO"
+ }
+ ],
+ "version": "131",
+ "code": "ENG",
+ "display": "English"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
+ }
+ ],
+ "code": "2ndalt",
+ "display": "Second Alt"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "altISO"
+ }
+ ],
+ "version": "313",
+ "code": "altE",
+ "display": "altEnglish"
+ }
+ ],
+ "text": "originaltext"
+ }
+ },
+ {
+ "url": "MSH.20",
+ "valueString": "UNICODE UTF-16"
+ },
+ {
+ "url": "MSH.21",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "PHIN"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.9.11"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "PHLabReport-NoAck"
+ }
+ },
+ {
+ "url": "MSH.24",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SendingNetworkAddress"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "1.23.987.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "O01",
+ "display": "ORM^O01^ORM_O01"
+ },
+ "destination": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.181960.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.5"
+ }
+ ],
+ "name": "txdshslabNBS",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.1.181960.2",
+ "receiver": {
+ "reference": "Organization/1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "9.87.123.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.25"
+ }
+ ],
+ "name": "ReceivingNetworkAddress",
+ "endpoint": "urn:oid:9.87.123.1.114222.XXX",
+ "receiver": {
+ "reference": "Organization/1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e"
+ }
+ },
+ {
+ "receiver": {
+ "reference": "Organization/1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229"
+ }
+ }
+ ],
+ "sender": {
+ "reference": "Organization/1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2"
+ },
+ "source": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "OrderingFacilityApplicationName"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.XXX"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.3"
+ }
+ ],
+ "endpoint": "urn:oid:2.16.840.1.114222.XXX"
+ },
+ "responsible": {
+ "reference": "Organization/1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a"
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153123310000.dd82ace9-715d-4637-bdd6-9168cfe52cb2",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "OrderingFacilityName"
+ },
+ {
+ "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.114222.XXX"
+ }
+ ],
+ "address": [
+ {
+ "country": "FR"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1.8.440.1.1138.9.22"
+ }
+ ],
+ "name": "Clinic A",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153151265000.9bb994e6-10bc-44ca-be6f-6a3b49f0993a",
+ "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": "1357-9",
+ "display": "SomeText"
+ },
+ {
+ "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": "2468-5",
+ "display": "SomeAltText"
+ }
+ ],
+ "text": "OriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1357-9",
+ "display": "SomeText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "1111"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "9"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "The Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "4.2.8.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "BCV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562153145172000.e4978d40-c022-47e7-8443-cf61eb977e14"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BC"
+ }
+ ]
+ },
+ "value": "OrgIdentifier2"
+ }
+ ],
+ "name": "Sending Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153152314000.636eb862-9bcf-4578-a8c4-76d76a52c7ba",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "txdshslab"
+ },
+ {
+ "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.114222.4.1.181960"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153153628000.0edff44e-8d45-4fc3-b5c3-08fbed46c70e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "txdshslab"
+ },
+ {
+ "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.114222.4.1.181960"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "10.10.40.10.11380.90.22"
+ }
+ ],
+ "name": "Clinic B",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153157046000.37e93667-a04a-48be-b006-008c74bb0229",
+ "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": "1133-5",
+ "display": "SomeOtherText"
+ },
+ {
+ "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": "1298-7",
+ "display": "SomeOtherAltText"
+ }
+ ],
+ "text": "TheOriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1133-5",
+ "display": "SomeOtherText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "5555"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier3"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.23"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "8"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "An Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "45.24.167.43"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "CCTV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562153155241000.f7d91a91-d032-427f-a60f-1c9d160143c8"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BCVan"
+ }
+ ]
+ },
+ "value": "OrgIdentifier3"
+ }
+ ],
+ "name": "Receiving Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732562153760137000.9845f2ac-0c8e-4157-bf81-430b8f689f6a",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732562153760137000.9845f2ac-0c8e-4157-bf81-430b8f689f6a",
+ "recorded": "2019-07-20T09:12:29Z",
+ "activity": {
+ "coding": [
+ {
+ "display": "ORM^O01^ORM_O01"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1.8.440.1.1138.9.22"
+ }
+ ],
+ "name": "Clinic A",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153759773000.5080022a-2415-47cf-8028-6440055dff6c",
+ "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": "1357-9",
+ "display": "SomeText"
+ },
+ {
+ "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": "2468-5",
+ "display": "SomeAltText"
+ }
+ ],
+ "text": "OriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1357-9",
+ "display": "SomeText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "1111"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier2"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "9"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "The Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "4.2.8.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "BCV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562153758411000.b85d5a33-3539-4bb5-84ce-e23b322ecc6b"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BC"
+ }
+ ]
+ },
+ "value": "OrgIdentifier2"
+ }
+ ],
+ "name": "Sending Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732562153773679000.9c273ef9-317b-4457-acaa-d0a10be76910",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732562153773679000.9c273ef9-317b-4457-acaa-d0a10be76910",
+ "recorded": "2024-11-25T14:15:53Z",
+ "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/1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153773433000.efe18488-3dea-42aa-b546-44a2320a3f28",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768",
+ "meta": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/last-updated-facility-namespace-id",
+ "valueReference": {
+ "reference": "Organization/1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2"
+ }
+ }
+ ],
+ "lastUpdated": "2024-08-21T11:38:00Z",
+ "_lastUpdated": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202408211138"
+ }
+ ]
+ }
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230601"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20350201"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Coded comment for patient note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Accession level coment."
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "y"
+ }
+ ],
+ "version": "a",
+ "code": "z",
+ "display": "x"
+ }
+ ],
+ "text": "b"
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530"
+ },
+ "time": "2023-05-31",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230531"
+ }
+ ]
+ },
+ "text": "Accession level coment."
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230601"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20350201"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "Coded comment for patient note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Accession level coment 2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "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": "HL70364"
+ }
+ ],
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "y"
+ }
+ ],
+ "version": "a",
+ "code": "z",
+ "display": "x"
+ }
+ ],
+ "text": "b"
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397"
+ },
+ "time": "2023-05-31",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230531"
+ }
+ ]
+ },
+ "text": "Accession level coment 2"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
+ "extension": [
+ {
+ "url": "PID.8",
+ "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": "HL70001"
+ }
+ ],
+ "code": "F",
+ "display": "Female"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.18",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.18"
+ }
+ ],
+ "value": "32"
+ }
+ },
+ {
+ "url": "PID.24",
+ "valueString": "Y"
+ },
+ {
+ "url": "PID.30",
+ "valueString": "Y"
+ },
+ {
+ "url": "PID.32",
+ "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": "HL70445"
+ }
+ ],
+ "code": "AL",
+ "display": "Alias"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.32",
+ "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": "HL70445"
+ }
+ ],
+ "code": "UA",
+ "display": "Unknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PID.38",
+ "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": "HL70429"
+ }
+ ],
+ "code": "RA",
+ "display": "Racing"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/veteran-military-status",
+ "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": "HL70172"
+ }
+ ],
+ "code": "NA",
+ "display": "Not Applicable"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-nationality",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.28"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70212"
+ }
+ ],
+ "code": "A",
+ "display": "American"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identity-unknown",
+ "valueString": "N"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-animal",
+ "extension": [
+ {
+ "url": "species",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.35"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70446"
+ }
+ ],
+ "code": "D",
+ "display": "Dog"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "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": "20230501102532-0400"
+ },
+ {
+ "url": "PD1.18",
+ "valueString": "20230501102533-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/1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8"
+ }
+ },
+ {
+ "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/1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd"
+ }
+ },
+ {
+ "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/1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76"
+ }
+ },
+ {
+ "url": "PD1.14",
+ "valueReference": {
+ "reference": "Organization/1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1"
+ }
+ },
+ {
+ "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": {
+ "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": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
+ "valueHumanName": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "FHIR"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "WI"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "Mind",
+ "given": [
+ "FHIR",
+ "WI"
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
+ "valueHumanName": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "FHIR"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "WI"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ }
+ ]
+ }
+ ],
+ "use": "official",
+ "family": "Mind2x",
+ "given": [
+ "FHIR",
+ "WI"
+ ]
+ }
+ },
+ {
+ "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
+ "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": "HL70005"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
+ "code": "2106-3",
+ "display": "White"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://ibm.com/fhir/cdm/StructureDefinition/local-race-cd",
+ "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": "HL70005"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-Race",
+ "code": "2131-1",
+ "display": "Other Race"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-religion",
+ "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": "HL70006"
+ }
+ ],
+ "code": "AGN",
+ "display": "Agnostic"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
+ "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": "HL70189"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
+ "code": "U",
+ "display": "Uknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ethnic-group",
+ "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": "HL70189"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0189",
+ "code": "AU",
+ "display": "Also Uknown"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
+ "valueAddress": {
+ "text": "Bayou"
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.26"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "USA",
+ "display": "United States"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.26"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "CAN",
+ "display": "Canada"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/patient-citizenship",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.39"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "N",
+ "display": "None"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/code",
+ "valueCodeableConcept": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.39"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70171"
+ }
+ ],
+ "code": "SN",
+ "display": "Still None"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "forty"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueString": "123"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ },
+ {
+ "url": "CX.9",
+ "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": "HL7123"
+ }
+ ],
+ "code": "IX",
+ "display": "Ninth"
+ }
+ ]
+ }
+ },
+ {
+ "url": "CX.10",
+ "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": "HL7123"
+ }
+ ],
+ "code": "X",
+ "display": "Tenth"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "STARLIMS.CDC.Stag",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "Patidlist",
+ "period": {
+ "start": "2021-01-13",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20210113"
+ }
+ ]
+ },
+ "end": "2021-12-30",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20211230"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "SPHL-000048",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "PID123"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
+ {
+ "url": "CX.5",
+ "valueString": "PI"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "PI"
+ }
+ ]
+ },
+ "system": "STARLIMS.CDC.Stag",
+ "_system": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ },
+ "value": "test"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "HL7"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "MI"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Prof"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "V"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "BCN"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "Naaame"
+ },
+ {
+ "url": "XPN.9",
+ "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": "HL7444"
+ }
+ ],
+ "code": "C",
+ "display": "Name Context"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "Yes"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "19900503"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "20030503"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Mega",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Mr"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "MrOwnMega"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "Mrs"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "MrsOwn"
+ }
+ ]
+ },
+ "given": [
+ "HL7",
+ "MI"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "V",
+ "BCN",
+ "Prof"
+ ],
+ "period": {
+ "start": "1990-05-03",
+ "end": "2003-05-03"
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
+ {
+ "url": "XPN.2",
+ "valueString": "HL7"
+ },
+ {
+ "url": "XPN.3",
+ "valueString": "MI"
+ },
+ {
+ "url": "XPN.14",
+ "valueString": "Prof"
+ },
+ {
+ "url": "XPN.4",
+ "valueString": "V"
+ },
+ {
+ "url": "XPN.6",
+ "valueString": "BCN"
+ },
+ {
+ "url": "XPN.7",
+ "valueString": "L"
+ },
+ {
+ "url": "XPN.8",
+ "valueString": "Naaame"
+ },
+ {
+ "url": "XPN.9",
+ "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": "HL7444"
+ }
+ ],
+ "code": "C",
+ "display": "Name Context"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XPN.10",
+ "extension": [
+ {
+ "url": "XPN.10.2"
+ },
+ {
+ "url": "XPN.10.1",
+ "valueString": "Yes"
+ }
+ ]
+ },
+ {
+ "url": "XPN.12",
+ "valueString": "19900503"
+ },
+ {
+ "url": "XPN.13",
+ "valueString": "20030503"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "Mega",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "Mr"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "MrOwnMega"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "Mrs"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "MrsOwn"
+ }
+ ]
+ },
+ "given": [
+ "HL7",
+ "MI"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "V",
+ "BCN",
+ "Prof"
+ ],
+ "period": {
+ "start": "1990-05-03",
+ "end": "2003-05-03"
+ }
+ }
+ ],
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "713"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "12345"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "PRS"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "CP"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "real@example.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "himom"
+ },
+ {
+ "url": "XTN.11",
+ "valueString": "4"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "17145553862"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "17145553862",
+ "use": "home",
+ "rank": 7,
+ "period": {
+ "start": "1999",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "1999"
+ }
+ ]
+ },
+ "end": "2000",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2000"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "714"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-extension",
+ "valueString": "1"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "12345"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "PRS"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "CP"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "notreal@example.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ },
+ {
+ "url": "XTN.9",
+ "valueString": "himom"
+ },
+ {
+ "url": "XTN.11",
+ "valueString": "4"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "17135553862"
+ }
+ ]
+ }
+ ],
+ "system": "phone",
+ "value": "17135553862",
+ "use": "home"
+ },
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "281"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "5553861"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "9865"
+ },
+ {
+ "url": "XTN.2",
+ "valueString": "EMR"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "SAT"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "alsoreal@exmaple.com"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "5553861"
+ }
+ ]
+ }
+ ],
+ "system": "other",
+ "use": "work"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "40"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.40"
+ }
+ ],
+ "_system": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
+ "valueCode": "unknown"
+ }
+ ]
+ },
+ "value": "40"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "41"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.40"
+ }
+ ],
+ "_system": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
+ "valueCode": "unknown"
+ }
+ ]
+ },
+ "value": "41"
+ }
+ ],
+ "gender": "female",
+ "birthDate": "1640",
+ "_birthDate": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "1640"
+ }
+ ]
+ },
+ "deceasedDateTime": "2031",
+ "_deceasedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2031"
+ }
+ ]
+ },
+ "address": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract",
+ "valueCode": "Census"
+ },
+ {
+ "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": "123 Main St"
+ }
+ ]
+ },
+ {
+ "url": "XAD.2",
+ "valueString": "Altxad"
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ },
+ {
+ "url": "XAD.8",
+ "valueString": "MahHome"
+ },
+ {
+ "url": "XAD.11",
+ "valueCode": "A"
+ },
+ {
+ "url": "XAD.12",
+ "extension": [
+ {
+ "url": "XAD.12.1",
+ "valueString": "2020"
+ },
+ {
+ "url": "XAD.12.2",
+ "valueString": "2024"
+ }
+ ]
+ },
+ {
+ "url": "XAD.13",
+ "valueString": "2022"
+ },
+ {
+ "url": "XAD.14",
+ "valueString": "2027"
+ },
+ {
+ "url": "XAD.19",
+ "valueCode": "MrSir"
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "123 Main St",
+ "Altxad",
+ "MrSir"
+ ],
+ "city": "AnyTown",
+ "district": "ThoCo",
+ "state": "IG",
+ "postalCode": "95802",
+ "country": "USA",
+ "period": {
+ "start": "2022",
+ "end": "2027"
+ }
+ },
+ {
+ "extension": [
+ {
+ "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": "1234 Main St"
+ }
+ ]
+ },
+ {
+ "url": "XAD.2",
+ "valueString": "Address 2x"
+ },
+ {
+ "url": "XAD.7",
+ "valueCode": "H"
+ },
+ {
+ "url": "XAD.12",
+ "extension": [
+ {
+ "url": "XAD.12.1",
+ "valueString": "2020"
+ },
+ {
+ "url": "XAD.12.2",
+ "valueString": "2024"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "use": "home",
+ "line": [
+ "1234 Main St",
+ "Address 2x"
+ ],
+ "city": "AnyTown",
+ "district": "Thurston County",
+ "state": "IG",
+ "postalCode": "95802",
+ "country": "USA",
+ "period": {
+ "start": "2020",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2020"
+ }
+ ]
+ },
+ "end": "2024",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "2024"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "maritalStatus": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70002"
+ }
+ ],
+ "code": "P",
+ "display": "Domestic Partnet"
+ }
+ ]
+ },
+ "multipleBirthInteger": 11,
+ "communication": [
+ {
+ "language": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70296"
+ }
+ ],
+ "code": "E",
+ "display": "English"
+ }
+ ]
+ }
+ }
+ ],
+ "generalPractitioner": [
+ {
+ "reference": "Organization/1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b"
+ },
+ {
+ "reference": "Organization/1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd"
+ }
+ ],
+ "link": [
+ {
+ "other": {
+ "reference": "RelatedPerson/1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c"
+ },
+ "type": "seealso"
+ },
+ {
+ "other": {
+ "reference": "RelatedPerson/1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6"
+ },
+ "type": "seealso"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153780196000.4b9cd4af-9c9a-497f-a604-a8b0c57455b3",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "STARLINKED.CDC.Stag"
+ },
+ {
+ "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.114222.9.8.7.6.3.2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153783031000.c9978086-5e18-4764-b0a1-b9faaad4250f",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "STARLINKED.CDC.Stag"
+ },
+ {
+ "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.114222.9.8.7.6.3.2"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "10.10.40.10.11380.90.22"
+ }
+ ],
+ "name": "Clinic B",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153785679000.6782734a-567c-4ff9-97bc-64a1501e8e6b",
+ "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": "1133-5",
+ "display": "SomeOtherText"
+ },
+ {
+ "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": "1298-7",
+ "display": "SomeOtherAltText"
+ }
+ ],
+ "text": "TheOriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1133-5",
+ "display": "SomeOtherText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "5555"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier3"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "8"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "An Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "45.24.167.43"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "CCTV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562153784561000.263ec032-cfa5-4a0e-b859-3307c6a4bf76"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BCVan"
+ }
+ ]
+ },
+ "value": "OrgIdentifier3"
+ }
+ ],
+ "name": "Receiving Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "10.10.40.10.11380.90.22"
+ }
+ ],
+ "name": "Clinic B",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153787502000.6a296664-095f-422a-9acb-d8a934b9decd",
+ "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": "1133-5",
+ "display": "SomeOtherText"
+ },
+ {
+ "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": "1298-7",
+ "display": "SomeOtherAltText"
+ }
+ ],
+ "text": "TheOriginalText"
+ }
+ }
+ ],
+ "system": "LN",
+ "version": "1",
+ "code": "1133-5",
+ "display": "SomeOtherText"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "NameRepCode2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "5555"
+ },
+ {
+ "url": "XON.10",
+ "valueString": "OrgIdentifier3"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "8"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "An Authority"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "45.24.167.43"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "CCTV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562153786484000.240bc114-fd18-48a5-90ac-a3df1cceab0b"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "BCVan"
+ }
+ ]
+ },
+ "value": "OrgIdentifier3"
+ }
+ ],
+ "name": "Receiving Responsible Org"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153789290000.4bbdce01-bb61-40c4-a31b-92bdb4331530",
+ "identifier": [
+ {
+ "value": "Bob R.N."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153791331000.5cbd435d-6005-4e9b-9730-0909d058b397",
+ "identifier": [
+ {
+ "value": "Bob R.N."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153801120000.6e0bbb7a-f0d3-40a7-ad6a-f75659ffdcc8",
+ "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/1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153802611000.f400d90a-2443-480f-adc6-1dad3b6fa5bd",
+ "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/1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493",
+ "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/1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153806033000.7c00260f-d478-4f7a-bcf5-b4763fc10b76",
+ "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"
+ }
+ ]
+ }
+ ],
+ "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/1732562153804615000.37ac84fc-0891-401b-ac46-0d6883b59493"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "1st OrgIdentifier"
+ }
+ ],
+ "name": "1st Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637",
+ "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/1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153808295000.5ffd5adf-aaf7-4e2f-bb55-4fb4fe4e71c1",
+ "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/1732562153807102000.241bf963-35c5-453a-b51f-739b9941c637"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "2nd OrgIdentifier"
+ }
+ ],
+ "name": "2nd Ordering Facility"
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732562153824586000.9f4b56c7-f6b1-4b61-bec5-63cba9d7865c",
+ "identifier": [
+ {
+ "value": "maybe"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "RelatedPerson/1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732562153824978000.5c7cdd4c-1308-45a8-9a6f-f9da853f99a6",
+ "identifier": [
+ {
+ "value": "maybe not"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153836395000.14028c7c-9147-459e-8c73-0d1a2cac74b2",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Provenance/1732562153859480000.b8c60619-c1a9-4f79-b5e6-94f4755ea073",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732562153859480000.b8c60619-c1a9-4f79-b5e6-94f4755ea073",
+ "target": [
+ {
+ "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768"
+ }
+ ],
+ "occurredDateTime": "2024-08-21T11:38:00Z",
+ "recorded": "2024-11-25T14:15:53Z",
+ "activity": {
+ "coding": [
+ {
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
+ }
+ ]
+ },
+ "agent": [
+ {
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "performer"
+ }
+ ]
+ },
+ "who": {
+ "reference": "Organization/1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153859199000.ae77c9c5-4e55-4a4c-a9a6-1ce58e201c47",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc",
+ "resource": {
+ "resourceType": "Encounter",
+ "id": "1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc",
+ "meta": {
+ "security": [
+ {
+ "code": "SEC"
+ }
+ ]
+ },
+ "text": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-visit-description",
+ "valueString": "Description"
+ }
+ ],
+ "div": "\u003cdiv xmlns\u003d\"http://www.w3.org/1999/xhtml\"\u003eDescription\u003c/div\u003e"
+ },
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "413",
+ "display": "V"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/visit-user-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "423",
+ "display": "X"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-start-date",
+ "valueDateTime": "2023-06-01T10:25:31-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230601102531-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/planned-discharge-date",
+ "valueDateTime": "2023-07-01T10:25:31-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230701102531-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/estimated-length",
+ "valueQuantity": {
+ "value": 5,
+ "unit": "days",
+ "system": "http://unitsofmeasure.org/",
+ "code": "d"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/publicity-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "100",
+ "display": "PublicCode"
+ }
+ ]
+ }
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival",
+ "valueCoding": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "444",
+ "display": "MODE"
+ }
+ ]
+ }
+ }
+ ],
+ "code": "444",
+ "display": "MODE"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/admission-level-of-care",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "123",
+ "display": "CARELEVEL1"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-patient-visit",
+ "extension": [
+ {
+ "url": "PV1.12",
+ "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": "HL70087"
+ }
+ ],
+ "code": "P",
+ "display": "Passed"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.18",
+ "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": "HL70018"
+ }
+ ],
+ "code": "H",
+ "display": "Human Patient"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.46",
+ "valueDecimal": 100
+ },
+ {
+ "url": "PV1.47",
+ "valueDecimal": 199
+ },
+ {
+ "url": "PV1.48",
+ "valueDecimal": 142
+ },
+ {
+ "url": "PV1.49",
+ "valueDecimal": 130
+ },
+ {
+ "url": "PV1.51",
+ "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": "HL70326"
+ }
+ ],
+ "code": "A",
+ "display": "Account Level"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.30",
+ "valueString": "20020101"
+ },
+ {
+ "url": "PV1.31",
+ "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": "HL70021"
+ }
+ ],
+ "code": "C",
+ "display": "Collectors"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.32",
+ "valueDecimal": 1
+ },
+ {
+ "url": "PV1.33",
+ "valueDecimal": 0
+ },
+ {
+ "url": "PV1.34",
+ "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": "HL70111"
+ }
+ ],
+ "code": "Y",
+ "display": "Yes"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.35",
+ "valueString": "20080101"
+ },
+ {
+ "url": "PV1.39",
+ "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": "HL70115"
+ }
+ ],
+ "code": "H",
+ "display": "A Hospital Of Course"
+ }
+ ]
+ }
+ },
+ {
+ "url": "PV1.41",
+ "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": "HL70117"
+ }
+ ],
+ "code": "A",
+ "display": "Active"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv2-patient-visit-additional-information",
+ "extension": [
+ {
+ "url": "PV2.15",
+ "valueString": "EMP_ILL"
+ },
+ {
+ "url": "PV2.23",
+ "valueReference": {
+ "reference": "Organization/1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3"
+ }
+ },
+ {
+ "url": "PV2.23",
+ "valueReference": {
+ "reference": "Organization/1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2"
+ }
+ },
+ {
+ "url": "PV2.26",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "PV2.29",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.19"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "VN"
+ }
+ ],
+ "text": "visit number"
+ },
+ "value": "22"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.50"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203"
+ }
+ ]
+ },
+ "value": "alternate visit"
+ }
+ ],
+ "status": "finished",
+ "class": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pv1-2-patient-class",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "O"
+ }
+ ]
+ }
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
+ "code": "AMB",
+ "display": "ambulatory"
+ },
+ "type": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70007"
+ }
+ ],
+ "code": "R",
+ "display": "Routine"
+ }
+ ]
+ }
+ ],
+ "serviceType": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70069"
+ }
+ ],
+ "code": "URO",
+ "display": "Urology Service"
+ }
+ ]
+ },
+ "priority": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70217"
+ }
+ ],
+ "code": "3",
+ "display": "Elective"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768"
+ },
+ "episodeOfCare": [
+ {
+ "reference": "EpisodeOfCare/1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1"
+ }
+ ],
+ "participant": [
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ATND",
+ "display": "attender"
+ }
+ ]
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "CON"
+ }
+ ],
+ "text": "consultant"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "ADM"
+ }
+ ],
+ "text": "admitter"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1"
+ }
+ },
+ {
+ "type": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
+ "code": "REF"
+ }
+ ],
+ "text": "referrer"
+ }
+ ],
+ "individual": {
+ "reference": "Practitioner/1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614"
+ }
+ }
+ ],
+ "period": {
+ "start": "2024-08-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240801102531-0400"
+ }
+ ]
+ },
+ "end": "2024-08-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20240801102531-0400"
+ }
+ ]
+ }
+ },
+ "length": {
+ "value": 12,
+ "unit": "days",
+ "system": "http://unitsofmeasure.org/",
+ "code": "d"
+ },
+ "reasonCode": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.3"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "1",
+ "display": "AD"
+ }
+ ]
+ }
+ ],
+ "hospitalization": {
+ "preAdmissionIdentifier": {
+ "value": "232323"
+ },
+ "admitSource": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70023"
+ }
+ ],
+ "code": "RL",
+ "display": "Real Life"
+ }
+ ]
+ },
+ "reAdmission": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70092"
+ }
+ ],
+ "code": "R",
+ "display": "Re-admission"
+ }
+ ]
+ },
+ "dietPreference": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70114"
+ }
+ ],
+ "code": "F",
+ "display": "Fed"
+ }
+ ]
+ }
+ ],
+ "specialCourtesy": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70099"
+ }
+ ],
+ "code": "VIP",
+ "display": "Very Interesting Person"
+ }
+ ]
+ }
+ ],
+ "destination": {
+ "reference": "Location/1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a"
+ },
+ "dischargeDisposition": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70112"
+ }
+ ],
+ "code": "H",
+ "display": "Happy"
+ }
+ ]
+ }
+ },
+ "location": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.3"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02"
+ },
+ "status": "active"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.6"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17"
+ },
+ "status": "completed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.11"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": true
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e"
+ },
+ "status": "active"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.42"
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a"
+ },
+ "status": "planned"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.43"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": true
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1"
+ },
+ "status": "completed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.1"
+ },
+ {
+ "url": "https://hl7.org/fhir/StructureDefinition/temporary-location",
+ "valueBoolean": false
+ }
+ ],
+ "location": {
+ "reference": "Location/1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a"
+ },
+ "status": "planned"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b",
+ "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/1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153867456000.0263cd4a-57d6-4c91-9cf9-17f499d198e3",
+ "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/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "123"
+ }
+ ]
+ }
+ ],
+ "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/1732562153866745000.5c951e01-ebdb-42d4-8aa2-dd9a5ab1583b"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "123"
+ }
+ ],
+ "name": "Org1"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04",
+ "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/1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153868808000.30365f9b-338c-4d31-9546-c170cc2967f2",
+ "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/xon-organization",
+ "extension": [
+ {
+ "url": "XON.3",
+ "valueString": "123"
+ }
+ ]
+ }
+ ],
+ "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/1732562153867965000.03d2c1ec-186a-41f7-a1b8-c86f82e9cc04"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
+ }
+ ]
+ },
+ "value": "123"
+ }
+ ],
+ "name": "Org2"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153869414000.00b21e8f-4d47-4679-9f12-61611622639a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/dld2-effective-date",
+ "valueString": "202305061200"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153872648000.a25105b3-620e-410a-b2c5-b1110951e5fb",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "UUID"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.7"
+ }
+ ],
+ "identifier": [
+ {
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "Namespace",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "BEETHOVEN",
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153873388000.6823dcca-4b41-43af-a9c9-31433998e6ad",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.8"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "MOZART"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153874062000.79bc647f-a899-400d-a12f-d2e340080575",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.9"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "CHOPIN"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153877446000.caf5dd3e-21c1-44cc-b7e2-9474eeccfeea",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.17"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "BACH"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153880675000.e4722423-2100-4af4-80b0-a83fddccb7a1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.13"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "BEETHOVEN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Referral Source Code1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562153883521000.62e6b6df-73ec-488c-83a6-f8901e437614",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.20",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.19",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV2.13"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "BEETHOVEN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Referral Source Code2"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "MD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "end": "2023-05-01T10:25:31-04:00"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "AA"
+ },
+ {
+ "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": "AssigningAUTH"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital Assigned"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "value": "Building"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562153885994000.dd0d8694-e7ed-4bb5-af66-e436a73bedfb"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "value": "Floor"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562153886110000.1aaf4e47-811d-440a-968d-61edd700f853"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "C"
+ }
+ ]
+ },
+ "value": "Point OF Care"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562153886214000.24fed3c3-c79c-416e-9d35-6a53a6d8f63a"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "1"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "3"
+ }
+ ]
+ },
+ "value": "Room"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562153886333000.b20e122f-eb55-4b61-b8e3-291490508eef"
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153886729000.06f365ca-2a46-435b-9b63-2a4e4fbd9a02",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "R"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "B"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "A"
+ }
+ ]
+ },
+ "value": "Bed"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UID4This"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Comprehensive",
+ "assigner": {
+ "reference": "Organization/1732562153884161000.15dce04f-dc04-44d7-896a-917af16bf459"
+ }
+ }
+ ],
+ "description": "Totally A Real Location",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562153886482000.5bf83c58-d9e7-4790-95d6-d4b30089c79a"
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "ASSIGNEE"
+ },
+ {
+ "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": "UUID"
+ }
+ ]
+ },
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153887852000.fa9d0f80-9e6e-4310-8d3c-ad183318ab17",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital Prio"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1732562153887283000.8934d259-27ae-4343-b365-6763411d76f7"
+ }
+ }
+ ],
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153888228000.9f180f5a-2482-4474-8bec-04be2e758e3e",
+ "description": "Its Temporary",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153888624000.1cb4f13f-1497-4d29-bd56-c8b0ebdad51a",
+ "description": "Pending Location",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153888992000.bbe075b2-fff6-49f4-8196-874a116ef3f1",
+ "description": "Prior Location",
+ "mode": "instance"
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "ASSIGNEE"
+ },
+ {
+ "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": "UUID"
+ }
+ ]
+ },
+ "system": "urn:ietf:rfc:3986",
+ "value": "222.1111.22222"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562153890079000.fc9d997c-b83c-4059-8bf2-5a654a2c5f0a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pl6-person-location-type",
+ "valueString": "location type"
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital PriorPending"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.4.4.4"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "NAME"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "UNI"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "organization"
+ }
+ ],
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1732562153889515000.6c01de3a-c2d3-4d5a-82bb-c2e46f28851d"
+ }
+ }
+ ],
+ "status": "active",
+ "description": "Description",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "EpisodeOfCare/1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1",
+ "resource": {
+ "resourceType": "EpisodeOfCare",
+ "id": "1732562153890759000.b03d8a2b-dcdd-4bee-98f9-78c940f8e4a1",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.54"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/episode-of-care-name",
+ "valueString": "Service Description"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "episode identifier"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "subid"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test",
+ "valueId": "ST"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-09-12T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230912180802-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "30"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.6",
+ "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": "HL79999"
+ }
+ ],
+ "code": "g",
+ "display": "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.27",
+ "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": "HL79900"
+ }
+ ],
+ "code": "RC",
+ "display": "root cause"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.28",
+ "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": "HL79900"
+ }
+ ],
+ "code": "LPC",
+ "display": "Local Process"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.31",
+ "valueId": "31"
+ },
+ {
+ "url": "OBX.32",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "32",
+ "display": "value absent reason"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.33",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "eip"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "33"
+ }
+ },
+ {
+ "url": "OBX.9",
+ "valueString": "99"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ },
+ {
+ "url": "OBX.12",
+ "valueString": "20000101"
+ },
+ {
+ "url": "OBX.13",
+ "valueString": "user defined"
+ },
+ {
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.18",
+ "valueReference": {
+ "reference": "Device/1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8"
+ }
+ },
+ {
+ "url": "OBX.20",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.26",
+ "valueId": "26"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.21"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "entity id"
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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",
+ "code": "80383-3",
+ "display": "Flu B"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768"
+ },
+ "encounter": {
+ "reference": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc"
+ },
+ "effectiveDateTime": "2023-01-01T00:00:00Z",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230101000000"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc"
+ },
+ {
+ "reference": "PractitionerRole/1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315"
+ },
+ {
+ "reference": "PractitionerRole/1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16"
+ }
+ ],
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "code": "260415000",
+ "display": "Not detected"
+ }
+ ]
+ },
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "UP",
+ "display": "Up to you"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230202"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230203"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "This is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "second comment"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc"
+ },
+ "time": "2023-02-01",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230201"
+ }
+ ]
+ },
+ "text": "OBX Note"
+ }
+ ],
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ },
+ "device": {
+ "reference": "Device/1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6"
+ },
+ "referenceRange": [
+ {
+ "text": "range of a few"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732562154192288000.a666d253-d5b4-4634-a473-0e37625964d8",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154194496000.9c180e64-0df7-4cbf-8a7b-446f5c5286dc",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "CLIA"
+ }
+ ],
+ "code": "11D1111111",
+ "display": "CSV uploads"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "CLIA",
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Frances",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154194767000.4a6d8b98-95f8-40c6-b7e1-22688e9eb315",
+ "practitioner": {
+ "reference": "Practitioner/1732562154195315000.af10b0d9-880d-45aa-af24-7789dba68697"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Mark",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "11D1111111"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads-11D1111111",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "2 Second Dr"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "2 Second Dr"
+ ],
+ "state": "IG",
+ "postalCode": "94553",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154195572000.df713156-78d5-4435-b94a-b76d94c0cb16",
+ "practitioner": {
+ "reference": "Practitioner/1732562154196091000.e18e2775-2053-4d55-ad5d-c4e8adac70aa"
+ },
+ "organization": {
+ "reference": "Organization/1732562154196987000.67057813-14c3-4b1a-ad1c-0eeb24f9465e"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154198115000.42384033-f45b-4520-8598-b6882c278cfc",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732562154199483000.abef59ba-5c72-463a-9d07-e4d097fe64f6",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Observation/1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "subid"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nature-of-abnormal-test",
+ "valueId": "ST"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-09-12T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230912180802-0400"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/observation-sub-type",
+ "valueCode": "30"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
+ {
+ "url": "OBX.2",
+ "valueId": "CWE"
+ },
+ {
+ "url": "OBX.6",
+ "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": "HL79999"
+ }
+ ],
+ "code": "g",
+ "display": "gram"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.27",
+ "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": "HL79900"
+ }
+ ],
+ "code": "RC",
+ "display": "root cause"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.28",
+ "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": "HL79900"
+ }
+ ],
+ "code": "LPC",
+ "display": "Local Process"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.29",
+ "valueId": "QST"
+ },
+ {
+ "url": "OBX.31",
+ "valueId": "31"
+ },
+ {
+ "url": "OBX.32",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "32",
+ "display": "value absent reason"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.33",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "eip"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "33"
+ }
+ },
+ {
+ "url": "OBX.9",
+ "valueString": "99"
+ },
+ {
+ "url": "OBX.11",
+ "valueString": "F"
+ },
+ {
+ "url": "OBX.12",
+ "valueString": "20000101"
+ },
+ {
+ "url": "OBX.13",
+ "valueString": "user defined"
+ },
+ {
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.18",
+ "valueReference": {
+ "reference": "Device/1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490"
+ }
+ },
+ {
+ "url": "OBX.20",
+ "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": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBX.26",
+ "valueId": "26"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.21"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "entity id"
+ }
+ ],
+ "status": "final",
+ "code": {
+ "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",
+ "code": "80383-3",
+ "display": "Flu B"
+ }
+ ]
+ },
+ "subject": {
+ "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768"
+ },
+ "encounter": {
+ "reference": "Encounter/1732562153890198000.0ce58f24-e0de-4d23-aba5-12c6458c21cc"
+ },
+ "effectiveDateTime": "2023-01-01T00:00:00Z",
+ "_effectiveDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230101000000"
+ }
+ ]
+ },
+ "performer": [
+ {
+ "reference": "Organization/1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a"
+ },
+ {
+ "reference": "PractitionerRole/1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c"
+ },
+ {
+ "reference": "PractitionerRole/1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1"
+ }
+ ],
+ "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": "SCT"
+ }
+ ],
+ "system": "http://snomed.info/sct",
+ "code": "260415000",
+ "display": "Not detected"
+ }
+ ]
+ },
+ "interpretation": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "UP",
+ "display": "Up to you"
+ }
+ ]
+ }
+ ],
+ "note": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
+ {
+ "url": "NTE.2",
+ "valueId": "L"
+ },
+ {
+ "url": "NTE.7",
+ "valueString": "20230202"
+ },
+ {
+ "url": "NTE.8",
+ "valueString": "20230203"
+ },
+ {
+ "url": "NTE.9",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "CC",
+ "display": "This is a coded comment for an observation note"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "OBX Note"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "second comment"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "RE",
+ "display": "Remark"
+ }
+ ]
+ }
+ }
+ ],
+ "authorReference": {
+ "reference": "Practitioner/1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23"
+ },
+ "time": "2023-02-01",
+ "_time": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230201"
+ }
+ ]
+ },
+ "text": "OBX Note"
+ }
+ ],
+ "bodySite": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70163"
+ }
+ ],
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0163",
+ "code": "BE",
+ "display": "Bilateral Ears"
+ }
+ ]
+ },
+ "method": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2"
+ }
+ ]
+ },
+ "device": {
+ "reference": "Device/1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7"
+ },
+ "referenceRange": [
+ {
+ "text": "range of a few"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732562154201604000.e939efa7-0325-429a-b3ec-d84a94a1e490",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154203229000.2a00bea0-1be7-4987-9e2c-06e86ec60e7a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "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": "CLIA"
+ }
+ ],
+ "code": "11D1111111",
+ "display": "CSV uploads"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
+ }
+ ],
+ "identifier": [
+ {
+ "system": "CLIA",
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Frances",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154203425000.0864c4c8-5ac1-4a08-997a-29be2c85e66c",
+ "practitioner": {
+ "reference": "Practitioner/1732562154203893000.719f915c-98f9-4236-b741-8c900e8bf644"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "Quinlen"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Mark",
+ "given": [
+ "Quinlen"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "11D1111111"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "11D1111111"
+ }
+ ],
+ "name": "CSV uploads-11D1111111",
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "2 Second Dr"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "2 Second Dr"
+ ],
+ "state": "IG",
+ "postalCode": "94553",
+ "country": "USA"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154204311000.aaeaf454-854a-4de3-b3ea-e2e1b9a60be1",
+ "practitioner": {
+ "reference": "Practitioner/1732562154204899000.263c7827-82b5-46fe-a4f7-c8ca077f311b"
+ },
+ "organization": {
+ "reference": "Organization/1732562154205866000.34048fa3-015a-49c9-b1d3-88e9f64ed289"
+ },
+ "code": [
+ {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0912",
+ "code": "MDIR"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154207156000.325c915a-9ada-47bd-8a09-92c6918e3b23",
+ "identifier": [
+ {
+ "value": "Bob R.N.A."
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Device/1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732562154208233000.90243bc5-b199-4bd4-9b22-3c0b1f7a9eb7",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPTRDEV-001"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.17.840"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Device 001"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "ServiceRequest/1732562154250806000.dd9cbc7c-fc51-481d-a11d-c930abf83f60",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732562154250806000.dd9cbc7c-fc51-481d-a11d-c930abf83f60",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230725"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/status-modifier",
+ "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": "HL79999"
+ }
+ ],
+ "code": "OS",
+ "display": "order status"
+ }
+ ]
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
+ {
+ "url": "ORC.5",
+ "valueString": "CM"
+ },
+ {
+ "url": "ORC.6",
+ "valueString": "E"
+ },
+ {
+ "url": "ORC.19",
+ "valueReference": {
+ "reference": "Practitioner/1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635"
+ }
+ },
+ {
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641"
+ }
+ },
+ {
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "111 Street St"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Street St"
+ ],
+ "city": "Streetsville",
+ "state": "ST"
+ }
+ },
+ {
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
+ {
+ "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": "111 Road Rd"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Road Rd"
+ ],
+ "city": "Roadsville",
+ "state": "RD"
+ }
+ },
+ {
+ "url": "ORC.27",
+ "valueString": "20260404"
+ },
+ {
+ "url": "ORC.28",
+ "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": "HL70177"
+ }
+ ],
+ "code": "EMP",
+ "display": "Employee"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.30",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding-system",
+ "valueString": "HL70483"
+ }
+ ],
+ "code": "EL",
+ "display": "Electronic"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.31",
+ "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": "HL70000"
+ }
+ ],
+ "code": "UMM",
+ "display": "Universal Modifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.32",
+ "valueString": "20250403"
+ },
+ {
+ "url": "ORC.8",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Specimen12333454"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "Specimen12333"
+ }
+ },
+ {
+ "url": "ORC.10",
+ "valueReference": {
+ "reference": "Practitioner/1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a"
+ }
+ },
+ {
+ "url": "ORC.11",
+ "valueReference": {
+ "reference": "Practitioner/1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64"
+ }
+ },
+ {
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7"
+ }
+ },
+ {
+ "url": "ORC.13",
+ "valueReference": {
+ "reference": "Location/1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4"
+ }
+ },
+ {
+ "url": "ORC.15",
+ "valueString": "202101021000"
+ },
+ {
+ "url": "ORC.17",
+ "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": "HL79999"
+ }
+ ],
+ "code": "EO",
+ "display": "entering org text"
+ }
+ ]
+ }
+ },
+ {
+ "url": "ORC.18",
+ "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": "HL79999"
+ }
+ ],
+ "code": "ED",
+ "display": "entering device text"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
+ {
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Placer Identifier Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Placer Universal ID"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Placer Identifier"
+ }
+ },
+ {
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Filler Identifier Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "Filler Universal ID"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "value": "Filler Identifier"
+ }
+ },
+ {
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "1"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "260"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "7595016"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "BP"
+ },
+ {
+ "url": "XTN.7",
+ "valueString": "7595016"
+ },
+ {
+ "url": "XTN.12",
+ "valueString": "+1 260 759 5016"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "pager",
+ "value": "+1 260 759 5016",
+ "use": "work"
+ }
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.2",
+ "valueString": "WPN"
+ },
+ {
+ "url": "XTN.3",
+ "valueString": "Internet"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "order.callback@email.com"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
+ }
+ ],
+ "system": "email",
+ "value": "order.callback@email.com",
+ "use": "work"
+ }
+ },
+ {
+ "url": "OBR.18",
+ "valueString": "placer1"
+ },
+ {
+ "url": "OBR.19",
+ "valueString": "placer2"
+ },
+ {
+ "url": "OBR.20",
+ "valueString": "filler1"
+ },
+ {
+ "url": "OBR.21",
+ "valueString": "filler2"
+ },
+ {
+ "url": "OBR.23",
+ "extension": [
+ {
+ "url": "moc-1-1-monetary-amount",
+ "valueString": "100"
+ },
+ {
+ "url": "moc-1-2-monetary-denomination",
+ "valueString": "$"
+ },
+ {
+ "url": "moc-2-charge-code",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "16",
+ "display": "code"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "url": "OBR.24",
+ "valueId": "OTH"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "F"
+ },
+ {
+ "url": "OBR.26",
+ "extension": [
+ {
+ "url": "prl-1-parent-observation-identifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "444",
+ "display": "ParentId"
+ }
+ ]
+ }
+ },
+ {
+ "url": "prl-2-parent-observation-sub-identifier",
+ "valueString": "888"
+ },
+ {
+ "url": "prl-3-parent-observation-descriptor",
+ "valueString": "ParentOBSdescriptor"
+ }
+ ]
+ },
+ {
+ "url": "OBR.28",
+ "valueReference": {
+ "reference": "Practitioner/1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd"
+ }
+ },
+ {
+ "url": "OBR.29",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ }
+ },
+ {
+ "url": "OBR.33",
+ "valueReference": {
+ "reference": "PractitionerRole/1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c"
+ }
+ },
+ {
+ "url": "OBR.36",
+ "valueString": "20230806123359-0500"
+ },
+ {
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.39",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "4438",
+ "display": "Collectors Comment2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.44",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "5019",
+ "display": "Procedure Code"
+ }
+ ]
+ }
+ },
+ {
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "887766",
+ "display": "Procedure Code Modifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "obr-45-procedure-code-modifier",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cne-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "887766",
+ "display": "Procedure Code Modifier2"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.48",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "71435",
+ "display": "Medically Necessary Duplicate Procedure"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.49",
+ "valueString": "N"
+ },
+ {
+ "url": "OBR.50",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "443331",
+ "display": "Parent Universal Service Identifier"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.53",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
+ }
+ ],
+ "value": "Alt"
+ }
+ },
+ {
+ "url": "OBR.53",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "Placer Order2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.53"
+ }
+ ],
+ "value": "Alt"
+ }
+ },
+ {
+ "url": "OBR.54",
+ "valueIdentifier": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "11D1111111"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "f34b0f57-1601-4480-ae8a-d4006e50f38d"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Other CSV"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "22D2222222"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "CLIA2"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1"
+ }
+ },
+ {
+ "url": "OBR.10",
+ "valueReference": {
+ "reference": "Practitioner/1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144"
+ }
+ },
+ {
+ "url": "OBR.11",
+ "valueString": "G"
+ },
+ {
+ "url": "OBR.12",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "512",
+ "display": "Danger code"
+ }
+ ]
+ }
+ },
+ {
+ "url": "OBR.13",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "relevent info"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "Specimen123"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
+ }
+ ]
+ },
+ "value": "Specimen12311"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
+ }
+ ]
+ },
+ "value": "Specimen12322"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.4"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
+ }
+ ]
+ },
+ "value": "Specimen12322"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.33"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
+ }
+ ]
+ },
+ "value": "33"
+ }
+ ],
+ "status": "completed",
+ "intent": "order",
+ "code": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "123",
+ "display": "Universal service identifier"
+ }
+ ]
+ },
+ "orderDetail": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "7461",
+ "display": "Placer Supplemental"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.46"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "7461",
+ "display": "Placer Supplemental2"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "8811",
+ "display": "Fillter Supplemental"
+ }
+ ]
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.47"
+ }
+ ],
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "8811",
+ "display": "Fillter Supplemental2"
+ }
+ ]
+ }
+ ],
+ "subject": {
+ "reference": "Patient/1732562153843122000.7e823011-2378-4ca6-bc19-0701168a7768"
+ },
+ "occurrenceDateTime": "2022-02-02T10:22:00Z",
+ "_occurrenceDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202202021022"
+ }
+ ]
+ },
+ "requester": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "123"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+123"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
+ }
+ ],
+ "system": "email",
+ "value": "123"
+ }
+ }
+ ],
+ "reference": "PractitionerRole/1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e"
+ },
+ "locationCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70482"
+ }
+ ],
+ "code": "I",
+ "display": "Inpatient Order"
+ }
+ ]
+ }
+ ],
+ "reasonCode": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "3216",
+ "display": "ReasonForStudy"
+ }
+ ]
+ },
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "3216",
+ "display": "ReasonForStudy2"
+ }
+ ]
+ }
+ ],
+ "supportingInfo": [
+ {
+ "reference": "Observation/1732562154193977000.c207046a-6adc-4826-b659-18bb2d10b434"
+ },
+ {
+ "reference": "Observation/1732562154202682000.aa635033-0073-450d-aaf4-6f85d81b8307"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.12Name"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "93"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.12Name"
+ ]
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "111 Road Rd"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Road Rd"
+ ],
+ "city": "Roadsville",
+ "state": "RD"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2.16.840.1.114222.8.7.6.5.4.1"
+ }
+ ],
+ "name": "STARLINKS.CDC.Stag",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "A"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562154215176000.7d2bdd0e-7a5f-4658-8892-51bfe64f9893"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "SPHL-000048"
+ }
+ ],
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory",
+ "telecom": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
+ {
+ "url": "XTN.1",
+ "valueString": "456"
+ },
+ {
+ "url": "XTN.4",
+ "valueString": "+456"
+ }
+ ]
+ }
+ ],
+ "system": "email",
+ "value": "456"
+ }
+ ],
+ "address": [
+ {
+ "extension": [
+ {
+ "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": "111 Street St"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "line": [
+ "111 Street St"
+ ],
+ "city": "Streetsville",
+ "state": "ST"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154213583000.c9736a07-2608-4bcd-9656-7f0f085d586e",
+ "practitioner": {
+ "reference": "Practitioner/1732562154214707000.55fe29b9-3526-4dd0-8afd-afcd464734b8"
+ },
+ "organization": {
+ "reference": "Organization/1732562154219040000.ab3d8b26-5b97-4c67-bd32-15c7749feb27"
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154225791000.ae6f9906-e3b1-4a93-b6c6-d8278444d635",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.19Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "60"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.19Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ],
+ "identifier": [
+ {
+ "value": "2.16.840.1.114222.8.7.6.5.4.1"
+ }
+ ],
+ "name": "STARLINKS.CDC.Stag",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732562154226525000.8d27cb9f-3454-4c66-824f-0dd6118fe641",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/name-representation-code",
+ "valueString": "A"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
+ {
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732562154226227000.9b5c0d44-1449-4c0c-b16c-d96bc24ba566"
+ }
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
+ }
+ ]
+ },
+ "value": "SPHL-000048"
+ }
+ ],
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory"
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154228856000.3e9b434f-f562-4f49-9eed-8deab719001a",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.10Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "71"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.10Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154229548000.d7d4e869-66b8-4cd3-a898-79fa9eb5ac64",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.11Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "82"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.11Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154230211000.de62daa9-831f-4e3a-988d-bb953b1d75d7",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "ORC.12Name"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "value": "93"
+ }
+ ],
+ "name": [
+ {
+ "given": [
+ "ORC.12Name"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "12.12.12"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ },
+ "value": "enter location id"
+ }
+ ],
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154231251000.f0dbdb0c-a77c-42d4-bd6c-82e4bc21e9b4",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "12.12.12"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "L"
+ }
+ ]
+ },
+ "value": "enter location id"
+ }
+ ],
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "partOf": {
+ "reference": "Location/1732562154230997000.1f3e2855-faa7-43e9-b6c5-2cc071db40e8"
+ }
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154232733000.784d1aba-654d-41de-b921-04d5efa0e707",
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "Ordering",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Provider"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "JollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154235327000.a2de90f4-5fe3-449a-b442-1422688f69bd",
+ "identifier": [
+ {
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "family": "result",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "copiesto"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "NotSoJollyROGER"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cnn-practitioner",
+ "extension": [
+ {
+ "url": "CNN.3",
+ "valueString": "Results Interpreter"
+ },
+ {
+ "url": "CNN.4",
+ "valueString": "S"
+ },
+ {
+ "url": "CNN.5",
+ "valueString": "ESQ"
+ },
+ {
+ "url": "CNN.7",
+ "valueString": "MD"
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "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"
+ }
+ ]
+ }
+ ],
+ "value": "123"
+ }
+ ],
+ "name": [
+ {
+ "family": "Assistant",
+ "given": [
+ "Results Interpreter",
+ "S"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "ESQ",
+ "MD"
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Hospital A"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "ISO"
+ }
+ ]
+ },
+ "value": "2.16.840.1.113883.9.11"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8",
+ "identifier": [
+ {
+ "value": "Building 123"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bu"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566",
+ "identifier": [
+ {
+ "value": "Point of Care"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "_code": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/location-physical-type-poc",
+ "valueString": "poc"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1",
+ "identifier": [
+ {
+ "value": "Floor A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "lvl"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf",
+ "identifier": [
+ {
+ "value": "Room 101"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "ro"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "Location/1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471",
+ "identifier": [
+ {
+ "value": "Bed A"
+ }
+ ],
+ "status": "active",
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "bd"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "fullUrl": "PractitionerRole/1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732562154243651000.0580e430-b3b0-4b7f-bdfb-979e88af580c",
+ "period": {
+ "start": "2023-04-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230401102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ },
+ "practitioner": {
+ "reference": "Practitioner/1732562154236508000.235838ae-2ca2-4cbc-a6d0-c70b0d56a0d6"
+ },
+ "location": [
+ {
+ "reference": "Location/1732562154237718000.bcc3e46e-35d5-49d9-9bc8-392bef817de8"
+ },
+ {
+ "reference": "Location/1732562154242310000.f00d36fc-fc8c-4eaa-b4a6-d6c558e042f8"
+ },
+ {
+ "reference": "Location/1732562154242719000.f859e4d1-1e25-4bd1-a800-1a5f46aa7566"
+ },
+ {
+ "reference": "Location/1732562154243008000.9e0321eb-dc92-4827-adb2-82550515b7f1"
+ },
+ {
+ "reference": "Location/1732562154243276000.87b2bd86-e633-4172-a925-4c3f9eba72cf"
+ },
+ {
+ "reference": "Location/1732562154243551000.8505b8a8-e6d3-4ae7-8b24-8fa51ad4f471"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732562154248192000.9f748ab3-d9d1-440c-85d0-286ba3af3144",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "AssigningSystem"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "system": "urn:oid:AssigningSystem",
+ "value": "1"
+ }
+ ],
+ "name": [
+ {
+ "use": "official",
+ "family": "Collector",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "Identifier"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD"
+ ]
+ }
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7 b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7
new file mode 100644
index 00000000000..003877c1bbe
--- /dev/null
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/ormo01/orm_o01-full.hl7
@@ -0,0 +1,13 @@
+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|ORM^O01^ORM_O01|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|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
+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^MahHome^ThoCo^Census^A^2020&2024^2022^2027^^^^^MrSir~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^1999^2000^^^^7~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|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~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||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|20230501102532-0400|20230501102533-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|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
+NTE|2|L|Accession level coment 2|RE^Remark^HL70364^z^x^y^2.5.1^a^b|Bob R.N.|20230531|20230601|20350201|CC^Coded comment for patient note
+PV1|1|O|A&Point OF Care&C^1&Room&3^B&Bed&A^Hospital Assigned&2.4.4.4&ISO^^R^&Building^&Floor^Totally A Real Location^Comprehensive&&UID4This^AA&AssigningAUTH&ISO|R^Routine^HL70007|232323|^^^Hospital Prio&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID|1^BEETHOVEN^LUDWIG^B^2ND^DR^MD^^Namespace&AssigningSystem&UUID^B^^^DL^^^^^^^^MD|1^MOZART|1^CHOPIN|URO^Urology Service^HL70069|^^^^^^^^Its Temporary|P^Passed^HL70087|R^Re-admission^HL70092|RL^Real Life^HL70023||VIP^Very Interesting Person^HL70099|1^BACH|H^Human Patient^HL70018|22|||||||||||20020101|C^Collectors^HL70021|1|0|Y^Yes^HL70111|20080101|H^Happy^HL70112|^202305061200|F^Fed^HL70114|H^A Hospital Of Course^HL70115||A^Active^HL70117|^^^^^^^^Pending Location|^^^^^^^^Prior Location|20240801102531-0400|20240801102531-0400|100|199|142|130|alternate visit|A^Account Level^HL70326||Service Description|episode identifier
+PV2|^^^Hospital PriorPending&2.4.4.4&ISO^active^location type^^^Description^Entity ID&NAME&UNI&ISO^ASSIGNEE&222.1111.22222&UUID||1^AD||||413^V~423^X|20230601102531-0400|20230701102531-0400|5|12|Description|1^BEETHOVEN&VAN&Referral Source Code1&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA~1^BEETHOVEN&VAN&Referral Source Code2&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext^^G^20220501102531-0400^20230501102531-0400^MD^AssignJ^AssignA||EMP_ILL||||||100^PublicCode|SEC|Org1^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~Org2^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||3^Elective^HL70217|20230501102531-0400|||20220501102531-0400|||||||||444^MODE||123^CARELEVEL1
+ORC|RE|Specimen123^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12311^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|Specimen12322^SPHL-000048^2.16.840.1.114222.4.1.10765^ISO|CM|E||Specimen12333&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO^Specimen12333454&SPHL-000048&2.16.840.1.114222.4.1.10765&ISO|20230725|71^^ORC.10Name|82^^ORC.11Name|93^^ORC.12Name|12.12.12&enter location id&L|123^^^+123|202101021000||EO^entering org text^HL79999|ED^entering device text^HL79999|60^^ORC.19Name||CDPH, Viral and Rickettsial Disease Laboratory^^^^^STARLIMS.CDC.Stag&2.16.840.1.114222.4.3.3.2.1.2&ISO^XX^STARLINKS.CDC.Stag&2.16.840.1.114222.8.7.6.5.4.1&ISO^A^SPHL-000048|111 Street St^^Streetsville^ST|456^^^+456|111 Road Rd^^Roadsville^RD|OS^order status^HL79999||20260404|EMP^Employee^HL70177|I^Inpatient Order^HL70482|EL^Electronic^HL70483|UMM^Universal Modifier^HL70000|20250403|33
+OBR|1|Placer Identifier^Placer Identifier Namespace^Placer Universal ID^ISO|Filler Identifier^Filler Identifier Namespace^Filler Universal ID^ISO|123^Universal service identifier||202202021022||||1^Collector&VAN&Identifier&VAL&ROGER^LUDWIG^B^2ND^DR^MD^SRC^&AssigningSystem&ISO^B^A^NPI^DL^^A^NameContext|G|512^Danger code|relevent info|||1^Ordering&VAN&Provider&VAL&JollyROGER|^WPN^BP^^1^260^7595016^^^^^+1 260 759 5016~^WPN^Internet^order.callback@email.com|placer1|placer2|filler1|filler2||100&$^16&code|OTH|F|444&ParentId^888^ParentOBSdescriptor||1^result&VAN&copiesto&VAL&NotSoJollyROGER|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2||3216^ReasonForStudy~3216^ReasonForStudy2||123&Assistant&Results Interpreter&S&ESQ&DR&MD&&Assigning Authority&2.1.4.1&ISO^20230401102531-0400^20230501102531-0400^Point of Care^Room 101^Bed A^Hospital A&2.16.840.1.113883.9.11&ISO^active^^Building 123^Floor A|||20230806123359-0500|||4438^Collectors Comment~4438^Collectors Comment2|||||5019^Procedure Code|887766^Procedure Code Modifier~887766^Procedure Code Modifier2|7461^Placer Supplemental~7461^Placer Supplemental2|8811^Fillter Supplemental~8811^Fillter Supplemental2|71435^Medically Necessary Duplicate Procedure|N|443331^Parent Universal Service Identifier|||Alt^Placer Order~Alt^Placer Order2|adb4a5cc-50ec-4f1e-95d7-0c1f77cacee1&CSV&11D1111111&CLIA^f34b0f57-1601-4480-ae8a-d4006e50f38d&Other CSV&22D2222222&CLIA2
+OBX|1|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip
+NTE|1|L|OBX Note~second comment|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note
+OBX|2|CWE|80383-3^Flu B^LN|subid|260415000^Not detected^SCT|g^gram^HL79999|range of a few|UP^Up to you|99|ST|F|20000101|user defined|20230101000000|11D1111111^CSV uploads^CLIA|1^Frances^Quinlen|^BD Veritor System for Rapid Detection of SARS-CoV-2|Device 001^SPTRDEV-001^2.17.840^ISO|20230912180802-0400|BE^Bilateral Ears^HL70163|entity id||CSV uploads-11D1111111^^^^^CLIA&2.16.840.1.113883.4.7&ISO^XX^^^11D1111111|2 Second Dr^^^IG^94553^USA|1^Mark^Quinlen|26|RC^root cause^HL79900|LPC^Local Process^HL79900|QST|30|31|32^value absent reason|33^eip
+NTE|1|L|OBX Note~second comment|RE^Remark|Bob R.N.A.|20230201|20230202|20230203|CC^This is a coded comment for an observation note
\ No newline at end of file
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir
index b66247c7613..6b10084189d 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/orur01/oru_r01-full.fhir
@@ -1,572 +1,572 @@
{
- "resourceType" : "Bundle",
- "id" : "1716964507780778000.bfce9592-5305-4ffc-ace9-11053494ca39",
- "meta" : {
- "lastUpdated" : "2024-05-29T02:35:07.789-04:00"
+ "resourceType": "Bundle",
+ "id": "1732561494222502000.f0e4ed57-4d1c-4edd-bcfe-b4f3bab5184a",
+ "meta": {
+ "lastUpdated": "2024-11-25T14:04:54.232-05:00"
},
- "identifier" : {
- "system" : "https://reportstream.cdc.gov/prime-router",
- "value" : "3015894743_04608717_11184"
+ "identifier": {
+ "system": "https://reportstream.cdc.gov/prime-router",
+ "value": "3015894743_04608717_11184"
},
- "type" : "message",
- "timestamp" : "2023-08-02T18:08:02.000-04:00",
- "entry" : [
+ "type": "message",
+ "timestamp": "2023-08-02T18:08:02.000-04:00",
+ "entry": [
{
- "fullUrl" : "MessageHeader/8565cf64-832b-3438-bb11-99d9ac964bc1",
- "resource" : {
- "resourceType" : "MessageHeader",
- "id" : "8565cf64-832b-3438-bb11-99d9ac964bc1",
- "meta" : {
- "tag" : [
+ "fullUrl": "MessageHeader/1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851",
+ "resource": {
+ "resourceType": "MessageHeader",
+ "id": "1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851",
+ "meta": {
+ "tag": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0103",
- "code" : "T"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0103",
+ "code": "T"
}
]
},
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
- "valueString" : "^~\\\u0026#"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
+ "valueString": "^~\\\u0026#"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/msh-message-header",
+ "extension": [
{
- "url" : "MSH.7",
- "valueString" : "20230802180802-0400"
+ "url": "MSH.7",
+ "valueString": "20230802180802-0400"
},
{
- "url" : "MSH.15",
- "valueString" : "NE"
+ "url": "MSH.15",
+ "valueString": "NE"
},
{
- "url" : "MSH.16",
- "valueString" : "NE"
+ "url": "MSH.16",
+ "valueString": "NE"
},
{
- "url" : "MSH.21",
- "valueIdentifier" : {
- "extension" : [
+ "url": "MSH.21",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "PHIN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "PHIN"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.9.11"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.9.11"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "PHLabReport-NoAck"
+ "value": "PHLabReport-NoAck"
}
}
]
}
],
- "eventCoding" : {
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0003",
- "code" : "R01",
- "display" : "ORU^R01^ORU_R01"
+ "eventCoding": {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0003",
+ "code": "R01",
+ "display": "ORU^R01^ORU_R01"
},
- "destination" : [
+ "destination": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.10.1.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.10.1.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.5"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.5"
}
],
- "name" : "CDPH CA CALREDIE",
- "endpoint" : "urn:oid:2.16.840.1.114222.4.3.3.10.1.1",
- "receiver" : {
- "reference" : "Organization/1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65"
+ "name": "CDPH CA CALREDIE",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.3.3.10.1.1",
+ "receiver": {
+ "reference": "Organization/1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630"
}
}
],
- "sender" : {
- "reference" : "Organization/1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9"
+ "sender": {
+ "reference": "Organization/1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891"
},
- "source" : {
- "extension" : [
+ "source": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.3"
}
],
- "software" : "STARLIMS",
- "version" : "ELIMS V11",
- "endpoint" : "urn:oid:2.16.840.1.114222.4.3.3.2.1.2"
+ "software": "STARLIMS",
+ "version": "ELIMS V11",
+ "endpoint": "urn:oid:2.16.840.1.114222.4.3.3.2.1.2"
}
}
},
{
- "fullUrl" : "Organization/1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964507841653000.18977e98-2082-47ae-bbf1-02d0ed5942b9",
- "identifier" : [
+ "fullUrl": "Organization/1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494291346000.cecd1595-bcdb-4d11-8e3f-a1053b5a3891",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "CDC Atlanta"
+ "value": "CDC Atlanta"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "CLIA"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "CLIA"
}
]
},
- "value" : "11D0668319"
+ "value": "11D0668319"
}
],
- "address" : [
+ "address": [
{
- "country" : "USA"
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Organization/1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964507867093000.f8c6063b-33aa-4486-aa6f-473b46516d65",
- "extension" : [
+ "fullUrl": "Organization/1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494320521000.d77f1512-7b78-49ba-995f-481804f98630",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "MSH.6"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "MSH.6"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "CDPH_CID"
+ "value": "CDPH_CID"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "ISO"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "ISO"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.114222.4.1.2.14104"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.114222.4.1.2.14104"
}
]
}
},
{
- "fullUrl" : "Provenance/1716964508402469000.47642269-e41c-4390-ba44-949ef99f8b4e",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716964508402469000.47642269-e41c-4390-ba44-949ef99f8b4e",
- "target" : [
+ "fullUrl": "Provenance/1732561494909091000.a8fb88e8-7452-44df-8049-579955d44fd0",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732561494909091000.a8fb88e8-7452-44df-8049-579955d44fd0",
+ "target": [
{
- "reference" : "MessageHeader/8565cf64-832b-3438-bb11-99d9ac964bc1"
+ "reference": "MessageHeader/1732561494321770000.2e1c8f84-c0fe-4d13-85e2-a631eb728851"
},
{
- "reference" : "DiagnosticReport/1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d"
+ "reference": "DiagnosticReport/1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b"
},
{
- "reference" : "DiagnosticReport/1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38"
+ "reference": "DiagnosticReport/1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2"
}
],
- "recorded" : "2023-08-02T18:08:02-04:00",
- "activity" : {
- "coding" : [
+ "recorded": "2023-08-02T18:08:02-04:00",
+ "activity": {
+ "coding": [
{
- "display" : "ORU^R01^ORU_R01"
+ "display": "ORU^R01^ORU_R01"
}
]
},
- "agent" : [
+ "agent": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "author"
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "author"
}
]
},
- "who" : {
- "reference" : "Organization/1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218"
+ "who": {
+ "reference": "Organization/1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66"
}
}
],
- "entity" : [
+ "entity": [
{
- "role" : "source",
- "what" : {
- "reference" : "Device/1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213"
+ "role": "source",
+ "what": {
+ "reference": "Device/1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4"
}
}
]
}
},
{
- "fullUrl" : "Organization/1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508401723000.0f908776-dc49-4b1a-b3c3-a613fbe52218",
- "identifier" : [
+ "fullUrl": "Organization/1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494908179000.2d625b19-31a5-4f09-a891-2d744f59bb66",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "CDC Atlanta"
+ "value": "CDC Atlanta"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "CLIA"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "CLIA"
}
]
},
- "value" : "11D0668319"
+ "value": "11D0668319"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84",
- "extension" : [
+ "fullUrl": "Organization/1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "CDC CLIA"
+ "url": "XON.10",
+ "valueString": "CDC CLIA"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CDC"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CDC"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "CDC CLIA"
+ "value": "CDC CLIA"
}
],
- "name" : "CDC"
+ "name": "CDC"
}
},
{
- "fullUrl" : "Device/1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213",
- "resource" : {
- "resourceType" : "Device",
- "id" : "1716964508407050000.3eb837ac-e47c-4205-b924-174ab3cfe213",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
- "valueReference" : {
- "reference" : "Organization/1716964508406808000.912ee71f-1c70-40c5-b0fd-d3233ab7ab84"
+ "fullUrl": "Device/1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4",
+ "resource": {
+ "resourceType": "Device",
+ "id": "1732561494915438000.258e5b9a-7885-41de-9064-936700d5d4d4",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-vendor-org",
+ "valueReference": {
+ "reference": "Organization/1732561494915019000.e965d8d9-89bf-4afe-b009-9a263aca00f1"
}
}
],
- "manufacturer" : "CDC",
- "deviceName" : [
+ "manufacturer": "CDC",
+ "deviceName": [
{
- "name" : "STARLIMS",
- "type" : "manufacturer-name"
+ "name": "STARLIMS",
+ "type": "manufacturer-name"
}
],
- "modelNumber" : "Binary ID unknown",
- "version" : [
+ "modelNumber": "Binary ID unknown",
+ "version": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
- "valueDateTime" : "2023-08-02T18:08:02-04:00",
- "_valueDateTime" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/software-install-date",
+ "valueDateTime": "2023-08-02T18:08:02-04:00",
+ "_valueDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230802180802-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230802180802-0400"
}
]
}
}
],
- "value" : "ELIMS V11"
+ "value": "ELIMS V11"
}
],
- "note" : [
+ "note": [
{
- "text" : "test"
+ "text": "test"
}
]
}
},
{
- "fullUrl" : "Provenance/1716964508413845000.64588739-af10-4517-adf7-2da281c47b75",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716964508413845000.64588739-af10-4517-adf7-2da281c47b75",
- "recorded" : "2024-05-29T02:35:08Z",
- "policy" : [
+ "fullUrl": "Provenance/1732561494924696000.481d05f9-1bc2-4377-be74-160014d943cb",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732561494924696000.481d05f9-1bc2-4377-be74-160014d943cb",
+ "recorded": "2024-11-25T14:04:54Z",
+ "policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
- "activity" : {
- "coding" : [
+ "activity": {
+ "coding": [
{
- "code" : "v2-FHIR transformation"
+ "code": "v2-FHIR transformation"
}
]
},
- "agent" : [
+ "agent": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
- "code" : "assembler"
+ "system": "http://terminology.hl7.org/CodeSystem/provenance-participant-type",
+ "code": "assembler"
}
]
},
- "who" : {
- "reference" : "Organization/1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f"
+ "who": {
+ "reference": "Organization/1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736"
}
}
]
}
},
{
- "fullUrl" : "Organization/1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508413516000.3ae5db58-59bd-46de-be6a-8c577719601f",
- "identifier" : [
+ "fullUrl": "Organization/1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494924204000.5a82be4e-aa66-4eb2-abc0-ac51c73fb736",
+ "identifier": [
{
- "value" : "CDC PRIME - Atlanta"
+ "value": "CDC PRIME - Atlanta"
},
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.114222.4.1.237821"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.114222.4.1.237821"
}
]
}
},
{
- "fullUrl" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90",
- "resource" : {
- "resourceType" : "Patient",
- "id" : "1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90",
- "extension" : [
+ "fullUrl": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850",
+ "resource": {
+ "resourceType": "Patient",
+ "id": "1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
- "valueAnnotation" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Accession level coment."
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Accession level coment."
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "Accession level coment."
+ "text": "Accession level coment."
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
- "valueAnnotation" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/patient-notes",
+ "valueAnnotation": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234"
+ "text": "SPHL Submitter: CDPH, Viral and Rickettsial Disease Laboratory, Submitter ID: SPHL-000048, Address: 850 Marina Bay Parkway Rm. E-361 Richmond, California 94804 United States, Email: VRDL.Mail@cdph.ca.gov, Submitter Patient ID: PID123, Submitter Alt Patient ID: AltPID1234, Submitter Specimen ID: Specimen123, Submitter Alt Specimen ID: AltSP1234"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pid-patient",
+ "extension": [
{
- "url" : "PID.8",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "PID.8",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "F"
+ "code": "F"
}
]
}
@@ -574,3216 +574,3236 @@
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/studentStatus",
- "valueCodeableConcept" : {
- "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70231"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70231"
}
],
- "version" : "2.5.1",
- "code" : "F",
- "display" : "Full-time student"
+ "version": "2.5.1",
+ "code": "F",
+ "display": "Full-time student"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70231"
}
],
- "version" : "2.5.1",
- "code" : "N",
- "display" : "Not a student"
+ "version": "2.5.1",
+ "code": "N",
+ "display": "Not a student"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70231"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70231"
}
],
- "version" : "4",
- "code" : "N",
- "display" : "Not a student"
+ "version": "4",
+ "code": "N",
+ "display": "Not a student"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-disability",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70295"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70295"
}
],
- "version" : "2.5.1",
- "code" : "T",
- "display" : "TEST"
+ "version": "2.5.1",
+ "code": "T",
+ "display": "TEST"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70295"
}
],
- "version" : "2.5.1",
- "code" : "D",
- "display" : "Debug"
+ "version": "2.5.1",
+ "code": "D",
+ "display": "Debug"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70295"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70295"
}
],
- "version" : "4",
- "code" : "P",
- "display" : "Prod"
+ "version": "4",
+ "code": "P",
+ "display": "Prod"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/livingWill",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70315"
+ "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"
+ "version": "2.5.1",
+ "code": "F",
+ "display": "Yes, patient has a living will but it is not on file"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70315"
}
],
- "version" : "2.5.1",
- "code" : "U",
- "display" : "Unknown"
+ "version": "2.5.1",
+ "code": "U",
+ "display": "Unknown"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70315"
+ "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"
+ "version": "4",
+ "code": "I",
+ "display": "No, patient does not have a living will but information was provided"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/patient-congregation",
- "valueString" : "1st Ordering Facility"
+ "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": "http://hl7.org/fhir/StructureDefinition/patient-congregation",
+ "valueString": "2nd Ordering Facility"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/pd1-patient-additional-demographic",
+ "extension": [
{
- "url" : "PD1.1",
- "valueCodeableConcept" : {
- "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70223"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "2.5.1",
- "code" : "C",
- "display" : "Small Children Dependent"
+ "version": "2.5.1",
+ "code": "C",
+ "display": "Small Children Dependent"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "2.5.1",
- "code" : "M",
- "display" : "Medical Supervision Required"
+ "version": "2.5.1",
+ "code": "M",
+ "display": "Medical Supervision Required"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70223"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "4",
- "code" : "M",
- "display" : "Medical Supervision Required"
+ "version": "4",
+ "code": "M",
+ "display": "Medical Supervision Required"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.1",
- "valueCodeableConcept" : {
- "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70223"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "2.5.1",
- "code" : "O",
- "display" : "Other"
+ "version": "2.5.1",
+ "code": "O",
+ "display": "Other"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "2.5.1",
- "code" : "M",
- "display" : "Medical Supervision Required"
+ "version": "2.5.1",
+ "code": "M",
+ "display": "Medical Supervision Required"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70223"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70223"
}
],
- "version" : "4",
- "code" : "U",
- "display" : "Unknown"
+ "version": "4",
+ "code": "U",
+ "display": "Unknown"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.2",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70220"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70220"
}
],
- "version" : "2.5.1",
- "code" : "A",
- "display" : "Alone"
+ "version": "2.5.1",
+ "code": "A",
+ "display": "Alone"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70220"
}
],
- "version" : "2.5.1",
- "code" : "F",
- "display" : "Family"
+ "version": "2.5.1",
+ "code": "F",
+ "display": "Family"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70220"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70220"
}
],
- "version" : "4",
- "code" : "F",
- "display" : "Family"
+ "version": "4",
+ "code": "F",
+ "display": "Family"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.16",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70441"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70441"
}
],
- "version" : "2.5.1",
- "code" : "A",
- "display" : "Active"
+ "version": "2.5.1",
+ "code": "A",
+ "display": "Active"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70441"
}
],
- "version" : "2.5.1",
- "code" : "O",
- "display" : "Other"
+ "version": "2.5.1",
+ "code": "O",
+ "display": "Other"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70441"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70441"
}
],
- "version" : "4",
- "code" : "I",
- "display" : "Inactive"
+ "version": "4",
+ "code": "I",
+ "display": "Inactive"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.17",
- "valueString" : "20230501102531-0400"
+ "url": "PD1.17",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "PD1.18",
- "valueString" : "20230501102531-0400"
+ "url": "PD1.18",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "PD1.19",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70140"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70140"
}
],
- "version" : "2.5.1",
- "code" : "AUSA",
- "display" : "Australian Army"
+ "version": "2.5.1",
+ "code": "AUSA",
+ "display": "Australian Army"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70140"
}
],
- "version" : "2.5.1",
- "code" : "AUSN",
- "display" : "Australian Navy"
+ "version": "2.5.1",
+ "code": "AUSN",
+ "display": "Australian Navy"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70140"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70140"
}
],
- "version" : "4",
- "code" : "AUSFA",
- "display" : "Australian Air Force"
+ "version": "4",
+ "code": "AUSFA",
+ "display": "Australian Air Force"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.20",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70141"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70141"
}
],
- "version" : "2.5.1",
- "code" : "E1... E9",
- "display" : "Enlisted"
+ "version": "2.5.1",
+ "code": "E1... E9",
+ "display": "Enlisted"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70141"
}
],
- "version" : "2.5.1",
- "code" : "W1 ... W4",
- "display" : "Warrent Officers"
+ "version": "2.5.1",
+ "code": "W1 ... W4",
+ "display": "Warrent Officers"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70141"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70141"
}
],
- "version" : "4",
- "code" : "O1 ... O9",
- "display" : "Officers"
+ "version": "4",
+ "code": "O1 ... O9",
+ "display": "Officers"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.21",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70142"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70142"
}
],
- "version" : "2.5.1",
- "code" : "ACT",
- "display" : "Active duty"
+ "version": "2.5.1",
+ "code": "ACT",
+ "display": "Active duty"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70142"
}
],
- "version" : "2.5.1",
- "code" : "RET",
- "display" : "Retired"
+ "version": "2.5.1",
+ "code": "RET",
+ "display": "Retired"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70142"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70142"
}
],
- "version" : "4",
- "code" : "DEC",
- "display" : "Deceased"
+ "version": "4",
+ "code": "DEC",
+ "display": "Deceased"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.22",
- "valueString" : "20230501102531-0400"
+ "url": "PD1.22",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "PD1.8",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70316"
+ "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"
+ "version": "2.5.1",
+ "code": "F",
+ "display": "Yes, patient is a documented donor, but documentation is not on file"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70316"
}
],
- "version" : "2.5.1",
- "code" : "U",
- "display" : "Unknown"
+ "version": "2.5.1",
+ "code": "U",
+ "display": "Unknown"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70316"
+ "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"
+ "version": "4",
+ "code": "I",
+ "display": "No, patient is not a documented donor, but information was provided"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.9",
- "valueString" : "N"
+ "url": "PD1.9",
+ "valueString": "N"
},
{
- "url" : "PD1.10",
- "valueIdentifier" : {
- "extension" : [
+ "url": "PD1.10",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
{
- "url" : "CX.5",
- "valueString" : "MR"
+ "url": "CX.5",
+ "valueString": "MR"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PD1.10"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PD1.10"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "code" : "MR"
+ "code": "MR"
}
]
},
- "system" : "NIST MPI",
- "_system" : {
- "extension" : [
+ "system": "NIST MPI",
+ "_system": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "NIST MPI"
+ "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",
+ "valueString": "2.16.840.1.113883.3.72.5.30.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
- "value" : "18547545"
+ "value": "18547545"
}
},
{
- "url" : "PD1.10",
- "valueIdentifier" : {
- "extension" : [
+ "url": "PD1.10",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
- "valueReference" : {
- "reference" : "Organization/1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-facility",
+ "valueReference": {
+ "reference": "Organization/1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
{
- "url" : "CX.5",
- "valueString" : "SS"
+ "url": "CX.5",
+ "valueString": "SS"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PD1.10"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PD1.10"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "code" : "SS"
+ "code": "SS"
}
]
},
- "system" : "SSN",
- "_system" : {
- "extension" : [
+ "system": "SSN",
+ "_system": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SSN"
+ "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",
+ "valueString": "2.16.840.1.113883.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
- "value" : "111111111"
+ "value": "111111111"
}
},
{
- "url" : "PD1.11",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70215"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70215"
}
],
- "version" : "2.5.1",
- "code" : "F",
- "display" : "Family only"
+ "version": "2.5.1",
+ "code": "F",
+ "display": "Family only"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70215"
}
],
- "version" : "2.5.1",
- "code" : "U",
- "display" : "Unknown"
+ "version": "2.5.1",
+ "code": "U",
+ "display": "Unknown"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70215"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70215"
}
],
- "version" : "4",
- "code" : "N",
- "display" : "No Publicity"
+ "version": "4",
+ "code": "N",
+ "display": "No Publicity"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.12",
- "valueString" : "N"
+ "url": "PD1.12",
+ "valueString": "N"
},
{
- "url" : "PD1.13",
- "valueString" : "20230501102531-0400"
+ "url": "PD1.13",
+ "valueString": "20230501102531-0400"
},
{
- "url" : "PD1.14",
- "valueReference" : {
- "reference" : "Organization/1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406"
+ "url": "PD1.14",
+ "valueReference": {
+ "reference": "Organization/1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3"
}
},
{
- "url" : "PD1.14",
- "valueReference" : {
- "reference" : "Organization/1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9"
+ "url": "PD1.14",
+ "valueReference": {
+ "reference": "Organization/1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46"
}
},
{
- "url" : "PD1.15",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70435"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "2.5.1",
- "code" : "DNR",
- "display" : "Do not resuscitate"
+ "version": "2.5.1",
+ "code": "DNR",
+ "display": "Do not resuscitate"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "2.5.1",
- "code" : "N",
- "display" : "No directive"
+ "version": "2.5.1",
+ "code": "N",
+ "display": "No directive"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70435"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "4",
- "code" : "N",
- "display" : "No directive"
+ "version": "4",
+ "code": "N",
+ "display": "No directive"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
},
{
- "url" : "PD1.15",
- "valueCodeableConcept" : {
- "extension" : [
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:8.44.235.1.113883.3.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70435"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "2.5.1",
- "code" : "DNR",
- "display" : "Do not resuscitate"
+ "version": "2.5.1",
+ "code": "DNR",
+ "display": "Do not resuscitate"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "2.5.1",
- "code" : "N",
- "display" : "No directive"
+ "version": "2.5.1",
+ "code": "N",
+ "display": "No directive"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70435"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70435"
}
],
- "version" : "4",
- "code" : "N",
- "display" : "No directive"
+ "version": "4",
+ "code": "N",
+ "display": "No directive"
}
],
- "text" : "TEST"
+ "text": "TEST"
}
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
{
- "url" : "CX.5",
- "valueString" : "PI"
+ "url": "CX.5",
+ "valueString": "PI"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "code" : "PI"
+ "code": "PI"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "_system" : {
- "extension" : [
+ "system": "STARLIMS.CDC.Stag",
+ "_system": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
- "value" : "test"
+ "value": "test"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cx-identifier",
+ "extension": [
{
- "url" : "CX.5",
- "valueString" : "PI"
+ "url": "CX.5",
+ "valueString": "PI"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PID.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PID.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "code" : "PI"
+ "code": "PI"
}
]
},
- "system" : "SPHL-000048",
- "_system" : {
- "extension" : [
+ "system": "SPHL-000048",
+ "_system": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
- "value" : "PID123"
+ "value": "PID123"
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
{
- "url" : "XPN.2",
- "valueString" : "HL7"
+ "url": "XPN.2",
+ "valueString": "HL7"
},
{
- "url" : "XPN.3",
- "valueString" : "MI"
+ "url": "XPN.3",
+ "valueString": "MI"
},
{
- "url" : "XPN.7",
- "valueString" : "L"
+ "url": "XPN.7",
+ "valueString": "L"
}
]
}
],
- "use" : "official",
- "family" : "Mega",
- "given" : [
+ "use": "official",
+ "family": "Mega",
+ "given": [
"HL7",
"MI"
]
}
],
- "gender" : "female",
- "_birthDate" : {
- "extension" : [
+ "gender": "female",
+ "_birthDate": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "0000"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "0000"
}
]
},
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "XAD.7",
- "valueCode" : "H"
+ "url": "XAD.7",
+ "valueCode": "H"
}
]
}
],
- "use" : "home",
- "country" : "USA"
+ "use": "home",
+ "country": "USA"
}
],
- "contact" : [
+ "contact": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://hl7.org/fhir/StructureDefinition/relationship",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70131"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
}
],
- "code" : "N",
- "display" : "Next-of-Kin"
+ "code": "N",
+ "display": "Next-of-Kin"
}
]
}
},
{
- "url" : "https://hl7.org/fhir/StructureDefinition/relationship",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://hl7.org/fhir/StructureDefinition/relationship",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70131"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
}
],
- "code" : "N",
- "display" : "Next-of-Kin"
+ "code": "N",
+ "display": "Next-of-Kin"
}
]
}
}
],
- "name" : {
- "extension" : [
+ "relationship": [
+ {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
+ }
+ ],
+ "code": "N",
+ "display": "Next-of-Kin"
+ }
+ ]
+ }
+ ],
+ "name": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
{
- "url" : "XPN.2",
- "valueString" : "Leia"
+ "url": "XPN.2",
+ "valueString": "Leia"
}
]
}
],
- "family" : "Organa",
- "given" : [
+ "family": "Organa",
+ "given": [
"Leia"
]
},
- "telecom" : [
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "31"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "31"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "201"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "201"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "234567"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "234567"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.3",
- "valueString" : "PH"
+ "url": "XTN.3",
+ "valueString": "PH"
},
{
- "url" : "XTN.7",
- "valueString" : "234567"
+ "url": "XTN.7",
+ "valueString": "234567"
},
{
- "url" : "XTN.12",
- "valueString" : "+31201234567"
+ "url": "XTN.12",
+ "valueString": "+31201234567"
}
]
}
],
- "system" : "phone",
- "value" : "+31201234567"
+ "system": "phone",
+ "value": "+31201234567"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "31"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "31"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "201"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "201"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "234567"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "234567"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.3",
- "valueString" : "PH"
+ "url": "XTN.3",
+ "valueString": "PH"
},
{
- "url" : "XTN.7",
- "valueString" : "234567"
+ "url": "XTN.7",
+ "valueString": "234567"
},
{
- "url" : "XTN.12",
- "valueString" : "+31201234567"
+ "url": "XTN.12",
+ "valueString": "+31201234567"
}
]
}
],
- "system" : "phone",
- "value" : "+31201234567"
+ "system": "phone",
+ "value": "+31201234567"
}
]
}
],
- "generalPractitioner" : [
+ "generalPractitioner": [
{
- "reference" : "Organization/1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e"
+ "reference": "Organization/1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999"
},
{
- "reference" : "Organization/1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8"
+ "reference": "Organization/1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b"
}
]
}
},
{
- "fullUrl" : "Location/1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3",
- "extension" : [
+ "fullUrl": "Location/1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508421531000.4f4e04d0-2dd7-4c9b-89ea-78e5f9f2100e",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494934903000.9463edae-4098-4c4c-b290-07d1b7e15999",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "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/name-representation-code",
+ "valueString": "NameRepCode"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
},
{
- "url" : "XON.10",
- "valueString" : "OrgIdentifier"
+ "url": "XON.10",
+ "valueString": "OrgIdentifier"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716964508420302000.6468a55c-02d7-4101-8c9a-2a3cbab80ff3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732561494933334000.3848bd28-492b-4899-a3ad-d0d036a711b5"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "OrgIdentifier"
+ "value": "OrgIdentifier"
}
],
- "name" : "Ordering Facility"
+ "name": "Ordering Facility"
}
},
{
- "fullUrl" : "Location/1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958",
- "extension" : [
+ "fullUrl": "Location/1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508423689000.a8461c1b-6961-4946-8a36-07ac3c3edcd8",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494937469000.27684b41-9694-4621-a8c5-ab560f28e28b",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "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/name-representation-code",
+ "valueString": "NameRepCode"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
},
{
- "url" : "XON.10",
- "valueString" : "OrgIdentifier"
+ "url": "XON.10",
+ "valueString": "OrgIdentifier"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716964508422602000.ba39e247-8003-4248-be30-dc6c71caa958"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732561494935948000.72dc3547-b3cf-4fd3-9864-18267d10b7bf"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "OrgIdentifier"
+ "value": "OrgIdentifier"
}
],
- "name" : "Ordering Facility"
+ "name": "Ordering Facility"
}
},
{
- "fullUrl" : "Organization/1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508431476000.30d5977c-0a2c-4de4-ad86-f21b7f754923",
- "identifier" : [
+ "fullUrl": "Organization/1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494948870000.5cbe53b9-772a-4877-855e-e7f96f7980e3",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "University H"
+ "value": "University H"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "ISO"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "ISO"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.113883.3.0"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.113883.3.0"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508432441000.8401c1df-34f1-43f4-bdbb-9f4d2d693ae3",
- "identifier" : [
+ "fullUrl": "Organization/1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494950116000.fdf10cda-67a7-4100-ad43-cf0409a12d34",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "SSA"
+ "value": "SSA"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0301",
- "code" : "ISO"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301",
+ "code": "ISO"
}
]
},
- "system" : "urn:ietf:rfc:3986",
- "value" : "2.16.840.1.113883.3.184"
+ "system": "urn:ietf:rfc:3986",
+ "value": "2.16.840.1.113883.3.184"
}
]
}
},
{
- "fullUrl" : "Location/1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95",
- "extension" : [
+ "fullUrl": "Location/1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508434855000.9b935134-8142-4cf7-b361-841ac9f4d406",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494953497000.950fd58f-eba9-4694-bbb2-637838a31fc3",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "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/name-representation-code",
+ "valueString": "NameRepCode"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
},
{
- "url" : "XON.10",
- "valueString" : "1st OrgIdentifier"
+ "url": "XON.10",
+ "valueString": "1st OrgIdentifier"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716964508434094000.40fa5007-4b3d-4498-83e4-0c72c2002e95"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732561494951963000.32a5533b-cc3a-411f-a0ea-c6c9e07bb91b"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "1st OrgIdentifier"
+ "value": "1st OrgIdentifier"
}
],
- "name" : "1st Ordering Facility"
+ "name": "1st Ordering Facility"
}
},
{
- "fullUrl" : "Location/1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7",
- "extension" : [
+ "fullUrl": "Location/1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "2.16.840.1.113883.9.11"
+ "value": "2.16.840.1.113883.9.11"
}
],
- "name" : "Hospital A",
- "physicalType" : {
- "coding" : [
+ "name": "Hospital A",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "Organization/1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508436402000.9deca9dd-41c9-47aa-8a51-c695e8665dd9",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494955263000.ca4e6d8c-92fa-4755-8135-9fd128e82a46",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "system": "http://loinc.org",
+ "version": "1",
+ "code": "1234-5",
+ "display": "TestText"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2",
- "code" : "1234-5",
- "display" : "TestAltText"
+ "system": "http://loinc.org",
+ "version": "2",
+ "code": "1234-5",
+ "display": "TestAltText"
}
],
- "text" : "OriginalText"
+ "text": "OriginalText"
}
}
],
- "system" : "LN",
- "version" : "1",
- "code" : "1234-5",
- "display" : "TestText"
+ "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/name-representation-code",
+ "valueString": "NameRepCode"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.3",
- "valueString" : "123"
+ "url": "XON.3",
+ "valueString": "123"
},
{
- "url" : "XON.10",
- "valueString" : "2nd OrgIdentifier"
+ "url": "XON.10",
+ "valueString": "2nd OrgIdentifier"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
- "valueString" : "Check Digit"
+ "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/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "Assigning Authority"
+ "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",
+ "valueString": "2.1.4.1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
- "valueCode" : "C1"
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "C1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
- "valueReference" : {
- "reference" : "Location/1716964508435618000.b1b6ac05-f8e0-4d73-89c6-351d176affd7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/identifier-location",
+ "valueReference": {
+ "reference": "Location/1732561494954270000.a4cb489d-0b2e-4761-887a-f1bbf3745245"
}
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "MD"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "MD"
}
]
},
- "value" : "2nd OrgIdentifier"
+ "value": "2nd OrgIdentifier"
}
],
- "name" : "2nd Ordering Facility"
+ "name": "2nd Ordering Facility"
}
},
{
- "fullUrl" : "Provenance/1716964508455247000.1fd44214-6fb9-4430-ae7f-36ef299676d8",
- "resource" : {
- "resourceType" : "Provenance",
- "id" : "1716964508455247000.1fd44214-6fb9-4430-ae7f-36ef299676d8",
- "target" : [
+ "fullUrl": "Provenance/1732561494978140000.543eb08c-009a-45af-bd6a-6bbe2e96eade",
+ "resource": {
+ "resourceType": "Provenance",
+ "id": "1732561494978140000.543eb08c-009a-45af-bd6a-6bbe2e96eade",
+ "target": [
{
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
}
],
- "recorded" : "2024-05-29T02:35:08Z",
- "activity" : {
- "coding" : [
+ "recorded": "2024-11-25T14:04:54Z",
+ "activity": {
+ "coding": [
{
- "system" : "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
- "code" : "UPDATE"
+ "system": "https://terminology.hl7.org/CodeSystem/v3-DataOperation",
+ "code": "UPDATE"
}
]
}
}
},
{
- "fullUrl" : "RelatedPerson/1716964508456886000.a9540572-c8a4-45d1-8021-ca342745f69b",
- "resource" : {
- "resourceType" : "RelatedPerson",
- "id" : "1716964508456886000.a9540572-c8a4-45d1-8021-ca342745f69b",
- "extension" : [
+ "fullUrl": "RelatedPerson/1732561494980222000.9bd69413-6d6f-4ab7-8d39-add9a416b2ce",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732561494980222000.9bd69413-6d6f-4ab7-8d39-add9a416b2ce",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "NK1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
}
],
- "patient" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "patient": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "relationship" : [
+ "relationship": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70131"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
}
],
- "code" : "N",
- "display" : "Next-of-Kin"
+ "code": "N",
+ "display": "Next-of-Kin"
}
]
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
{
- "url" : "XPN.2",
- "valueString" : "Leia"
+ "url": "XPN.2",
+ "valueString": "Leia"
}
]
}
],
- "family" : "Organa",
- "given" : [
+ "family": "Organa",
+ "given": [
"Leia"
]
}
],
- "telecom" : [
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "31"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "31"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "201"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "201"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "234567"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "234567"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.3",
- "valueString" : "PH"
+ "url": "XTN.3",
+ "valueString": "PH"
},
{
- "url" : "XTN.7",
- "valueString" : "234567"
+ "url": "XTN.7",
+ "valueString": "234567"
},
{
- "url" : "XTN.12",
- "valueString" : "+31201234567"
+ "url": "XTN.12",
+ "valueString": "+31201234567"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.5"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
}
],
- "system" : "phone",
- "value" : "+31201234567"
+ "system": "phone",
+ "value": "+31201234567"
}
]
}
},
{
- "fullUrl" : "RelatedPerson/1716964508458038000.a6855d9f-cd0b-47bb-aee6-05b7a4850307",
- "resource" : {
- "resourceType" : "RelatedPerson",
- "id" : "1716964508458038000.a6855d9f-cd0b-47bb-aee6-05b7a4850307",
- "extension" : [
+ "fullUrl": "RelatedPerson/1732561494982048000.0cc61f45-259a-444d-86de-d94a3bfad75e",
+ "resource": {
+ "resourceType": "RelatedPerson",
+ "id": "1732561494982048000.0cc61f45-259a-444d-86de-d94a3bfad75e",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "NK1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "NK1"
}
],
- "patient" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "patient": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "relationship" : [
+ "relationship": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.3"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70131"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70131"
}
],
- "code" : "N",
- "display" : "Next-of-Kin"
+ "code": "N",
+ "display": "Next-of-Kin"
}
]
}
],
- "name" : [
+ "name": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xpn-human-name",
+ "extension": [
{
- "url" : "XPN.2",
- "valueString" : "Liz"
+ "url": "XPN.2",
+ "valueString": "Liz"
}
]
}
],
- "family" : "Navarro",
- "given" : [
+ "family": "Navarro",
+ "given": [
"Liz"
]
}
],
- "telecom" : [
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
- "valueString" : "31"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-country",
+ "valueString": "31"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
- "valueString" : "201"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-area",
+ "valueString": "201"
},
{
- "url" : "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
- "valueString" : "234567"
+ "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-local",
+ "valueString": "234567"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.3",
- "valueString" : "PH"
+ "url": "XTN.3",
+ "valueString": "PH"
},
{
- "url" : "XTN.7",
- "valueString" : "234567"
+ "url": "XTN.7",
+ "valueString": "234567"
},
{
- "url" : "XTN.12",
- "valueString" : "+31201234567"
+ "url": "XTN.12",
+ "valueString": "+31201234567"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "NK1.5"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "NK1.5"
}
],
- "system" : "phone",
- "value" : "+31201234567"
+ "system": "phone",
+ "value": "+31201234567"
}
]
}
},
{
- "fullUrl" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b",
- "resource" : {
- "resourceType" : "Encounter",
- "id" : "1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b",
- "meta" : {
- "security" : [
+ "fullUrl": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93",
+ "resource": {
+ "resourceType": "Encounter",
+ "id": "1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93",
+ "meta": {
+ "security": [
{
- "code" : "true"
+ "code": "true"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "episodeOfCare" : [
+ "episodeOfCare": [
{
- "reference" : "EpisodeOfCare/1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512"
+ "reference": "EpisodeOfCare/1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62"
}
],
- "length" : {
- "value" : 4,
- "unit" : "days",
- "system" : "http://unitsofmeasure.org/",
- "code" : "d"
+ "length": {
+ "value": 4,
+ "unit": "days",
+ "system": "http://unitsofmeasure.org/",
+ "code": "d"
},
- "location" : [
+ "location": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.6"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.6"
}
],
- "location" : {
- "reference" : "Location/1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870"
+ "location": {
+ "reference": "Location/1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb"
},
- "status" : "completed"
+ "status": "completed"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0",
- "identifier" : [
+ "fullUrl": "Organization/1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "EI.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "EI.2"
}
],
- "value" : "NAME"
+ "value": "NAME"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "EI.3,EI.4"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "EI.3,EI.4"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "UNI"
+ "value": "UNI"
}
]
}
},
{
- "fullUrl" : "Location/1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870",
- "resource" : {
- "resourceType" : "Location",
- "id" : "1716964508460696000.cb518cc1-447d-489c-87ae-5697f17ec870",
- "identifier" : [
+ "fullUrl": "Location/1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb",
+ "resource": {
+ "resourceType": "Location",
+ "id": "1732561494985750000.5ce51de6-90e9-4b7d-8bf3-1890a43773eb",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
}
],
- "value" : "Hospital A"
+ "value": "Hospital A"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "HD.2,HD.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "ISO"
+ "code": "ISO"
}
]
},
- "value" : "2.4.4.4"
+ "value": "2.4.4.4"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
- "valueString" : "default"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/ei-assigner-organization-type",
+ "valueString": "default"
}
],
- "value" : "Entity ID",
- "assigner" : {
- "reference" : "Organization/1716964508460424000.83af2bf0-c0c5-4232-8327-7fc2871026f0"
+ "value": "Entity ID",
+ "assigner": {
+ "reference": "Organization/1732561494985299000.8cfa1c1f-1e09-41b9-b458-fe27bb20e9db"
}
}
],
- "mode" : "instance",
- "physicalType" : {
- "coding" : [
+ "mode": "instance",
+ "physicalType": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/location-physical-type",
- "code" : "si"
+ "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
+ "code": "si"
}
]
}
}
},
{
- "fullUrl" : "EpisodeOfCare/1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512",
- "resource" : {
- "resourceType" : "EpisodeOfCare",
- "id" : "1716964508460958000.96884718-17db-4575-97ff-6e1e940fd512",
- "extension" : [
+ "fullUrl": "EpisodeOfCare/1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62",
+ "resource": {
+ "resourceType": "EpisodeOfCare",
+ "id": "1732561494986152000.262f30bd-f1c6-452a-8655-a71ed6362d62",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "PV1.54"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "PV1.54"
}
]
}
},
{
- "fullUrl" : "Observation/1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f",
- "extension" : [
+ "fullUrl": "Observation/1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
{
- "url" : "OBX.2",
- "valueId" : "CWE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url" : "OBX.11",
- "valueString" : "F"
+ "url": "OBX.11",
+ "valueString": "F"
},
{
- "url" : "OBX.17",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
],
- "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
}
]
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "code" : "80383-3",
- "display" : "Flu B"
+ "system": "http://loinc.org",
+ "code": "80383-3",
+ "display": "Flu B"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "performer" : [
+ "performer": [
{
- "reference" : "Organization/1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4"
+ "reference": "Organization/1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34"
},
{
- "reference" : "Organization/1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a"
+ "reference": "Organization/1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9"
}
],
- "valueCodeableConcept" : {
- "coding" : [
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "code" : "260415000",
- "display" : "Not detected"
+ "system": "http://snomed.info/sct",
+ "code": "260415000",
+ "display": "Not detected"
}
]
},
- "interpretation" : [
+ "interpretation": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
}
],
- "version" : "2.7",
- "code" : "N",
- "display" : "Normal"
+ "version": "2.7",
+ "code": "N",
+ "display": "Normal"
}
]
}
],
- "method" : {
- "coding" : [
+ "method": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
],
- "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
}
},
{
- "fullUrl" : "Organization/1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508631993000.ebf1036e-3148-41a1-83a1-f39bd5b619c4",
- "extension" : [
+ "fullUrl": "Organization/1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495196528000.0e1ebc61-379f-405c-bb3f-c72c8286ab34",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "CLIA"
}
],
- "code" : "11D1111111",
- "display" : "CSV uploads"
+ "code": "11D1111111",
+ "display": "CSV uploads"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
}
],
- "identifier" : [
+ "identifier": [
{
- "system" : "CLIA",
- "value" : "11D1111111"
+ "system": "CLIA",
+ "value": "11D1111111"
}
],
- "name" : "CSV uploads"
+ "name": "CSV uploads"
}
},
{
- "fullUrl" : "Organization/1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508633221000.beeaced3-a497-4d69-942e-cd0847fb051a",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495198058000.67d30dac-7919-466e-be90-26a187040fa9",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "L"
+ "code": "L"
}
]
}
}
],
- "code" : "L"
+ "code": "L"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "11D1111111"
+ "url": "XON.10",
+ "valueString": "11D1111111"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.25"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.25"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.4.7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "11D1111111"
+ "value": "11D1111111"
}
],
- "name" : "CSV uploads-11D1111111",
- "address" : [
+ "name": "CSV uploads-11D1111111",
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "123 Main St"
+ "url": "SAD.1",
+ "valueString": "123 Main St"
}
]
}
]
}
],
- "line" : [
+ "line": [
"123 Main St"
],
- "state" : "CA",
- "postalCode" : "94553",
- "country" : "USA"
+ "state": "CA",
+ "postalCode": "94553",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Observation/1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135",
- "extension" : [
+ "fullUrl": "Observation/1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
{
- "url" : "OBX.2",
- "valueId" : "CWE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url" : "OBX.11",
- "valueString" : "F"
+ "url": "OBX.11",
+ "valueString": "F"
},
{
- "url" : "OBX.17",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBX.17",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
],
- "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
}
]
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "code" : "80382-5",
- "display" : "Flu A"
+ "system": "http://loinc.org",
+ "code": "80382-5",
+ "display": "Flu A"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "performer" : [
+ "performer": [
{
- "reference" : "Organization/1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1"
+ "reference": "Organization/1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef"
},
{
- "reference" : "Organization/1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8"
+ "reference": "Organization/1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1"
}
],
- "valueCodeableConcept" : {
- "coding" : [
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "code" : "260373001",
- "display" : "Detected"
+ "system": "http://snomed.info/sct",
+ "code": "260373001",
+ "display": "Detected"
}
]
},
- "interpretation" : [
+ "interpretation": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70078"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70078"
}
],
- "version" : "2.7",
- "code" : "A",
- "display" : "Abnormal"
+ "version": "2.7",
+ "code": "A",
+ "display": "Abnormal"
}
]
}
],
- "method" : {
- "coding" : [
+ "method": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "display" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "display": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
],
- "text" : "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
+ "text": "BD Veritor System for Rapid Detection of SARS-CoV-2 \u0026 Flu A+B*"
}
}
},
{
- "fullUrl" : "Organization/1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508636218000.3d71002a-36da-4415-b409-018b6428b8b1",
- "extension" : [
+ "fullUrl": "Organization/1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495201675000.cc44f588-cffd-4aa9-93de-b75d763ebfef",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "CLIA"
}
],
- "code" : "11D1111111",
- "display" : "CSV uploads"
+ "code": "11D1111111",
+ "display": "CSV uploads"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
}
],
- "identifier" : [
+ "identifier": [
{
- "system" : "CLIA",
- "value" : "11D1111111"
+ "system": "CLIA",
+ "value": "11D1111111"
}
],
- "name" : "CSV uploads"
+ "name": "CSV uploads"
}
},
{
- "fullUrl" : "Organization/1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508637324000.ff755a89-0a55-41f7-89f3-6439917531d8",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495203033000.f1660950-6ae9-49a6-98d0-0cf58b609fb1",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "L"
+ "code": "L"
}
]
}
}
],
- "code" : "L"
+ "code": "L"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "11D1111111"
+ "url": "XON.10",
+ "valueString": "11D1111111"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.25"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.25"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.4.7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "11D1111111"
+ "value": "11D1111111"
}
],
- "name" : "CSV uploads-11D1111111",
- "address" : [
+ "name": "CSV uploads-11D1111111",
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "123 Main St"
+ "url": "SAD.1",
+ "valueString": "123 Main St"
}
]
}
]
}
],
- "line" : [
+ "line": [
"123 Main St"
],
- "state" : "CA",
- "postalCode" : "94553",
- "country" : "USA"
+ "state": "CA",
+ "postalCode": "94553",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Observation/1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
- "valueString" : "ZZYGNAUM-1"
+ "fullUrl": "Observation/1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sub-id",
+ "valueString": "ZZYGNAUM-1"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2023-07-27T18:30:17-04:00",
- "_valueDateTime" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-07-27T18:30:17-04:00",
+ "_valueDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230727183017-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230727183017-0400"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
{
- "url" : "OBX.2",
- "valueId" : "CWE"
+ "url": "OBX.2",
+ "valueId": "CWE"
},
{
- "url" : "OBX.11",
- "valueString" : "F"
+ "url": "OBX.11",
+ "valueString": "F"
}
]
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.74",
- "code" : "100383-9",
- "display" : "MVPX DNA Spec Ql NAA+probe"
+ "system": "http://loinc.org",
+ "version": "2.74",
+ "code": "100383-9",
+ "display": "MVPX DNA Spec Ql NAA+probe"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "v_unknown",
- "code" : "3900",
- "display" : "Monkeypox generic"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "v_unknown",
+ "code": "3900",
+ "display": "Monkeypox generic"
}
],
- "text" : "Monkeypox generic"
+ "text": "Monkeypox generic"
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "effectiveDateTime" : "2023-07-24T15:24:00Z",
- "_effectiveDateTime" : {
- "extension" : [
+ "effectiveDateTime": "2023-07-24T15:24:00Z",
+ "_effectiveDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "performer" : [
+ "performer": [
{
- "reference" : "Organization/1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6"
+ "reference": "Organization/1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03"
},
{
- "reference" : "PractitionerRole/1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01"
+ "reference": "PractitionerRole/1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e"
},
{
- "reference" : "Organization/1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c"
+ "reference": "Organization/1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82"
}
],
- "valueCodeableConcept" : {
- "coding" : [
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012018",
- "code" : "10828004",
- "display" : "Positive"
+ "system": "http://snomed.info/sct",
+ "version": "09012018",
+ "code": "10828004",
+ "display": "Positive"
}
],
- "text" : "Positive"
+ "text": "Positive"
},
- "note" : [
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Run level Comment"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Run level Comment"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "Run level Comment"
+ "text": "Run level Comment"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Result level Comment."
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Result level Comment."
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "Result level Comment."
+ "text": "Result level Comment."
}
]
}
},
{
- "fullUrl" : "Organization/1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508640057000.32865fbe-c542-4fb9-b7e7-4677c34709f6",
- "extension" : [
+ "fullUrl": "Organization/1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495206183000.e11012d4-8e59-43c0-8e60-f49c34053b03",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "CLIA"
}
],
- "code" : "11D0668319",
- "display" : "Centers for Disease Control and Prevention"
+ "code": "11D0668319",
+ "display": "Centers for Disease Control and Prevention"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "47",
- "display" : "Poxvirus Laboratory/Poxvirus and Rabies Branch"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "47",
+ "display": "Poxvirus Laboratory/Poxvirus and Rabies Branch"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
}
],
- "identifier" : [
+ "identifier": [
{
- "system" : "CLIA",
- "value" : "11D0668319"
+ "system": "CLIA",
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention"
+ "name": "Centers for Disease Control and Prevention"
}
},
{
- "fullUrl" : "Practitioner/1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
{
- "url" : "XCN.3",
- "valueString" : "Christopher"
+ "url": "XCN.3",
+ "valueString": "Christopher"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "value" : "NXQ0@cdc.gov"
+ "value": "NXQ0@cdc.gov"
}
],
- "name" : [
+ "name": [
{
- "family" : "Anderson",
- "given" : [
+ "family": "Anderson",
+ "given": [
"Christopher"
]
}
@@ -3791,19 +3811,19 @@
}
},
{
- "fullUrl" : "PractitionerRole/1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716964508640316000.a30ce1c7-ca7a-4a2d-bcb9-e3e49da15c01",
- "practitioner" : {
- "reference" : "Practitioner/1716964508640783000.25e8523f-2de1-408f-a0e2-53ff17b2f8b5"
+ "fullUrl": "PractitionerRole/1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732561495206465000.18e4c576-11b1-437d-b882-89f3e7079b9e",
+ "practitioner": {
+ "reference": "Practitioner/1732561495207374000.107f3424-80ca-43b9-a2c7-253b5a1a67bd"
},
- "code" : [
+ "code": [
{
- "coding" : [
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/practitioner-role",
- "code" : "responsibleObserver"
+ "system": "http://terminology.hl7.org/CodeSystem/practitioner-role",
+ "code": "responsibleObserver"
}
]
}
@@ -3811,3089 +3831,3135 @@
}
},
{
- "fullUrl" : "Organization/1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508642118000.53c3cabc-195c-446b-9c4a-5e5efbbecb3c",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495208894000.ca39680e-ae79-4357-9057-b516a5cbaf82",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "L"
+ "code": "L"
}
]
}
}
],
- "code" : "L"
+ "code": "L"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "11D0668319"
+ "url": "XON.10",
+ "valueString": "11D0668319"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.25"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.25"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.4.7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "11D0668319"
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention",
- "address" : [
+ "name": "Centers for Disease Control and Prevention",
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "1600 Clifton Rd"
+ "url": "SAD.1",
+ "valueString": "1600 Clifton Rd"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "B"
+ "url": "XAD.7",
+ "valueCode": "B"
}
]
}
],
- "use" : "work",
- "line" : [
+ "use": "work",
+ "line": [
"1600 Clifton Rd"
],
- "city" : "Atlanta",
- "state" : "GA",
- "postalCode" : "30329",
- "country" : "USA"
+ "city": "Atlanta",
+ "state": "GA",
+ "postalCode": "30329",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Specimen/1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e",
- "extension" : [
+ "fullUrl": "Specimen/1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2023-07-24T15:24:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
+ }
+ ]
+ }
+ }
}
},
{
- "fullUrl" : "Specimen/1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625",
- "extension" : [
+ "fullUrl": "Specimen/1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "OBR"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "OBR"
}
- ]
+ ],
+ "collection": {
+ "collectedDateTime": "2023-07-24T15:24:00Z",
+ "_collectedDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
+ }
+ ]
+ }
+ }
}
},
{
- "fullUrl" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
+ "fullUrl": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
{
- "url" : "SPM.5",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "SPM.5",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "255251009",
- "display" : "Acute phase"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "255251009",
+ "display": "Acute phase"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "A",
- "display" : "Acute"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "A",
+ "display": "Acute"
}
],
- "text" : "Acute"
+ "text": "Acute"
}
},
{
- "url" : "SPM.6",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "SPM.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "69519002",
- "display" : "Ethylenediaminetetraacetic acid"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "69519002",
+ "display": "Ethylenediaminetetraacetic acid"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "EDT",
- "display" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "EDT",
+ "display": "Ethylenediaminetetraacetic acid (EDTA)"
}
],
- "text" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "text": "Ethylenediaminetetraacetic acid (EDTA)"
}
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "3015894743"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "3015894743"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "Specimen123"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Specimen123"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "3015894743"
+ "value": "3015894743"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "0912017",
- "code" : "119297000",
- "display" : "Blood specimen"
+ "system": "http://snomed.info/sct",
+ "version": "0912017",
+ "code": "119297000",
+ "display": "Blood specimen"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "BLD",
- "display" : "Blood"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "BLD",
+ "display": "Blood"
}
],
- "text" : "Blood"
+ "text": "Blood"
},
- "receivedTime" : "2023-07-27T17:52:20Z",
- "_receivedTime" : {
- "extension" : [
+ "receivedTime": "2023-07-27T17:52:20Z",
+ "_receivedTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230727175220"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230727175220"
}
]
},
- "collection" : {
- "extension" : [
+ "collection": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "7771000",
- "display" : "Left"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "7771000",
+ "display": "Left"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "LFT",
- "display" : "Left"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "LFT",
+ "display": "Left"
}
],
- "text" : "Left"
+ "text": "Left"
}
}
],
- "collectedDateTime" : "2023-07-24T15:24:00Z",
- "_collectedDateTime" : {
- "extension" : [
+ "collectedDateTime": "2023-07-24T15:24:00Z",
+ "_collectedDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "method" : {
- "coding" : [
+ "method": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "62931000284108",
- "display" : "Vacuum"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "62931000284108",
+ "display": "Vacuum"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "VC",
- "display" : "Vacuum"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "VC",
+ "display": "Vacuum"
}
],
- "text" : "Vacuum"
+ "text": "Vacuum"
},
- "bodySite" : {
- "coding" : [
+ "bodySite": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "53120007",
- "display" : "Arm"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "53120007",
+ "display": "Arm"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "ARM",
- "display" : "Arm"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "ARM",
+ "display": "Arm"
}
],
- "text" : "Arm"
+ "text": "Arm"
}
},
- "container" : [
+ "container": [
{
- "additiveCodeableConcept" : {
- "coding" : [
+ "additiveCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "69519002",
- "display" : "Ethylenediaminetetraacetic acid"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "69519002",
+ "display": "Ethylenediaminetetraacetic acid"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "EDT",
- "display" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "EDT",
+ "display": "Ethylenediaminetetraacetic acid (EDTA)"
}
],
- "text" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "text": "Ethylenediaminetetraacetic acid (EDTA)"
}
}
],
- "condition" : [
+ "condition": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "59102007",
- "display" : "Ice pack"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "59102007",
+ "display": "Ice pack"
}
],
- "text" : "Cold (Ice Pack)"
+ "text": "Cold (Ice Pack)"
}
],
- "note" : [
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
}
],
- "text" : ", Elution"
+ "text": ", Elution"
}
]
}
},
{
- "fullUrl" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb",
- "resource" : {
- "resourceType" : "Specimen",
- "id" : "1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
- "valueString" : "SPM"
+ "fullUrl": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f",
+ "resource": {
+ "resourceType": "Specimen",
+ "id": "1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
+ "valueString": "SPM"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/spm-specimen",
+ "extension": [
{
- "url" : "SPM.5",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "SPM.5",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "255251009",
- "display" : "Acute phase"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "255251009",
+ "display": "Acute phase"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "A",
- "display" : "Acute"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "A",
+ "display": "Acute"
}
],
- "text" : "Acute"
+ "text": "Acute"
}
},
{
- "url" : "SPM.6",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "SPM.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "69519002",
- "display" : "Ethylenediaminetetraacetic acid"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "69519002",
+ "display": "Ethylenediaminetetraacetic acid"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "EDT",
- "display" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "EDT",
+ "display": "Ethylenediaminetetraacetic acid (EDTA)"
}
],
- "text" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "text": "Ethylenediaminetetraacetic acid (EDTA)"
}
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/filler-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "3015894743"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "3015894743"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.1"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PGN"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/placer-assigned-identifier",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
- "valueString" : "Specimen123"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/entity-identifier",
+ "valueString": "Specimen123"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueString" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueString": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
- "valueString" : "SPM.2.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Component",
+ "valueString": "SPM.2.2"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FGN"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FGN"
}
]
},
- "value" : "3015894743"
+ "value": "3015894743"
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "0912017",
- "code" : "119297000",
- "display" : "Blood specimen"
+ "system": "http://snomed.info/sct",
+ "version": "0912017",
+ "code": "119297000",
+ "display": "Blood specimen"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "BLD",
- "display" : "Blood"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "BLD",
+ "display": "Blood"
}
],
- "text" : "Blood"
+ "text": "Blood"
},
- "receivedTime" : "2023-07-27T17:52:20Z",
- "_receivedTime" : {
- "extension" : [
+ "receivedTime": "2023-07-27T17:52:20Z",
+ "_receivedTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230727175220"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230727175220"
}
]
},
- "collection" : {
- "extension" : [
+ "collection": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/bodySiteModifier",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "7771000",
- "display" : "Left"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "7771000",
+ "display": "Left"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "LFT",
- "display" : "Left"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "LFT",
+ "display": "Left"
}
],
- "text" : "Left"
+ "text": "Left"
}
}
],
- "collectedDateTime" : "2023-07-24T15:24:00Z",
- "_collectedDateTime" : {
- "extension" : [
+ "collectedDateTime": "2023-07-24T15:24:00Z",
+ "_collectedDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "method" : {
- "coding" : [
+ "method": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "62931000284108",
- "display" : "Vacuum"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "62931000284108",
+ "display": "Vacuum"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "VC",
- "display" : "Vacuum"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "VC",
+ "display": "Vacuum"
}
],
- "text" : "Vacuum"
+ "text": "Vacuum"
},
- "bodySite" : {
- "coding" : [
+ "bodySite": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "53120007",
- "display" : "Arm"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "53120007",
+ "display": "Arm"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "ARM",
- "display" : "Arm"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "ARM",
+ "display": "Arm"
}
],
- "text" : "Arm"
+ "text": "Arm"
}
},
- "container" : [
+ "container": [
{
- "additiveCodeableConcept" : {
- "coding" : [
+ "additiveCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "69519002",
- "display" : "Ethylenediaminetetraacetic acid"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "69519002",
+ "display": "Ethylenediaminetetraacetic acid"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "Adobe_Code",
- "code" : "EDT",
- "display" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "Adobe_Code",
+ "code": "EDT",
+ "display": "Ethylenediaminetetraacetic acid (EDTA)"
}
],
- "text" : "Ethylenediaminetetraacetic acid (EDTA)"
+ "text": "Ethylenediaminetetraacetic acid (EDTA)"
}
}
],
- "condition" : [
+ "condition": [
{
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "SCT"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "SCT"
}
],
- "system" : "http://snomed.info/sct",
- "version" : "09012017",
- "code" : "59102007",
- "display" : "Ice pack"
+ "system": "http://snomed.info/sct",
+ "version": "09012017",
+ "code": "59102007",
+ "display": "Ice pack"
}
],
- "text" : "Cold (Ice Pack)"
+ "text": "Cold (Ice Pack)"
}
],
- "note" : [
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "SPM.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "SPM.14"
}
],
- "text" : ", Elution"
+ "text": ", Elution"
}
]
}
},
{
- "fullUrl" : "Observation/1716964508657874000.d98eff5e-789c-46d4-912d-d79b99a279e3",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1716964508657874000.d98eff5e-789c-46d4-912d-d79b99a279e3",
- "extension" : [
+ "fullUrl": "Observation/1732561495228478000.39417ef7-1947-422a-a54e-4e10e700e3b3",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732561495228478000.39417ef7-1947-422a-a54e-4e10e700e3b3",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2023-07-27T18:30:17Z",
- "_valueDateTime" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-07-27T18:30:17Z",
+ "_valueDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230727183017"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230727183017"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
{
- "url" : "SN.2",
- "valueString" : "28"
+ "url": "SN.2",
+ "valueString": "28"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
{
- "url" : "OBX.2",
- "valueId" : "SN"
+ "url": "OBX.2",
+ "valueId": "SN"
},
{
- "url" : "OBX.6",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "UCUM"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
}
],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.1",
- "code" : "a",
- "display" : "Year"
+ "system": "http://unitsofmeasure.org",
+ "version": "2.1",
+ "code": "a",
+ "display": "Year"
}
]
}
},
{
- "url" : "OBX.11",
- "valueString" : "F"
+ "url": "OBX.11",
+ "valueString": "F"
}
]
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.61",
- "code" : "21612-7",
- "display" : "Reported Patient Age!!!"
+ "system": "http://loinc.org",
+ "version": "2.61",
+ "code": "21612-7",
+ "display": "Reported Patient Age!!!"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "focus" : [
+ "focus": [
{
- "reference" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863"
+ "reference": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961"
}
],
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "effectiveDateTime" : "2023-07-24T15:24:00Z",
- "_effectiveDateTime" : {
- "extension" : [
+ "effectiveDateTime": "2023-07-24T15:24:00Z",
+ "_effectiveDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "performer" : [
+ "performer": [
{
- "reference" : "Organization/1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b"
+ "reference": "Organization/1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d"
},
{
- "reference" : "Organization/1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa"
+ "reference": "Organization/1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508658339000.31fcb669-3493-4fde-9822-7fb431d0cf3b",
- "extension" : [
+ "fullUrl": "Organization/1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495228915000.4ddc88c5-ca99-4d63-8658-28982d1e0a6d",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "CLIA"
}
],
- "code" : "11D0668319",
- "display" : "Centers for Disease Control and Prevention"
+ "code": "11D0668319",
+ "display": "Centers for Disease Control and Prevention"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
}
],
- "identifier" : [
+ "identifier": [
{
- "system" : "CLIA",
- "value" : "11D0668319"
+ "system": "CLIA",
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention"
+ "name": "Centers for Disease Control and Prevention"
}
},
{
- "fullUrl" : "Organization/1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508659756000.c20e1744-8b0c-494c-8600-adb86a5030aa",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495230257000.d3376e68-a110-4922-ae4c-0f2695feee71",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "L"
+ "code": "L"
}
]
}
}
],
- "code" : "L"
+ "code": "L"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "11D0668319"
+ "url": "XON.10",
+ "valueString": "11D0668319"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.25"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.25"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.4.7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "11D0668319"
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention",
- "address" : [
+ "name": "Centers for Disease Control and Prevention",
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "1600 Clifton Road"
+ "url": "SAD.1",
+ "valueString": "1600 Clifton Road"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "B"
+ "url": "XAD.7",
+ "valueCode": "B"
}
]
}
],
- "use" : "work",
- "line" : [
+ "use": "work",
+ "line": [
"1600 Clifton Road"
],
- "city" : "Atlanta",
- "state" : "GA",
- "postalCode" : "30329",
- "country" : "USA"
+ "city": "Atlanta",
+ "state": "GA",
+ "postalCode": "30329",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Observation/1716964508661898000.d0cf510f-22cb-4e80-a098-e1e29beeaf99",
- "resource" : {
- "resourceType" : "Observation",
- "id" : "1716964508661898000.d0cf510f-22cb-4e80-a098-e1e29beeaf99",
- "extension" : [
+ "fullUrl": "Observation/1732561495232441000.435f08c3-52ed-4088-973d-af0d6802be7f",
+ "resource": {
+ "resourceType": "Observation",
+ "id": "1732561495232441000.435f08c3-52ed-4088-973d-af0d6802be7f",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
- "valueDateTime" : "2023-07-27T18:30:17Z",
- "_valueDateTime" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/analysis-date-time",
+ "valueDateTime": "2023-07-27T18:30:17Z",
+ "_valueDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "20230727183017"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230727183017"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-5-value-sn",
+ "extension": [
{
- "url" : "SN.2",
- "valueString" : "28"
+ "url": "SN.2",
+ "valueString": "28"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obx-observation",
+ "extension": [
{
- "url" : "OBX.2",
- "valueId" : "SN"
+ "url": "OBX.2",
+ "valueId": "SN"
},
{
- "url" : "OBX.6",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "OBX.6",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "UCUM"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "UCUM"
}
],
- "system" : "http://unitsofmeasure.org",
- "version" : "2.1",
- "code" : "a",
- "display" : "Year"
+ "system": "http://unitsofmeasure.org",
+ "version": "2.1",
+ "code": "a",
+ "display": "Year"
}
]
}
},
{
- "url" : "OBX.11",
- "valueString" : "F"
+ "url": "OBX.11",
+ "valueString": "F"
}
]
}
],
- "status" : "final",
- "code" : {
- "coding" : [
+ "status": "final",
+ "code": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.61",
- "code" : "21612-7",
- "display" : "Reported Patient Age???"
+ "system": "http://loinc.org",
+ "version": "2.61",
+ "code": "21612-7",
+ "display": "Reported Patient Age???"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "focus" : [
+ "focus": [
{
- "reference" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb"
+ "reference": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f"
}
],
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "effectiveDateTime" : "2023-07-24T15:24:00Z",
- "_effectiveDateTime" : {
- "extension" : [
+ "effectiveDateTime": "2023-07-24T15:24:00Z",
+ "_effectiveDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "performer" : [
+ "performer": [
{
- "reference" : "Organization/1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1"
+ "reference": "Organization/1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c"
},
{
- "reference" : "Organization/1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000"
+ "reference": "Organization/1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508662344000.631a44f0-8c23-4dc8-82c2-3fb5658927a1",
- "extension" : [
+ "fullUrl": "Organization/1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495232873000.a9fff423-2971-471f-b076-727d3ecc100c",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
- "valueCodeableConcept" : {
- "coding" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-organization",
+ "valueCodeableConcept": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "CLIA"
}
],
- "code" : "11D0668319",
- "display" : "Centers for Disease Control and Prevention"
+ "code": "11D0668319",
+ "display": "Centers for Disease Control and Prevention"
}
]
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.15"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.15"
}
],
- "identifier" : [
+ "identifier": [
{
- "system" : "CLIA",
- "value" : "11D0668319"
+ "system": "CLIA",
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention"
+ "name": "Centers for Disease Control and Prevention"
}
},
{
- "fullUrl" : "Organization/1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508663638000.2b679a76-9f0d-48d6-b5d3-075e5712b000",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495234107000.b7c09af0-dc41-4a7a-9aa4-27e399e895ac",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "L"
+ "code": "L"
}
]
}
}
],
- "code" : "L"
+ "code": "L"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "11D0668319"
+ "url": "XON.10",
+ "valueString": "11D0668319"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBX.25"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBX.25"
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "CLIA"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "CLIA"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.113883.4.7"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.113883.4.7"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "11D0668319"
+ "value": "11D0668319"
}
],
- "name" : "Centers for Disease Control and Prevention",
- "address" : [
+ "name": "Centers for Disease Control and Prevention",
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "1600 Clifton Road"
+ "url": "SAD.1",
+ "valueString": "1600 Clifton Road"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "B"
+ "url": "XAD.7",
+ "valueCode": "B"
}
]
}
],
- "use" : "work",
- "line" : [
+ "use": "work",
+ "line": [
"1600 Clifton Road"
],
- "city" : "Atlanta",
- "state" : "GA",
- "postalCode" : "30329",
- "country" : "USA"
+ "city": "Atlanta",
+ "state": "GA",
+ "postalCode": "30329",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "ServiceRequest/1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueCode" : "RE"
+ "fullUrl": "ServiceRequest/1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueCode": "RE"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
- "valueString" : "20230725"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/business-event",
+ "valueString": "20230725"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/orc-common-order",
+ "extension": [
{
- "url" : "orc-21-ordering-facility-name",
- "valueReference" : {
- "reference" : "Organization/1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae"
+ "url": "orc-21-ordering-facility-name",
+ "valueReference": {
+ "reference": "Organization/1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46"
}
},
{
- "url" : "orc-22-ordering-facility-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-22-ordering-facility-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "850 Marina Bay Parkway"
+ "url": "SAD.1",
+ "valueString": "850 Marina Bay Parkway"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Rm. E-361"
+ "url": "XAD.2",
+ "valueString": "Rm. E-361"
},
{
- "url" : "XAD.7",
- "valueCode" : "M"
+ "url": "XAD.7",
+ "valueCode": "M"
}
]
}
],
- "type" : "postal",
- "line" : [
+ "type": "postal",
+ "line": [
"850 Marina Bay Parkway",
"Rm. E-361"
],
- "city" : "Richmond",
- "state" : "CA",
- "postalCode" : "94804",
- "country" : "USA"
+ "city": "Richmond",
+ "state": "CA",
+ "postalCode": "94804",
+ "country": "USA"
}
},
{
- "url" : "orc-24-ordering-provider-address",
- "valueAddress" : {
- "extension" : [
+ "url": "orc-24-ordering-provider-address",
+ "valueAddress": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "11475 C Avenue"
+ "url": "SAD.1",
+ "valueString": "11475 C Avenue"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "M"
+ "url": "XAD.7",
+ "valueCode": "M"
}
]
}
],
- "type" : "postal",
- "line" : [
+ "type": "postal",
+ "line": [
"11475 C Avenue"
],
- "city" : "Auburn",
- "state" : "CA",
- "postalCode" : "95603",
- "country" : "USA"
+ "city": "Auburn",
+ "state": "CA",
+ "postalCode": "95603",
+ "country": "USA"
}
},
{
- "url" : "orc-12-ordering-provider",
- "valueReference" : {
- "reference" : "Practitioner/1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0"
+ "url": "orc-12-ordering-provider",
+ "valueReference": {
+ "reference": "Practitioner/1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0"
}
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
{
- "url" : "OBR.2",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.2",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "Specimen123"
+ "value": "Specimen123"
}
},
{
- "url" : "OBR.3",
- "valueIdentifier" : {
- "extension" : [
+ "url": "OBR.3",
+ "valueIdentifier": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "value" : "3015894743_04608717"
+ "value": "3015894743_04608717"
}
},
{
- "url" : "OBR.22",
- "valueString" : "202308021808-0400"
- },
- {
- "url" : "OBR.25",
- "valueId" : "F"
- },
- {
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900"
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "NET"
+ "url": "XTN.2",
+ "valueString": "NET"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "MWaKabon@placer.ca.gov"
+ "url": "XTN.4",
+ "valueString": "MWaKabon@placer.ca.gov"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
}
],
- "system" : "email",
- "value" : "MWaKabon@placer.ca.gov"
+ "system": "email",
+ "value": "MWaKabon@placer.ca.gov"
+ }
+ },
+ {
+ "url": "OBR.7",
+ "valueDateTime": "2023-07-24T15:24:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
+ }
+ ]
}
+ },
+ {
+ "url": "OBR.22",
+ "valueString": "202308021808-0400"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "F"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.3"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "3015894743_04608717"
+ "value": "3015894743_04608717"
}
],
- "status" : "unknown",
- "code" : {
- "extension" : [
+ "status": "unknown",
+ "code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.6.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.6.1"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.74",
- "code" : "68991-9",
- "display" : "Epidemiologically Important Information"
+ "system": "http://loinc.org",
+ "version": "2.74",
+ "code": "68991-9",
+ "display": "Epidemiologically Important Information"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "CDC-10515",
- "display" : "Poxvirus Molecular Detection"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "CDC-10515",
+ "display": "Poxvirus Molecular Detection"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "requester" : {
- "extension" : [
+ "requester": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "NET"
+ "url": "XTN.2",
+ "valueString": "NET"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "MWaKabon@placer.ca.gov"
+ "url": "XTN.4",
+ "valueString": "MWaKabon@placer.ca.gov"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.14"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.14"
}
],
- "system" : "email",
- "value" : "MWaKabon@placer.ca.gov"
+ "system": "email",
+ "value": "MWaKabon@placer.ca.gov"
}
}
],
- "reference" : "PractitionerRole/1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492"
+ "reference": "PractitionerRole/1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb"
}
}
},
{
- "fullUrl" : "Practitioner/1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.12"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.12"
}
],
- "identifier" : [
+ "identifier": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "XX"
+ "code": "XX"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "value" : "SPHL-000098"
+ "system": "STARLIMS.CDC.Stag",
+ "value": "SPHL-000098"
}
],
- "name" : [
+ "name": [
{
- "family" : "CA-Placer County Public Health Laboratory"
+ "family": "CA-Placer County Public Health Laboratory"
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "11475 C Avenue"
+ "url": "SAD.1",
+ "valueString": "11475 C Avenue"
}
]
},
{
- "url" : "XAD.7",
- "valueCode" : "M"
+ "url": "XAD.7",
+ "valueCode": "M"
}
]
}
],
- "type" : "postal",
- "line" : [
+ "type": "postal",
+ "line": [
"11475 C Avenue"
],
- "city" : "Auburn",
- "state" : "CA",
- "postalCode" : "95603",
- "country" : "USA"
+ "city": "Auburn",
+ "state": "CA",
+ "postalCode": "95603",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "Organization/1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "D"
+ "code": "D"
}
]
}
}
],
- "code" : "D"
+ "code": "D"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "SPHL-000048"
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "SPHL-000048"
+ "value": "SPHL-000048"
}
],
- "name" : "CDPH, Viral and Rickettsial Disease Laboratory",
- "telecom" : [
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory",
+ "telecom": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "WPN"
+ "url": "XTN.2",
+ "valueString": "WPN"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "VRDL.Mail@cdph.ca.gov"
+ "url": "XTN.4",
+ "valueString": "VRDL.Mail@cdph.ca.gov"
}
]
}
],
- "system" : "email",
- "value" : "VRDL.Mail@cdph.ca.gov",
- "use" : "work"
+ "system": "email",
+ "value": "VRDL.Mail@cdph.ca.gov",
+ "use": "work"
}
],
- "address" : [
+ "address": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xad-address",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/sad-address-line",
+ "extension": [
{
- "url" : "SAD.1",
- "valueString" : "850 Marina Bay Parkway"
+ "url": "SAD.1",
+ "valueString": "850 Marina Bay Parkway"
}
]
},
{
- "url" : "XAD.2",
- "valueString" : "Rm. E-361"
+ "url": "XAD.2",
+ "valueString": "Rm. E-361"
},
{
- "url" : "XAD.7",
- "valueCode" : "M"
+ "url": "XAD.7",
+ "valueCode": "M"
}
]
}
],
- "type" : "postal",
- "line" : [
+ "type": "postal",
+ "line": [
"850 Marina Bay Parkway",
"Rm. E-361"
],
- "city" : "Richmond",
- "state" : "CA",
- "postalCode" : "94804",
- "country" : "USA"
+ "city": "Richmond",
+ "state": "CA",
+ "postalCode": "94804",
+ "country": "USA"
}
]
}
},
{
- "fullUrl" : "PractitionerRole/1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492",
- "resource" : {
- "resourceType" : "PractitionerRole",
- "id" : "1716964508666355000.2385875b-0e09-46cb-97c6-e12e133fb492",
- "practitioner" : {
- "reference" : "Practitioner/1716964508667965000.d2be6436-7d78-4b46-b59f-3327595c1db1"
+ "fullUrl": "PractitionerRole/1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb",
+ "resource": {
+ "resourceType": "PractitionerRole",
+ "id": "1732561495236905000.12164d53-32ed-48b8-9a7e-679a45a049bb",
+ "practitioner": {
+ "reference": "Practitioner/1732561495238490000.3fce0604-d1e4-49cb-95d1-d4c36af63de9"
},
- "organization" : {
- "reference" : "Organization/1716964508669674000.aec18007-634c-4583-b63a-80bba15c4fd1"
+ "organization": {
+ "reference": "Organization/1732561495240185000.e099b83c-b2f6-4baf-9142-aab9ca4efb9b"
}
}
},
{
- "fullUrl" : "Organization/1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae",
- "resource" : {
- "resourceType" : "Organization",
- "id" : "1716964508672313000.52c353f6-f465-4713-927f-1adbee0436ae",
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/organization-name-type",
- "valueCoding" : {
- "extension" : [
- {
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueCodeableConcept" : {
- "extension" : [
+ "fullUrl": "Organization/1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732561495243518000.2c117b29-8773-42e0-a0b6-d4ac6c623a46",
+ "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"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "XON.2"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
}
],
- "code" : "D"
+ "code": "D"
}
]
}
}
],
- "code" : "D"
+ "code": "D"
}
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xon-organization",
+ "extension": [
{
- "url" : "XON.10",
- "valueString" : "SPHL-000048"
+ "url": "XON.10",
+ "valueString": "SPHL-000048"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "XX"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "XX"
}
]
},
- "value" : "SPHL-000048"
+ "value": "SPHL-000048"
}
],
- "name" : "CDPH, Viral and Rickettsial Disease Laboratory"
+ "name": "CDPH, Viral and Rickettsial Disease Laboratory"
}
},
{
- "fullUrl" : "Practitioner/1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508673966000.9a6e776f-bb15-4095-a90d-6370506d69e0",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495245581000.aea73b44-a9b0-40f0-8422-5361e59333b0",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "XX"
+ "code": "XX"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "value" : "SPHL-000098"
+ "system": "STARLIMS.CDC.Stag",
+ "value": "SPHL-000098"
}
],
- "name" : [
+ "name": [
{
- "family" : "CA-Placer County Public Health Laboratory"
+ "family": "CA-Placer County Public Health Laboratory"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508675184000.0c77c8ea-9ac9-4e91-8456-a42f0aee7900",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495246974000.6ed9d709-bb8d-48fa-aa5a-f16f1bb7845e",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "XX"
+ "code": "XX"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "value" : "SPHL-000098"
+ "system": "STARLIMS.CDC.Stag",
+ "value": "SPHL-000098"
}
],
- "name" : [
+ "name": [
{
- "family" : "CA-Placer County Public Health Laboratory"
+ "family": "CA-Placer County Public Health Laboratory"
}
]
}
},
{
- "fullUrl" : "ServiceRequest/1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef",
- "resource" : {
- "resourceType" : "ServiceRequest",
- "id" : "1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef",
- "extension" : [
+ "fullUrl": "ServiceRequest/1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c",
+ "resource": {
+ "resourceType": "ServiceRequest",
+ "id": "1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
+ "extension": [
{
- "url" : "OBR.22",
- "valueString" : "202308021726-0400"
+ "url": "OBR.16",
+ "valueReference": {
+ "reference": "Practitioner/1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a"
+ }
},
{
- "url" : "OBR.25",
- "valueId" : "F"
+ "url": "OBR.7",
+ "valueDateTime": "2023-07-24T15:24:00Z",
+ "_valueDateTime": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
+ }
+ ]
+ }
},
{
- "url" : "OBR.16",
- "valueReference" : {
- "reference" : "Practitioner/1716964508680805000.39455907-1413-4e43-9f80-c88959094250"
- }
+ "url": "OBR.22",
+ "valueString": "202308021726-0400"
+ },
+ {
+ "url": "OBR.25",
+ "valueId": "F"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.3"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.3"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "47_3015894743_04608717_1233"
+ "value": "47_3015894743_04608717_1233"
}
],
- "status" : "unknown",
- "code" : {
- "extension" : [
+ "status": "unknown",
+ "code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.6.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.6.1"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.74",
- "code" : "100383-9",
- "display" : "MVPX DNA Spec Ql NAA+probe"
+ "system": "http://loinc.org",
+ "version": "2.74",
+ "code": "100383-9",
+ "display": "MVPX DNA Spec Ql NAA+probe"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "CDC-10515",
- "display" : "Poxvirus Molecular Detection"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "CDC-10515",
+ "display": "Poxvirus Molecular Detection"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "v unknown",
- "code" : "1233",
- "display" : "Monkeypox generic"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "v unknown",
+ "code": "1233",
+ "display": "Monkeypox generic"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "requester" : {
- "extension" : [
+ "requester": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
- "valueContactPoint" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/callback-number",
+ "valueContactPoint": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xtn-contact-point",
+ "extension": [
{
- "url" : "XTN.2",
- "valueString" : "NET"
+ "url": "XTN.2",
+ "valueString": "NET"
},
{
- "url" : "XTN.3",
- "valueString" : "Internet"
+ "url": "XTN.3",
+ "valueString": "Internet"
},
{
- "url" : "XTN.4",
- "valueString" : "MWaKabon@placer.ca.gov"
+ "url": "XTN.4",
+ "valueString": "MWaKabon@placer.ca.gov"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.17"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.17"
}
],
- "system" : "email",
- "value" : "MWaKabon@placer.ca.gov"
+ "system": "email",
+ "value": "MWaKabon@placer.ca.gov"
}
}
],
- "reference" : "Practitioner/1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28"
+ "reference": "Practitioner/1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce"
},
- "note" : [
+ "note": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Accession level coment."
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Accession level coment."
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "Accession level coment."
+ "text": "Accession level coment."
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/nte-annotation",
+ "extension": [
{
- "url" : "NTE.2",
- "valueId" : "L"
+ "url": "NTE.2",
+ "valueId": "L"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
- "valueId" : "Test level comment."
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-comment",
+ "valueId": "Test level comment."
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
- "valueCodeableConcept" : {
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/note-type",
+ "valueCodeableConcept": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.12.364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.12.364"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "HL70364"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "HL70364"
}
],
- "version" : "2.5.1",
- "code" : "RE",
- "display" : "Remark"
+ "version": "2.5.1",
+ "code": "RE",
+ "display": "Remark"
}
]
}
}
],
- "text" : "Test level comment."
+ "text": "Test level comment."
}
]
}
},
{
- "fullUrl" : "Practitioner/1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508677389000.19978f84-1c31-4924-b5fb-0efe9bf28f28",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495250676000.4bb10a64-5a5e-4902-b080-e57ad1d6a9ce",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.16"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.16"
}
],
- "identifier" : [
+ "identifier": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "XX"
+ "code": "XX"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "value" : "SPHL-000098"
+ "system": "STARLIMS.CDC.Stag",
+ "value": "SPHL-000098"
}
],
- "name" : [
+ "name": [
{
- "family" : "CA-Placer County Public Health Laboratory"
+ "family": "CA-Placer County Public Health Laboratory"
}
]
}
},
{
- "fullUrl" : "Practitioner/1716964508680805000.39455907-1413-4e43-9f80-c88959094250",
- "resource" : {
- "resourceType" : "Practitioner",
- "id" : "1716964508680805000.39455907-1413-4e43-9f80-c88959094250",
- "extension" : [
+ "fullUrl": "Practitioner/1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732561495254656000.e2224fed-b43b-4b9e-a088-10f70bd75b2a",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "identifier" : [
+ "identifier": [
{
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
- "valueBoolean" : true
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
}
],
- "code" : "XX"
+ "code": "XX"
}
]
},
- "system" : "STARLIMS.CDC.Stag",
- "value" : "SPHL-000098"
+ "system": "STARLIMS.CDC.Stag",
+ "value": "SPHL-000098"
}
],
- "name" : [
+ "name": [
{
- "family" : "CA-Placer County Public Health Laboratory"
+ "family": "CA-Placer County Public Health Laboratory"
}
]
}
},
{
- "fullUrl" : "DiagnosticReport/1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1716964508685898000.2532ff91-3e38-4eb7-91cf-a1012a26a17d",
- "identifier" : [
+ "fullUrl": "DiagnosticReport/1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732561495265209000.f7974efd-664b-4edb-a591-2f256429718b",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "ORC.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "ORC.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "3015894743_04608717"
+ "value": "3015894743_04608717"
}
],
- "basedOn" : [
+ "basedOn": [
{
- "reference" : "ServiceRequest/1716964508676312000.d16e1225-9ac2-4ad0-8ebe-15604f5ba258"
+ "reference": "ServiceRequest/1732561495249322000.843ab69f-30f0-4c15-ad07-fb607dacba88"
}
],
- "status" : "final",
- "code" : {
- "extension" : [
+ "status": "final",
+ "code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.6.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.6.1"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.74",
- "code" : "68991-9",
- "display" : "Epidemiologically Important Information"
+ "system": "http://loinc.org",
+ "version": "2.74",
+ "code": "68991-9",
+ "display": "Epidemiologically Important Information"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "CDC-10515",
- "display" : "Poxvirus Molecular Detection"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "CDC-10515",
+ "display": "Poxvirus Molecular Detection"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "effectiveDateTime" : "2023-07-24T15:24:00Z",
- "_effectiveDateTime" : {
- "extension" : [
+ "effectiveDateTime": "2023-07-24T15:24:00Z",
+ "_effectiveDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "issued" : "2023-08-02T18:08:00-04:00",
- "_issued" : {
- "extension" : [
+ "issued": "2023-08-02T18:08:00-04:00",
+ "_issued": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202308021808-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202308021808-0400"
}
]
},
- "specimen" : [
+ "specimen": [
{
- "reference" : "Specimen/1716964508651702000.25599d2e-5340-4b50-9816-134c52fa0863"
+ "reference": "Specimen/1732561495221509000.7c264a72-7ed9-400f-9708-e57e02eef961"
},
{
- "reference" : "Specimen/1716964508647637000.6eadc376-dc88-400f-9d9b-bb526ac9163e"
+ "reference": "Specimen/1732561495214950000.983ffe77-d5f0-440e-aef2-85e4cc7eadb7"
}
],
- "result" : [
+ "result": [
{
- "reference" : "Observation/1716964508631514000.19f961d0-ec5b-4cc8-95ac-7b16d5da2d1f"
+ "reference": "Observation/1732561495195748000.dd13e5cf-34f2-48f2-9401-55ecf414c6eb"
},
{
- "reference" : "Observation/1716964508635829000.e4a4423f-0207-4819-806b-cb71f7b50135"
+ "reference": "Observation/1732561495201232000.cabdc58f-4c37-4a9a-8bd8-b01acd306e21"
}
]
}
},
{
- "fullUrl" : "DiagnosticReport/1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38",
- "resource" : {
- "resourceType" : "DiagnosticReport",
- "id" : "1716964508687401000.825800b2-29b8-4cfe-b424-73e68e0dee38",
- "identifier" : [
+ "fullUrl": "DiagnosticReport/1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2",
+ "resource": {
+ "resourceType": "DiagnosticReport",
+ "id": "1732561495267151000.83ddc146-f4c0-4063-8c46-9e681d69c1c2",
+ "identifier": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
- "valueString" : "OBR.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "OBR.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "SPHL-000048"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "SPHL-000048"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.1.10765"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.1.10765"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "PLAC"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "PLAC"
}
]
},
- "value" : "Specimen123"
+ "value": "Specimen123"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
- "extension" : [
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
- "valueString" : "STARLIMS.CDC.Stag"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "STARLIMS.CDC.Stag"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
- "valueString" : "2.16.840.1.114222.4.3.3.2.1.2"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString": "2.16.840.1.114222.4.3.3.2.1.2"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
- "valueCode" : "ISO"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode": "ISO"
}
]
}
],
- "type" : {
- "coding" : [
+ "type": {
+ "coding": [
{
- "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code" : "FILL"
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
+ "code": "FILL"
}
]
},
- "value" : "47_3015894743_04608717_1233"
+ "value": "47_3015894743_04608717_1233"
}
],
- "basedOn" : [
+ "basedOn": [
{
- "reference" : "ServiceRequest/1716964508681483000.259e4587-899e-4f60-afc0-3868f59ca8ef"
+ "reference": "ServiceRequest/1732561495255966000.fea904a3-f77c-4d64-9aac-739d29de2d7c"
}
],
- "status" : "final",
- "code" : {
- "extension" : [
+ "status": "final",
+ "code": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
- "valueOid" : "urn:oid:2.16.840.1.113883.6.1"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/coding-system-oid",
+ "valueOid": "urn:oid:2.16.840.1.113883.6.1"
}
],
- "coding" : [
+ "coding": [
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "LN"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "LN"
}
],
- "system" : "http://loinc.org",
- "version" : "2.74",
- "code" : "100383-9",
- "display" : "MVPX DNA Spec Ql NAA+probe"
+ "system": "http://loinc.org",
+ "version": "2.74",
+ "code": "100383-9",
+ "display": "MVPX DNA Spec Ql NAA+probe"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "secondary-alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "secondary-alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "code" : "CDC-10515",
- "display" : "Poxvirus Molecular Detection"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "code": "CDC-10515",
+ "display": "Poxvirus Molecular Detection"
},
{
- "extension" : [
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
- "valueString" : "alt-coding"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "alt-coding"
},
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
- "valueString" : "L"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding-system",
+ "valueString": "L"
}
],
- "system" : "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
- "version" : "v unknown",
- "code" : "1233",
- "display" : "Monkeypox generic"
+ "system": "https://terminology.hl7.org/CodeSystem-v2-0396.html#v2-0396-99zzzorL",
+ "version": "v unknown",
+ "code": "1233",
+ "display": "Monkeypox generic"
}
]
},
- "subject" : {
- "reference" : "Patient/1716964508445924000.06ee52b1-488e-47df-b7ef-eef1a5a23b90"
+ "subject": {
+ "reference": "Patient/1732561494966959000.196f1b0a-faaa-4371-838c-8ce5128f9850"
},
- "encounter" : {
- "reference" : "Encounter/1716964508460834000.d9050890-a575-41b0-8490-caaecc5a6a5b"
+ "encounter": {
+ "reference": "Encounter/1732561494985964000.5667cef6-306b-4b87-bcd9-95202cf75b93"
},
- "effectiveDateTime" : "2023-07-24T15:24:00Z",
- "_effectiveDateTime" : {
- "extension" : [
+ "effectiveDateTime": "2023-07-24T15:24:00Z",
+ "_effectiveDateTime": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202307241524"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202307241524"
}
]
},
- "issued" : "2023-08-02T17:26:00-04:00",
- "_issued" : {
- "extension" : [
+ "issued": "2023-08-02T17:26:00-04:00",
+ "_issued": {
+ "extension": [
{
- "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
- "valueString" : "202308021726-0400"
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "202308021726-0400"
}
]
},
- "specimen" : [
+ "specimen": [
{
- "reference" : "Specimen/1716964508654907000.54a3e767-9a07-4fc3-ba4c-abf9d580a5bb"
+ "reference": "Specimen/1732561495225426000.98b00d14-b67b-4efd-84dc-184085a9981f"
},
{
- "reference" : "Specimen/1716964508648050000.2f07d10d-dfab-4ff2-a196-a26744010625"
+ "reference": "Specimen/1732561495215922000.48cbec21-c45e-434c-98ef-56ac980cd579"
}
],
- "result" : [
+ "result": [
{
- "reference" : "Observation/1716964508639525000.f3377425-a394-409f-baef-4a8f3ee84b4e"
+ "reference": "Observation/1732561495205699000.fa28fd1c-60ba-4d5e-ad57-775d47225391"
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir
index 8532300100f..59147cb34ab 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-dns-assigning-authority.fhir
@@ -119,6 +119,181 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51"
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "Organization/1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed",
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "HD.1"
+ } ],
+ "value" : "Namespace"
+ }, {
+ "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" : "DNS"
+ } ]
+ },
+ "value" : "AssigningOrganization"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1727304366494814000.cc8d525e-b129-4f37-9f38-d03e3486de51",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "Namespace"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type",
+ "valueCode" : "AssigningOrganization"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "DNS"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "value" : "1",
+ "assigner" : {
+ "reference" : "Organization/1727304366487498000.2d40a841-7f5a-4618-b329-13aac7daf1ed"
+ }
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "BEETHOVEN",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "BEETHOVEN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
} ]
}
}, {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir
index 40b0b6f3d75..d75492e7ad2 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-iso-assigning-authority-no-namespace.fhir
@@ -119,6 +119,153 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a"
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "Practitioner/1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1727304384512381000.a6b114dc-38b9-4be5-8fc8-69a3b4c4763a",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "ISO"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:oid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "BEETHOVEN",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "BEETHOVEN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
} ]
}
}, {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir
index 7f2920c332e..1ff02adbc13 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority-no-namespace.fhir
@@ -119,6 +119,153 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde"
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "Practitioner/1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1727304402699199000.949e4021-ec8e-4d4b-b33b-2e1b91269fde",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "UUID"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "urn:uuid:AssigningSystem",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "BEETHOVEN",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "BEETHOVEN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
} ]
}
}, {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir
index 65977d67328..0383bf570df 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-uuid-assigning-authority.fhir
@@ -119,6 +119,154 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7"
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "Practitioner/1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1727304420767220000.565b33ce-7934-48cc-a73e-8dc89591b0c7",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "Namespace"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id",
+ "valueString" : "AssigningSystem"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "UUID"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "system" : "Namespace",
+ "value" : "1"
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "BEETHOVEN",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "BEETHOVEN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
} ]
}
}, {
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir
index 9face385051..620021e0678 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn17-populated-xcn19-20-empty.fhir
@@ -1,8 +1,8 @@
{
"resourceType": "Bundle",
- "id": "1730472943760164000.93058d43-c801-4f2e-be97-1f963a832ee6",
+ "id": "1732560742822524000.5efbd8f2-d8b5-416b-9faa-a5661e38f51c",
"meta": {
- "lastUpdated": "2024-11-01T10:55:43.769-04:00"
+ "lastUpdated": "2024-11-25T13:52:22.833-05:00"
},
"identifier": {
"system": "https://reportstream.cdc.gov/prime-router",
@@ -12,10 +12,10 @@
"timestamp": "2023-05-01T10:25:31.000-04:00",
"entry": [
{
- "fullUrl": "MessageHeader/1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557",
+ "fullUrl": "MessageHeader/1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081",
"resource": {
"resourceType": "MessageHeader",
- "id": "1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557",
+ "id": "1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/encoding-characters",
@@ -39,16 +39,16 @@
}
},
{
- "fullUrl": "Provenance/1730472944394971000.5d555f95-9d7f-4a0c-b041-f564fdd0b4d7",
+ "fullUrl": "Provenance/1732560743515231000.8981c5b0-027e-4f52-bcf8-62d3a9b99bc1",
"resource": {
"resourceType": "Provenance",
- "id": "1730472944394971000.5d555f95-9d7f-4a0c-b041-f564fdd0b4d7",
+ "id": "1732560743515231000.8981c5b0-027e-4f52-bcf8-62d3a9b99bc1",
"target": [
{
- "reference": "MessageHeader/1730472943819762000.e6a8c790-102d-40a3-9231-f7e7b9648557"
+ "reference": "MessageHeader/1732560742890886000.ef35c7f0-34de-4a27-89f6-03eecc430081"
},
{
- "reference": "DiagnosticReport/1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71"
+ "reference": "DiagnosticReport/1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a"
}
],
"recorded": "2023-05-01T10:25:31-04:00",
@@ -62,11 +62,11 @@
}
},
{
- "fullUrl": "Provenance/1730472944402985000.15c40042-0ce1-438b-9551-3316b8861029",
+ "fullUrl": "Provenance/1732560743523485000.b32ebd9b-8450-437b-9169-84a228043301",
"resource": {
"resourceType": "Provenance",
- "id": "1730472944402985000.15c40042-0ce1-438b-9551-3316b8861029",
- "recorded": "2024-11-01T10:55:44Z",
+ "id": "1732560743523485000.b32ebd9b-8450-437b-9169-84a228043301",
+ "recorded": "2024-11-25T13:52:23Z",
"policy": [
"http://hl7.org/fhir/uv/v2mappings/message-oru-r01-to-bundle"
],
@@ -88,17 +88,17 @@
]
},
"who": {
- "reference": "Organization/1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf"
+ "reference": "Organization/1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8"
}
}
]
}
},
{
- "fullUrl": "Organization/1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf",
+ "fullUrl": "Organization/1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8",
"resource": {
"resourceType": "Organization",
- "id": "1730472944401935000.b0df3132-31d0-4eed-bdd4-4178ef2f0cdf",
+ "id": "1732560743522824000.64702af2-b09f-451c-9292-e266d14e1be8",
"identifier": [
{
"value": "CDC PRIME - Atlanta"
@@ -118,23 +118,23 @@
}
},
{
- "fullUrl": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee",
+ "fullUrl": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483",
"resource": {
"resourceType": "Patient",
- "id": "1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee"
+ "id": "1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483"
}
},
{
- "fullUrl": "Provenance/1730472944420086000.6fc98a26-fdf6-4f72-958b-96303299d886",
+ "fullUrl": "Provenance/1732560743539334000.f7b6b6c9-16af-4d9f-8e5f-0741fb633b17",
"resource": {
"resourceType": "Provenance",
- "id": "1730472944420086000.6fc98a26-fdf6-4f72-958b-96303299d886",
+ "id": "1732560743539334000.f7b6b6c9-16af-4d9f-8e5f-0741fb633b17",
"target": [
{
- "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee"
+ "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483"
}
],
- "recorded": "2024-11-01T10:55:44Z",
+ "recorded": "2024-11-25T13:52:23Z",
"activity": {
"coding": [
{
@@ -146,23 +146,289 @@
}
},
{
- "fullUrl": "Specimen/1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5",
+ "fullUrl": "Specimen/1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c",
"resource": {
"resourceType": "Specimen",
- "id": "1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5",
+ "id": "1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString": "OBR"
}
+ ],
+ "collection": {
+ "collector": {
+ "reference": "Practitioner/1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd"
+ }
+ }
+ }
+ },
+ {
+ "fullUrl": "Organization/1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3",
+ "resource": {
+ "resourceType": "Organization",
+ "id": "1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3",
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.1"
+ }
+ ],
+ "value": "Namespace"
+ },
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString": "HD.2,HD.3"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "system": "http://terminology.hl7.org/CodeSystem/v2-0301"
+ }
+ ]
+ },
+ "value": "AssigningOrganization"
+ }
+ ]
+ }
+ },
+ {
+ "fullUrl": "Practitioner/1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd",
+ "resource": {
+ "resourceType": "Practitioner",
+ "id": "1732560743550242000.2295143c-f607-4059-84dd-c9f18b1fcbbd",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString": "Namespace"
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type",
+ "valueCode": "AssigningOrganization"
+ }
+ ]
+ },
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension": [
+ {
+ "url": "XCN.3",
+ "valueString": "LUDWIG"
+ },
+ {
+ "url": "XCN.4",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.21",
+ "valueString": "PHD"
+ },
+ {
+ "url": "XCN.22",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignJ"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.23",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "AssignA"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.5",
+ "valueString": "2ND"
+ },
+ {
+ "url": "XCN.7",
+ "valueString": "MD"
+ },
+ {
+ "url": "XCN.8",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "SRC"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.10",
+ "valueString": "B"
+ },
+ {
+ "url": "XCN.15",
+ "valueString": "A"
+ },
+ {
+ "url": "XCN.16",
+ "valueCodeableConcept": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString": "coding"
+ }
+ ],
+ "code": "NameContext"
+ }
+ ]
+ }
+ },
+ {
+ "url": "XCN.17",
+ "extension": [
+ {
+ "url": "XCN.17.2",
+ "valueString": "20230501102531-0400"
+ },
+ {
+ "url": "XCN.17.1",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "identifier": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString": "A"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode": "NPI"
+ }
+ ],
+ "type": {
+ "coding": [
+ {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean": true
+ }
+ ],
+ "code": "DL"
+ }
+ ]
+ },
+ "value": "123",
+ "assigner": {
+ "reference": "Organization/1732560743542163000.6d0edeff-8007-42b7-967e-bb2f917390a3"
+ }
+ }
+ ],
+ "name": [
+ {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode": "G"
+ }
+ ],
+ "use": "official",
+ "family": "BEETHOVEN",
+ "_family": {
+ "extension": [
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString": "VAN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString": "BEETHOVEN"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString": "VAL"
+ },
+ {
+ "url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString": "ROGER"
+ }
+ ]
+ },
+ "given": [
+ "LUDWIG",
+ "B"
+ ],
+ "prefix": [
+ "DR"
+ ],
+ "suffix": [
+ "2ND",
+ "MD",
+ "PHD"
+ ],
+ "period": {
+ "start": "2022-05-01T10:25:31-04:00",
+ "_start": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20220501102531-0400"
+ }
+ ]
+ },
+ "end": "2023-05-01T10:25:31-04:00",
+ "_end": {
+ "extension": [
+ {
+ "url": "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2-date-time",
+ "valueString": "20230501102531-0400"
+ }
+ ]
+ }
+ }
+ }
]
}
},
{
- "fullUrl": "ServiceRequest/1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2",
+ "fullUrl": "ServiceRequest/1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c",
"resource": {
"resourceType": "ServiceRequest",
- "id": "1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2",
+ "id": "1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/obr-observation-request",
@@ -174,7 +440,7 @@
{
"url": "OBR.10",
"valueReference": {
- "reference": "Practitioner/1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c"
+ "reference": "Practitioner/1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b"
}
}
]
@@ -207,15 +473,15 @@
]
},
"subject": {
- "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee"
+ "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483"
}
}
},
{
- "fullUrl": "Organization/1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677",
+ "fullUrl": "Organization/1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27",
"resource": {
"resourceType": "Organization",
- "id": "1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677",
+ "id": "1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27",
"identifier": [
{
"extension": [
@@ -246,10 +512,10 @@
}
},
{
- "fullUrl": "Practitioner/1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c",
+ "fullUrl": "Practitioner/1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b",
"resource": {
"resourceType": "Practitioner",
- "id": "1730472944616587000.75ae160b-e860-45e3-aecc-3e8e710f418c",
+ "id": "1732560743736153000.d6dd118a-0d94-445a-8648-007996af4f8b",
"extension": [
{
"url": "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
@@ -402,7 +668,7 @@
},
"value": "123",
"assigner": {
- "reference": "Organization/1730472944608179000.2d5b7fca-1027-4199-b1c6-a811c8cae677"
+ "reference": "Organization/1732560743732145000.8e565e61-b509-4559-8c91-97232c194d27"
}
}
],
@@ -473,13 +739,13 @@
}
},
{
- "fullUrl": "DiagnosticReport/1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71",
+ "fullUrl": "DiagnosticReport/1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a",
"resource": {
"resourceType": "DiagnosticReport",
- "id": "1730472944623333000.e3cf4cde-5f8d-4742-b7af-aa31a60ead71",
+ "id": "1732560743741216000.13eba1ae-b7b2-4bbc-a33c-55d771ef087a",
"basedOn": [
{
- "reference": "ServiceRequest/1730472944618292000.903c2b0a-7cd5-49ba-b904-8227374490a2"
+ "reference": "ServiceRequest/1732560743737627000.a9cb2369-47d9-4e9d-8ed5-46c70afc863c"
}
],
"status": "final",
@@ -509,11 +775,11 @@
]
},
"subject": {
- "reference": "Patient/1730472944419518000.eb860b58-fdcc-4092-9d72-abb7c22e43ee"
+ "reference": "Patient/1732560743538704000.17574b46-24d1-4806-bee8-4cbb761a0483"
},
"specimen": [
{
- "reference": "Specimen/1730472944421674000.125bf158-5767-464f-b0f8-5eff0dbe18e5"
+ "reference": "Specimen/1732560743540925000.10238703-4ecb-45cb-b967-1e23092e294c"
}
]
}
diff --git a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir
index 0036b190730..1fe159927a1 100644
--- a/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir
+++ b/prime-router/src/testIntegration/resources/datatests/mappinginventory/catchall/xcn/xcn-to-practitioner-xcn19-20-populated-xcn17-empty.fhir
@@ -119,6 +119,181 @@
"extension" : [ {
"url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Segment",
"valueString" : "OBR"
+ } ],
+ "collection" : {
+ "collector" : {
+ "reference" : "Practitioner/1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe"
+ }
+ }
+ }
+ }, {
+ "fullUrl" : "Organization/1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e",
+ "resource" : {
+ "resourceType" : "Organization",
+ "id" : "1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e",
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/hl7v2Field",
+ "valueString" : "HD.1"
+ } ],
+ "value" : "Namespace"
+ }, {
+ "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" : "L"
+ } ]
+ },
+ "value" : "AssigningOrganization"
+ } ]
+ }
+ }, {
+ "fullUrl" : "Practitioner/1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe",
+ "resource" : {
+ "resourceType" : "Practitioner",
+ "id" : "1727304456307569000.987a27c7-80ce-4124-aafe-85d3216af5fe",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/assigning-authority",
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/namespace-id",
+ "valueString" : "Namespace"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-unknown-type",
+ "valueCode" : "AssigningOrganization"
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/universal-id-type",
+ "valueCode" : "L"
+ } ]
+ }, {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/xcn-practitioner",
+ "extension" : [ {
+ "url" : "XCN.3",
+ "valueString" : "LUDWIG"
+ }, {
+ "url" : "XCN.4",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.20",
+ "valueString" : "20230501102531-0400"
+ }, {
+ "url" : "XCN.21",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.22",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignJ"
+ } ]
+ }
+ }, {
+ "url" : "XCN.23",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "AssignA"
+ } ]
+ }
+ }, {
+ "url" : "XCN.5",
+ "valueString" : "2ND"
+ }, {
+ "url" : "XCN.7",
+ "valueString" : "MD"
+ }, {
+ "url" : "XCN.8",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "SRC"
+ } ]
+ }
+ }, {
+ "url" : "XCN.10",
+ "valueString" : "B"
+ }, {
+ "url" : "XCN.15",
+ "valueString" : "A"
+ }, {
+ "url" : "XCN.16",
+ "valueCodeableConcept" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/cwe-coding",
+ "valueString" : "coding"
+ } ],
+ "code" : "NameContext"
+ } ]
+ }
+ }, {
+ "url" : "XCN.19",
+ "valueString" : "20220501102531-0400"
+ } ]
+ } ],
+ "identifier" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/identifier-checkDigit",
+ "valueString" : "A"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/namingsystem-checkDigit",
+ "valueCode" : "NPI"
+ } ],
+ "type" : {
+ "coding" : [ {
+ "extension" : [ {
+ "url" : "https://reportstream.cdc.gov/fhir/StructureDefinition/codeable-concept-id",
+ "valueBoolean" : true
+ } ],
+ "code" : "DL"
+ } ]
+ },
+ "value" : "1",
+ "assigner" : {
+ "reference" : "Organization/1727304456300587000.4cfb13ca-0b46-46e6-bc24-e0eebdae5f5e"
+ }
+ } ],
+ "name" : [ {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-assembly-order",
+ "valueCode" : "G"
+ } ],
+ "use" : "official",
+ "family" : "BEETHOVEN",
+ "_family" : {
+ "extension" : [ {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
+ "valueString" : "VAN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
+ "valueString" : "BEETHOVEN"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
+ "valueString" : "VAL"
+ }, {
+ "url" : "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
+ "valueString" : "ROGER"
+ } ]
+ },
+ "given" : [ "LUDWIG", "B" ],
+ "prefix" : [ "DR" ],
+ "suffix" : [ "2ND", "MD", "MD" ],
+ "period" : {
+ "start" : "2022-05-01T10:25:31-04:00",
+ "end" : "2023-05-01T10:25:31-04:00"
+ }
} ]
}
}, {
diff --git a/submissions/build.gradle.kts b/submissions/build.gradle.kts
index 71bc7870d2e..63f690bc6c9 100644
--- a/submissions/build.gradle.kts
+++ b/submissions/build.gradle.kts
@@ -19,8 +19,8 @@ dependencies {
implementation("org.springframework.security:spring-security-oauth2-jose:6.3.4")
implementation("com.azure.spring:spring-cloud-azure-starter-storage")
- implementation("com.microsoft.azure:applicationinsights-runtime-attach:3.5.4")
- implementation("com.microsoft.azure:applicationinsights-web:3.5.4")
+ implementation("com.microsoft.azure:applicationinsights-runtime-attach:3.6.2")
+ implementation("com.microsoft.azure:applicationinsights-web:3.6.2")
implementation("com.microsoft.azure:applicationinsights-logging-logback:2.6.4")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")